Skip to content

Commit

Permalink
Merge pull request #193 from scrtlabs/nym
Browse files Browse the repository at this point in the history
Add NYM
  • Loading branch information
SecretSaturn authored Dec 5, 2024
2 parents a3b1904 + f5715f2 commit 5c51651
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
Binary file added public/img/assets/nyx.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions src/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,20 @@ export const chains: { [chain_name: string]: Chain } = {
chain_image: '/nolus.svg',
explorer_account: 'https://ping.pub/nolus/account/'
},
Nym: {
chain_name: 'Nym',
deposit_channel_id: 'channel-12',
deposit_gas: 200_000,
deposit_gas_denom: 'unym',
withdraw_channel_id: 'channel-174',
withdraw_gas: 150_000,
chain_id: 'nyx',
bech32_prefix: 'n',
lcd: 'https://api.nymtech.net',
rpc: 'https://rpc.nymtech.net/',
chain_image: '/nyx.png',
explorer_account: 'https://www.mintscan.io/nyx/account/'
},
Omniflix: {
chain_name: 'Omniflix',
deposit_channel_id: 'channel-46',
Expand Down Expand Up @@ -890,6 +904,18 @@ export const tokens: Token[] = [
'uscrt'
)
},
{
chain_name: 'Nym',
denom: ibcDenom(
[
{
incomingChannelId: chains['Nym'].deposit_channel_id,
incomingPortId: 'transfer'
}
],
'uscrt'
)
},
{
chain_name: 'Omniflix',
denom: ibcDenom(
Expand Down Expand Up @@ -2208,6 +2234,35 @@ export const tokens: Token[] = [
}
]
},
{
name: 'NYM',
description: 'Nym Governance Token',
address: 'secret19gk280z6j9ywt3ln6fmfwfa36dkqeukcwqdw2k',
code_hash: '638a3e1d50175fbcb8373cf801565283e3eb23d88a9b7b7f99fcc5eb1e6b561e',
image: '/nyx.png',
decimals: 6,
coingecko_id: 'nym',
deposits: [
{
chain_name: 'Nym',
denom: 'unym'
}
],
withdrawals: [
{
chain_name: 'Nym',
denom: ibcDenom(
[
{
incomingChannelId: chains['Nym'].withdraw_channel_id,
incomingPortId: 'transfer'
}
],
'unym'
)
}
]
},
{
name: 'LUNA',
description: 'Terra Governance Token',
Expand Down

0 comments on commit 5c51651

Please sign in to comment.