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
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "strconv" | |
| "github.com/miekg/dns" | |
| ) |
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
| # In this example we're sending some test bitcoins from an address we control to a brand new test | |
| # address. We'll be sending the coins using the following address, public and private keys (please | |
| # don't abuse). | |
| # address : mtWg6ccLiZWw2Et7E5UqmHsYgrAi5wqiov | |
| # public : 03bb318b00de944086fad67ab78a832eb1bf26916053ecd3b14a3f48f9fbe0821f | |
| # private : 1af97b1f428ac89b7d35323ea7a68aba8cad178a04eddbbf591f65671bae48a2 | |
| # 1. generate a one-shot dummy address we're going to send money to | |
| $ curl -X POST http://api.blockcypher.com/v1/btc/test3/addrs | |
| { |
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
| Name | Link | Whitepaper title | |
|---|---|---|---|
| Achain (previously thinkyoung) | https://www.achain.com/Achain%20Whitepaper%202.0_EN.pdf | Achain Blockchain Whitepaper: build to be boundless | |
| Aergo (by blocko) | https://www.aergo.io/paper/ | multiple | |
| Aion | https://aion.network/media/en-aion-network-technical-introduction.pdf | Aion: enabling the decentralized Internet | |
| Ark | https://ark.io/Whitepaper.pdf | A Platform for Consumer Adoption | |
| Avalanche | https://ipfs.io/ipfs/QmUy4jh5mGNZvLkjies1RWM4YuvJh5o2FYopNPVYwrRVGV | Snowflake to Avalanche: a novel metastable consensus protocol family for cryptocurrencies | |
| Blink | https://blink.network/media/blink-protocol.pdf | Proof-of-stake distrbuted consensus protocol | |
| Byteball | https://byteball.org/Byteball.pdf | A Decentralized System for Storage and Transfer of Value | |
| Cardano | https://whitepaperdatabase.com/cardano-ada-whitepaper/ | Ouroboros: A provably secure proof-of-stake blockchain protocol | |
| Celer Network | https://www.celer.network/doc/CelerNetwork-Whitepaper.pdf | Celer Network: Bring Internet Scale to Every Blockchai |
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
| D [0-9] | |
| L [a-zA-Z_] | |
| H [a-fA-F0-9] | |
| E ([Ee][+-]?{D}+) | |
| P ([Pp][+-]?{D}+) | |
| FS (f|F|l|L) | |
| IS ((u|U)|(u|U)?(l|L|ll|LL)|(l|L|ll|LL)(u|U)) | |
| %{ | |
| #include <stdio.h> |
OlderNewer