$ cargo build --release```
Created
June 11, 2020 19:40
-
-
Save developerfred/1f55a79a629e1878a302f601e1acd358 to your computer and use it in GitHub Desktop.
Real-Time LockDrop
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "ClaimId": "H256", | |
| "Lockdrop": { | |
| "type": "u8", | |
| "transaction_hash": "H256", | |
| "public_key": "[u8; 33]", | |
| "duration": "u64", | |
| "value": "u128" | |
| }, | |
| "TickerRate": { | |
| "authority": "u16", | |
| "btc": "DollarRate", | |
| "eth": "DollarRate" | |
| }, | |
| "DollarRate": "u128", | |
| "AuthorityId": "AccountId", | |
| "AuthorityVote": "u32", | |
| "ClaimVote": { | |
| "claim_id": "ClaimId", | |
| "approve": "bool", | |
| "authority": "u16" | |
| }, | |
| "Claim": { | |
| "params": "Lockdrop", | |
| "approve": "AuthorityVote", | |
| "decline": "AuthorityVote", | |
| "amount": "u128", | |
| "complete": "bool" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment