-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8ba082f
commit 8f45fbc
Showing
11 changed files
with
159 additions
and
14 deletions.
There are no files selected for viewing
Submodule chain-registry
updated
14 files
+4 −4 | agoric/chain.json | |
+39 −0 | agoric/versions.json | |
+34 −0 | allora/assetlist.json | |
+114 −0 | allora/chain.json | |
+ − | allora/images/allora.png | |
+1 −1 | allora/images/allora.svg | |
+36 −0 | allora/versions.json | |
+2 −2 | atomone/chain.json | |
+54 −0 | nolus/assetlist.json | |
+4 −4 | testnets/alloratestnet/assetlist.json | |
+5 −5 | testnets/alloratestnet/chain.json | |
+ − | testnets/alloratestnet/images/allora-token.png | |
+12 −12 | testnets/cheqdtestnet/chain.json | |
+32 −1 | testnets/cheqdtestnet/versions.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { AssetList } from '@chain-registry/types'; | ||
const info: AssetList = { | ||
$schema: '../assetlist.schema.json', | ||
chain_name: 'allora', | ||
assets: [{ | ||
description: 'Allora Token (ALLO) is the Allora Network\'s native utility token, used as the primary means to govern, secure the blockchain, and incentivize network participants.', | ||
denom_units: [{ | ||
denom: 'uallo', | ||
exponent: 0 | ||
}, { | ||
denom: 'allo', | ||
exponent: 18 | ||
}], | ||
base: 'uallo', | ||
name: 'Allora Network', | ||
display: 'allo', | ||
symbol: 'ALLO', | ||
logo_URIs: { | ||
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png', | ||
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg' | ||
}, | ||
images: [{ | ||
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png', | ||
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg' | ||
}], | ||
type_asset: 'sdk.coin' | ||
}] | ||
}; | ||
export default info; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
import { Chain } from '@chain-registry/types'; | ||
const info: Chain = { | ||
$schema: '../chain.schema.json', | ||
chain_name: 'allora', | ||
status: 'live', | ||
network_type: 'mainnet', | ||
website: 'https://allora.network', | ||
pretty_name: 'Allora', | ||
chain_type: 'cosmos', | ||
chain_id: 'allora-mainnet-1', | ||
bech32_prefix: 'allo', | ||
daemon_name: 'allorad', | ||
node_home: '$HOME/.allorad', | ||
slip44: 118, | ||
fees: { | ||
fee_tokens: [{ | ||
denom: 'uallo', | ||
fixed_min_gas_price: 10, | ||
low_gas_price: 10, | ||
average_gas_price: 10, | ||
high_gas_price: 12 | ||
}] | ||
}, | ||
staking: { | ||
staking_tokens: [{ | ||
denom: 'uallo' | ||
}] | ||
}, | ||
codebase: { | ||
|
||
}, | ||
logo_URIs: { | ||
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png', | ||
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg' | ||
}, | ||
apis: { | ||
rpc: [{ | ||
address: 'https://allora-rpc.mainnet.allora.network', | ||
provider: 'allora' | ||
}], | ||
rest: [{ | ||
address: 'https://allora-api.mainnet.allora.network', | ||
provider: 'allora' | ||
}], | ||
grpc: [{ | ||
address: 'allora-grpc.mainnet.allora.network:443', | ||
provider: 'allora' | ||
}] | ||
}, | ||
explorers: [{ | ||
kind: 'Allora Studio', | ||
url: 'https://explorer.allora.network', | ||
tx_page: 'https://explorer.allora.network/explorer/transactions/${txHash}', | ||
account_page: 'https://explorer.allora.network/profile/${accountAddress}' | ||
}], | ||
images: [{ | ||
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.png', | ||
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/allora/images/allora.svg' | ||
}] | ||
}; | ||
export default info; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import _assets from './assets'; | ||
import _chain from './chain'; | ||
|
||
export const assets = _assets; | ||
export const chain = _chain; |
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
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
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
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
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
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
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