Last active
March 19, 2019 09:51
-
-
Save askucher/edfbc656b32840bf5486ae3902898d87 to your computer and use it in GitHub Desktop.
This file contains 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
export type = 'coin'; | |
export token = "gbx"; | |
export image = "https://res.cloudinary.com/nixar-work/image/upload/v1548537659/gobyte.png" | |
export usd-info = "url(https://min-api.cryptocompare.com/data/pricemulti?fsyms=GBX&tsyms=USD).GBX.USD" | |
export mainnet = { | |
decimals: 8, | |
txFee: '0.0005', | |
txFeeOptions: { | |
auto: '0.0005', | |
cheap: '0.00000226', | |
instantPerInput: '0.0001', | |
privatePerInput: '0.005', | |
}, | |
mask: '1000000000000000000000000000000000', | |
api: { | |
provider: 'insight', | |
url: 'https://insight.gobyte.network', | |
apiName: 'insight-api-gobyte', | |
mixingList: "https://explorer.gobyte.network:5002/api/masternodelist", | |
decimal: 8 | |
}, | |
messagePrefix: '\x18GoByte Signed Message:\n', | |
bech32: 'bc', | |
bip32: { | |
'public': 0x488b21e, | |
'private': 0x488ade4 | |
}, | |
pubKeyHash: 0x26, | |
scriptHash: 0x10, | |
wif: 0xc6, | |
dustThreshold: 5460 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment