GET /drops/{drop_address}
- drop_address: drop's contract address
Optional Query Parameter:
- fetch_as: user address fetching the data
I contributed to the Semaphore Trusted Setup Multi-Party Ceremony. | |
The following are my contribution signatures: | |
Circuit: semaphore16 | |
Contributor # 231 | |
Hash: 9dca9935 613d832c 14f9f17f b7f5dac8 | |
84fdf16b a6df033a 63bd0842 8a5a0f14 | |
9fc5fc99 bf197eb9 4d6fc77b f443dfa6 | |
387afb77 4963f84c 6ec49f8e 20c26e44 | |
{ | |
"JSON_RPC_URL": "https://mainnet.infura.io", | |
"API_HOST": "http://localhost:5000", | |
"CHAIN_ID": 1, | |
"CHAIN": "mainnet", | |
"SENDER_PRIVATE_KEY": "", | |
"NATIVE_TOKENS_AMOUNT": "123456780", | |
"TOKEN_ADDRESS": "0xa3b5fdeb5dbc592ffc5e222223376464b9c56fb8", | |
"NFT_ADDRESS": "0x5f37ef03130f92925ea56579b891261118773aea", | |
"TOKEN_IDS": "[1,5,7]", |
// to phone number | |
linkdrop.send({ | |
to:'+14158609050', | |
amount: '25', | |
token: 'DAI', | |
from: 'PoolTogether', | |
message: 'Hey, PoolTogether sent you 25 DAI 🤑' | |
}) |
To unify all linkdrop types (campaigns, p2p, modules, on-ramps) we need common interface.
This will allow to utilize the same claim code (claim web apps, API, SDK, URI) for all kinds of the linkdrops,
reducing the need to repeat ourselves again and again.
The idea is to allow different ways to generate linkdrops (dashboard, sdk, wallets), but interoperable way to claim all kind of linkdrops.
This post links my 3Box profile to my Github account! Web3 social profiles by 3Box. | |
✅ did:muport:QmPuajdHfqJogCcyFbh64qk4jfoG6SvB8EcrweYG4WuWFt ✅ | |
Create your profile today to start building social connection and trust online at https://3Box.io/ |
/** | |
* @dev Internal function to deploy a proxy contract for linkdrop master | |
* @param _linkdropMaster Address of linkdrop master | |
* @return Proxy contract address | |
*/ | |
function _deployProxy(address payable _linkdropMaster) | |
internal | |
returns (address payable) | |
{ | |
require(!isDeployed(_linkdropMaster), "Deployed"); |
I hereby claim:
To claim this, I am signing this object:
contract IGivethBridge { | |
function donateAndCreateGiver(address giver, uint64 receiverId, address token, uint _amount) payable public { | |
} | |
} | |
contract Donator { | |
IGivethBridge givethBridge = IGivethBridge(0xC59dCE5CCC065A4b51A2321F857466A25ca49B40); | |
uint64 public givethReceiverId = 226; |