We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a763cbe commit a3b5b05Copy full SHA for a3b5b05
1 file changed
src/util/blockchains.js
@@ -1,7 +1,8 @@
1
const BLOCKCHAINS = {
2
EOSIO:'EOSIO',
3
ETH:'Ethereum',
4
- TRX:'Tron'
+ TRX:'Tron',
5
+ BTC:'Bitcoin',
6
}
7
8
export default BLOCKCHAINS;
@@ -11,6 +12,7 @@ export const convertBlockchain = b => {
11
12
case BLOCKCHAINS.EOSIO: return 'eos';
13
case BLOCKCHAINS.ETH: return 'eth';
14
case BLOCKCHAINS.TRX: return 'trx';
15
+ case BLOCKCHAINS.BTC: return 'btc';
16
17
18
0 commit comments