I hereby claim:
- I am tarassh on github.
- I am tarassh (https://keybase.io/tarassh) on keybase.
- I have a public key ASAUP055vSurhZGB0vOF6B6UNoeO1sxrHNesFVwmD8ZeLQo
To claim this, I am signing this object:
| #!/usr/bin/env python3 | |
| """ | |
| Sum total incoming SOL for a Solana address by scanning full on-chain history | |
| via a Solana JSON-RPC endpoint (using getSignaturesForAddress + getTransaction). | |
| Also identifies and displays the top 10 contributor addresses that sent the most SOL. | |
| Usage: | |
| python sol_incoming_sum.py --address GrUy83AAsibyrcUtpAVA8VgpnQSgyCAb1d8Je8MXNGLJ \ | |
| --rpc https://api.mainnet-beta.solana.com \ |
| #!/usr/bin/env python3 | |
| """ | |
| Multiplication-to-Addition (MtA) Protocol Implementation | |
| This implements a secure two-party protocol that converts multiplication into addition. | |
| The protocol allows two parties with private inputs a and b to compute additive shares | |
| s1 and s2 such that s1 + s2 = a * b mod q, without revealing their inputs to each other. | |
| The MtA protocol is a fundamental building block in multi-party computation (MPC) systems, | |
| enabling secure multiplication operations in protocols like ECDSA threshold signatures. |
| #!/usr/bin/env python3 | |
| """ | |
| P-256 Elliptic Curve Cryptography Utilities | |
| This module provides a centralized implementation of P-256 elliptic curve | |
| operations, constants, and utilities used across the MPC protocol implementations. | |
| It eliminates code duplication and provides a consistent interface for all | |
| ECC-related operations. | |
| This module includes: |
| #include "h264_ssim64x64_from_prover.h" | |
| typedef signed char int8_t; | |
| typedef short int int16_t; | |
| typedef int int32_t; | |
| typedef long int int64_t; | |
| typedef unsigned char uint8_t; | |
| typedef unsigned short int uint16_t; | |
| typedef unsigned int uint32_t; | |
| typedef unsigned long int uint64_t; |
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.11; | |
| import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; | |
| contract NFT1155 is ERC1155Burnable { | |
| /** | |
| * | |
| * @dev `uri_` tokens base URI pattern. |
I hereby claim:
To claim this, I am signing this object:
| pragma solidity ^0.4.23; | |
| contract RandomVote { | |
| event ParticipantIndex(address indexed participant, uint indexed index, uint indexed stepsToNextRound); | |
| event ParticipantNumber(address indexed participants, uint indexed number, uint indexed stepsToChoosingTheWinner); | |
| event TheWinner(address indexed participant, uint indexed number); | |
| address public winner; |