-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update initia-registry npm package (#75)
* update initia-registry npm package * merge main (#81) * just run init_ai. (#76) * hunter: add faucet for tucana (#78) * hunter: add faucet for tucana * hunter: add tuc in initia assetlist --------- Co-authored-by: ernest <[email protected]> * update tucana logo (#79) * upgrade node (#80) * feat: add Noon testnet (#77) * testnets/noon: initial commit * testnets/initia: add Noon IBC info * update v0.2.11 * Update assetlist.json * Update initia/chain.json * update v0.2.12 --------- Co-authored-by: SeUkKim <[email protected]> Co-authored-by: hunter89761 <[email protected]> Co-authored-by: ernest <[email protected]> Co-authored-by: David Sun <[email protected]> Co-authored-by: Harvey <[email protected]> Co-authored-by: Seungbae Yu <[email protected]> * feat: add Noon --------- Co-authored-by: SeUkKim <[email protected]> Co-authored-by: hunter89761 <[email protected]> Co-authored-by: ernest <[email protected]> Co-authored-by: David Sun <[email protected]> Co-authored-by: Harvey <[email protected]> Co-authored-by: Seungbae Yu <[email protected]>
- Loading branch information
1 parent
fa51afb
commit 368c84d
Showing
17 changed files
with
461 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
import { AssetList } from "@initia/initia-registry-types"; | ||
|
||
import * as _tucana from "./tucana"; | ||
import * as _noon from "./noon"; | ||
import * as _init_ai from "./init_ai"; | ||
|
||
const assets: AssetList[] = [_init_ai.assets]; | ||
const assets: AssetList[] = [_tucana.assets, _noon.assets, _init_ai.assets]; | ||
|
||
export default assets; |
101 changes: 101 additions & 0 deletions
101
_packages/initia-registry/src/testnet/blackwing/chain.ts
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,101 @@ | ||
import { Chain } from "@initia/initia-registry-types"; | ||
const info: Chain = { | ||
$schema: "../../chain.schema.json", | ||
chain_name: "blackwing", | ||
chain_id: "tomcat-1", | ||
website: "https://blackwing.fi", | ||
pretty_name: "Blackwing", | ||
status: "live", | ||
network_type: "testnet", | ||
daemon_name: "minitiad", | ||
node_home: "$HOME/.minitia", | ||
key_algos: ["secp256k1"], | ||
slip44: 118, | ||
bech32_prefix: "init", | ||
fees: { | ||
fee_tokens: [ | ||
{ | ||
denom: "umin", | ||
fixed_min_gas_price: 0.15, | ||
}, | ||
{ | ||
denom: | ||
"l2/aee375e9d0b181f0d9d3a49f9a3d1d6b05d62b0ac81f8c92b9282afa4213d884", | ||
fixed_min_gas_price: 0.15, | ||
low_gas_price: 0.15, | ||
average_gas_price: 0.15, | ||
high_gas_price: 0.4, | ||
}, | ||
{ | ||
denom: | ||
"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", | ||
fixed_min_gas_price: 0.15, | ||
low_gas_price: 0.15, | ||
average_gas_price: 0.15, | ||
high_gas_price: 0.4, | ||
}, | ||
], | ||
}, | ||
staking: { | ||
staking_tokens: [], | ||
}, | ||
description: "Blackwing Testnet", | ||
apis: { | ||
rpc: [ | ||
{ | ||
address: | ||
"https://maze-rpc-18bdff44-3aa4-425e-9bc0-06a2afa40af8.ue1-prod.newmetric.xyz", | ||
}, | ||
], | ||
rest: [ | ||
{ | ||
address: | ||
"https://maze-rest-18bdff44-3aa4-425e-9bc0-06a2afa40af8.ue1-prod.newmetric.xyz", | ||
}, | ||
], | ||
}, | ||
explorers: [ | ||
{ | ||
kind: "initia scan", | ||
url: "https://scan.testnet.initia.xyz/tomcat-1", | ||
tx_page: "https://scan.testnet.initia.xyz/tomcat-1/txs/${txHash}", | ||
account_page: | ||
"https://scan.testnet.initia.xyz/tomcat-1/accounts/${accountAddress}", | ||
}, | ||
], | ||
images: [ | ||
{ | ||
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/blackwing/images/BLACKWING.png", | ||
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/blackwing/images/BLACKWING.svg", | ||
}, | ||
], | ||
logo_URIs: { | ||
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/blackwing/images/BLACKWING.png", | ||
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/blackwing/images/BLACKWING.svg", | ||
}, | ||
metadata: { | ||
assetlist: | ||
"https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/blackwing/assetlist.json", | ||
op_bridge_id: "8", | ||
op_denoms: ["uinit"], | ||
ibc_channels: [ | ||
{ | ||
chain_id: "initiation-1", | ||
port_id: "nft-transfer", | ||
channel_id: "channel-1", | ||
version: "ics721-1", | ||
}, | ||
{ | ||
chain_id: "initiation-1", | ||
port_id: "transfer", | ||
channel_id: "channel-0", | ||
version: "ics20-1", | ||
}, | ||
], | ||
minitia: { | ||
type: "minimove", | ||
version: "v0.2.12", | ||
}, | ||
}, | ||
}; | ||
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,3 @@ | ||
import _chain from "./chain"; | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
import { Chain } from "@initia/initia-registry-types"; | ||
|
||
import * as _tucana from "./tucana"; | ||
import * as _noon from "./noon"; | ||
import * as _miniwasm from "./miniwasm"; | ||
import * as _minimove from "./minimove"; | ||
import * as _initia from "./initia"; | ||
import * as _init_ai from "./init_ai"; | ||
import * as _blackwing from "./blackwing"; | ||
|
||
const chains: Chain[] = [ | ||
_tucana.chain, | ||
_noon.chain, | ||
_miniwasm.chain, | ||
_minimove.chain, | ||
_initia.chain, | ||
_init_ai.chain, | ||
_blackwing.chain, | ||
]; | ||
|
||
export default chains; |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
export * as tucana from "./tucana"; | ||
export * as noon from "./noon"; | ||
export * as miniwasm from "./miniwasm"; | ||
export * as minimove from "./minimove"; | ||
export * as initia from "./initia"; | ||
export * as init_ai from "./init_ai"; | ||
export * as blackwing from "./blackwing"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import { AssetList } from "@initia/initia-registry-types"; | ||
const info: AssetList = { | ||
$schema: "../../assetlist.schema.json", | ||
chain_name: "noon", | ||
assets: [ | ||
{ | ||
description: "The native token of Initia", | ||
denom_units: [ | ||
{ | ||
denom: | ||
"l2/ffea49d63cbadcfd749b4f635eca198b2f3b44cb1f6b580f5d201d58f3bf7aea", | ||
exponent: 0, | ||
}, | ||
{ | ||
denom: "INIT", | ||
exponent: 6, | ||
}, | ||
], | ||
base: "l2/ffea49d63cbadcfd749b4f635eca198b2f3b44cb1f6b580f5d201d58f3bf7aea", | ||
display: "INIT", | ||
name: "Initia Native Token", | ||
symbol: "INIT", | ||
coingecko_id: "", | ||
images: [ | ||
{ | ||
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/INIT.png", | ||
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/INIT.svg", | ||
}, | ||
], | ||
logo_URIs: { | ||
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/INIT.png", | ||
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/INIT.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,80 @@ | ||
import { Chain } from "@initia/initia-registry-types"; | ||
const info: Chain = { | ||
$schema: "../../chain.schema.json", | ||
chain_name: "noon", | ||
chain_id: "burrito-1", | ||
website: "https://lunchlunch.xyz", | ||
pretty_name: "Noon", | ||
status: "live", | ||
network_type: "testnet", | ||
daemon_name: "minitiad", | ||
node_home: "$HOME/.minitia", | ||
key_algos: ["secp256k1"], | ||
slip44: 118, | ||
bech32_prefix: "init", | ||
fees: { | ||
fee_tokens: [ | ||
{ | ||
denom: "unoon", | ||
fixed_min_gas_price: 0.15, | ||
low_gas_price: 0.15, | ||
average_gas_price: 0.15, | ||
high_gas_price: 0.4, | ||
}, | ||
], | ||
}, | ||
staking: { | ||
staking_tokens: [], | ||
}, | ||
description: "Noon Testnet", | ||
apis: { | ||
rpc: [ | ||
{ | ||
address: "https://burrito-1-rpc.lunchlunch.xyz", | ||
}, | ||
], | ||
rest: [ | ||
{ | ||
address: "https://burrito-1-lcd.lunchlunch.xyz", | ||
}, | ||
], | ||
}, | ||
explorers: [ | ||
{ | ||
kind: "initia scan", | ||
url: "https://scan.testnet.initia.xyz/burrito-1", | ||
tx_page: "https://scan.testnet.initia.xyz/burrito-1/txs/${txHash}", | ||
account_page: | ||
"https://scan.testnet.initia.xyz/burrito-1/accounts/${accountAddress}", | ||
}, | ||
], | ||
images: [ | ||
{ | ||
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/NOON.png", | ||
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/NOON.svg", | ||
}, | ||
], | ||
logo_URIs: { | ||
png: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/NOON.png", | ||
svg: "https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/images/NOON.svg", | ||
}, | ||
metadata: { | ||
assetlist: | ||
"https://raw.githubusercontent.com/initia-labs/initia-registry/main/testnets/noon/assetlist.json", | ||
op_bridge_id: "17", | ||
op_denoms: ["uinit"], | ||
ibc_channels: [ | ||
{ | ||
chain_id: "initiation-1", | ||
port_id: "transfer", | ||
channel_id: "channel-0", | ||
version: "ics20-1", | ||
}, | ||
], | ||
minitia: { | ||
type: "minimove", | ||
version: "v0.2.12", | ||
}, | ||
}, | ||
}; | ||
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; |
Oops, something went wrong.