Agoric
Agoric
Agoric can be accessed with the following coin types:
| Environment | Coin Type | Faucet |
|---|---|---|
| Agoric Production | bld | |
| Agoric Testnet | tbld | https://emerynet.faucet.agoric.net |
Explorer
https://www.mintscan.io/agoric/
Generating wallets
To create an Agoric wallet using BitGoJS:
bitgo
.coin('tbld')
.wallets()
.generateWallet({
label: 'My Test Wallet',
passphrase: 'secretpassphrase1a5df8380e0e30',
})
.then(function (wallet) {
// print the new wallet
console.dir(wallet);
});To create an Agoric wallet using the platform API:
LABEL="My Test Wallet"
PASSPHRASE="secretpassphrase1a5df8380e0e30"
curl -X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-d "{ \"label\": \"$LABEL\", \"passphrase\": \"$PASSPHRASE\" }" \
http://$BITGO_EXPRESS_HOST/api/v2/tbld/wallet/generateCreating addresses
bitgo
.coin('tbld')
.wallets()
.getWallet({ id: '585c51a5df8380e0e3082e46' })
.then(function (wallet) {
return wallet.createAddress();
})
.then(function (newAddress) {
// print new address details
console.dir(newAddress);
});WALLET=585c51a5df8380e0e3082e46
curl -X POST \
-H "Authorization: Bearer $ACCESS_TOKEN" \
https://app.bitgo-test.com/api/v2/tbld/wallet/$WALLET/addressStaking
- Agoric supports staking. Agoric uses a delegated proof-of-stake (DPoS) consensus mechanism. Agoric holders can stake their tokens to validators.
- Validators participate in consensus to produce new blocks and validate transactions.
- By staking Agoric, holders can earn rewards.
Balances
The base unit of Agoric is ubld (microbld).
- 1 bld = 1,000,000 ubld
- 1 ubld = 0.000001 bld
To check the balance of a wallet:
const address = yield walletInstance.getAddress({ address: 'agoric12dax0q6ffnypelwhqjl52a8awfxypp2u76scwy' });
const bal = address.balance;
return bal;Tokens
Agoric does not support tokens transactions.
Consolidation
We are supporting memo based addresses. Therefore, consolidation is not required.
Fee rate
The default gas fee is 0.49 bld
Updated 22 days ago