Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update klaytn to kaia #708

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ Using `Uint8Array` as the paylaod type will always work:
// Using Uint8Array will always work but you can use a more specific payload layout type
console.log(deserialize("Uint8Array", fakeVaaBytes));
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/parseVaa.ts#L15)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/parseVaa.ts#L14)
<!--EXAMPLE_PARSE_VAA-->

But more specific types can be used
Expand Down Expand Up @@ -276,7 +276,7 @@ But more specific types can be used
// Or use the correct payload type to get a more specific data structure
console.log(deserialize("TokenBridge:Transfer", tokenBridgeVaaBytes));
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/parseVaa.ts#L38)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/parseVaa.ts#L37)
<!--EXAMPLE_PARSE_TOKEN_TRANSFER_VAA-->

Or define your own
Expand Down Expand Up @@ -314,7 +314,7 @@ Or define your own
console.log(encoding.hex.encode(vaa.payload));
console.log(deserializeLayout(customPayloadLayout, vaa.payload));
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/parseVaa.ts#L73)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/parseVaa.ts#L72)
<!--EXAMPLE_PARSE_CUSTOM_VAA-->


Expand Down Expand Up @@ -459,7 +459,7 @@ We can create a new `Wormhole` object and use it to to create `TokenTransfer`, `
const destTxids = await xfer.completeTransfer(route.destination.signer);
console.log(`Completed Transfer: `, destTxids);
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/tokenBridge.ts#L122)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/tokenBridge.ts#L115)
<!--EXAMPLE_TOKEN_TRANSFER-->


Expand Down Expand Up @@ -507,7 +507,7 @@ We can also transfer native USDC using [Circle's CCTP](https://www.circle.com/en
const dstTxids = await xfer.completeTransfer(dst.signer);
console.log(`Completed Transfer: `, dstTxids);
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cctp.ts#L81)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cctp.ts#L73)
<!--EXAMPLE_CCTP_TRANSFER-->


Expand Down Expand Up @@ -538,7 +538,7 @@ A transfer into Cosmos from outside cosmos will be automatically delivered to th
const attests = await xfer.fetchAttestation(600_000);
console.log("Got Attestations", attests);
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cosmos.ts#L120)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cosmos.ts#L113)
<!--EXAMPLE_GATEWAY_INBOUND-->

A transfer within Cosmos will use IBC to transfer from the origin to the Gateway chain, then out from the Gateway to the destination chain
Expand All @@ -564,7 +564,7 @@ A transfer within Cosmos will use IBC to transfer from the origin to the Gateway
const attests = await xfer.fetchAttestation(60_000);
console.log("Got attests: ", attests);
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cosmos.ts#L152)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cosmos.ts#L145)
<!--EXAMPLE_GATEWAY_INTERCOSMOS-->

A transfer leaving Cosmos will produce a VAA from the Gateway that must be manually redeemed on the destination chain
Expand Down Expand Up @@ -593,7 +593,7 @@ A transfer leaving Cosmos will produce a VAA from the Gateway that must be manua
const dstTxIds = await xfer.completeTransfer(dst.signer);
console.log("Completed transfer on destination chain", dstTxIds);
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cosmos.ts#L184)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cosmos.ts#L177)
<!--EXAMPLE_GATEWAY_OUTBOUND-->


Expand All @@ -614,7 +614,7 @@ A `TransactionId` or `WormholeMessageId` may be used to recover the transfer
const dstTxIds = await xfer.completeTransfer(signer);
console.log("Completed transfer: ", dstTxIds);
```
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cctp.ts#L131)
See example [here](https://github.com/wormhole-foundation/wormhole-sdk-ts/blob/main/examples/src/cctp.ts#L117)
<!--EXAMPLE_RECOVER_TRANSFER-->

## Routes
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/constants/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const chainIdAndChainEntries = [
[ 10, "Fantom" ],
[ 11, "Karura" ],
[ 12, "Acala" ],
[ 13, "Klaytn" ],
[ 13, "Kaia" ],
[ 14, "Celo" ],
[ 15, "Near" ],
[ 16, "Moonbeam" ],
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/constants/contracts/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const coreBridgeContracts = [[
["Fantom", "0x126783A6Cb203a3E35344528B26ca3a0489a1485"],
["Karura", "0xa321448d90d4e5b0A732867c18eA198e75CAC48E"],
["Acala", "0xa321448d90d4e5b0A732867c18eA198e75CAC48E"],
["Klaytn", "0x0C21603c4f3a6387e241c0091A7EA39E43E90bb7"],
["Kaia", "0x0C21603c4f3a6387e241c0091A7EA39E43E90bb7"],
["Celo", "0xa321448d90d4e5b0A732867c18eA198e75CAC48E"],
["Near", "contract.wormhole_crypto.near"],
["Injective", "inj17p9rzwnnfxcjp32un9ug7yhhzgtkhvl9l2q74d"],
Expand Down Expand Up @@ -54,7 +54,7 @@ export const coreBridgeContracts = [[
["Fantom", "0x1BB3B4119b7BA9dfad76B0545fb3F531383c3bB7"],
["Karura", "0x64fb09E405D2043ed7785a29E296C766D56F2056"],
["Acala", "0x64fb09E405D2043ed7785a29E296C766D56F2056"],
["Klaytn", "0x1830CC6eE66c84D2F177B94D544967c774E624cA"],
["Kaia", "0x1830CC6eE66c84D2F177B94D544967c774E624cA"],
["Celo", "0x88505117CA88e7dd2eC6EA1E13f0948db2D50D56"],
["Near", "wormhole.wormhole.testnet"],
["Injective", "inj1xx3aupmgv3ce537c0yce8zzd3sz567syuyedpg"],
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/constants/contracts/nftBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const nftBridgeContracts = [[
["Fantom", "0xA9c7119aBDa80d4a4E0C06C8F4d8cF5893234535"],
["Karura", "0xb91e3638F82A1fACb28690b37e3aAE45d2c33808"],
["Acala", "0xb91e3638F82A1fACb28690b37e3aAE45d2c33808"],
["Klaytn", "0x3c3c561757BAa0b78c5C025CdEAa4ee24C1dFfEf"],
["Kaia", "0x3c3c561757BAa0b78c5C025CdEAa4ee24C1dFfEf"],
["Celo", "0xA6A377d75ca5c9052c9a77ED1e865Cc25Bd97bf3"],
["Aptos", "0x1bdffae984043833ed7fe223f7af7a3f8902d04129b14f801823e64827da7130"],
["Moonbeam", "0x453cfbe096c0f8d763e8c5f24b441097d577bde2"],
Expand All @@ -32,7 +32,7 @@ export const nftBridgeContracts = [[
["Oasis", "0xC5c25B41AB0b797571620F5204Afa116A44c0ebA"],
["Aurora", "0x8F399607E9BA2405D87F5f3e1B78D950b44b2e24"],
["Fantom", "0x63eD9318628D26BdCB15df58B53BB27231D1B227"],
["Klaytn", "0x94c994fC51c13101062958b567e743f1a04432dE"],
["Kaia", "0x94c994fC51c13101062958b567e743f1a04432dE"],
["Celo", "0xaCD8190F647a31E56A656748bC30F69259f245Db"],
["Moonbeam", "0x98A0F4B96972b32Fcb3BD03cAeB66A44a6aB9Edb"],
["Neon", "0x66E5BcFD45D2F3f166c567ADa663f9d2ffb292B4"],
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/constants/contracts/relayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const relayerContracts = [[
["Polygon", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Avalanche", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Fantom", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Klaytn", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Kaia", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Celo", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Moonbeam", "0x27428DD2d3DD32A4D7f7C497eAaa23130d894911"],
["Base", "0x706f82e9bb5b0813501714ab5974216704980e31"],
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/constants/contracts/tokenBridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const tokenBridgeContracts = [[
["Fantom", "0x7C9Fc5741288cDFdD83CeB07f3ea7e22618D79D2"],
["Karura", "0xae9d7fe007b3327AA64A32824Aaac52C42a6E624"],
["Acala", "0xae9d7fe007b3327AA64A32824Aaac52C42a6E624"],
["Klaytn", "0x5b08ac39EAED75c0439FC750d9FE7E1F9dD0193F"],
["Kaia", "0x5b08ac39EAED75c0439FC750d9FE7E1F9dD0193F"],
["Celo", "0x796Dff6D74F3E27060B71255Fe517BFb23C93eed"],
["Near", "contract.portalbridge.near"],
["Injective", "inj1ghd753shjuwexxywmgs4xz7x2q732vcnxxynfn"],
Expand Down Expand Up @@ -50,7 +50,7 @@ export const tokenBridgeContracts = [[
["Fantom", "0x599CEa2204B4FaECd584Ab1F2b6aCA137a0afbE8"],
["Karura", "0xe157115ef34c93145Fec2FE53706846853B07F42"],
["Acala", "0xe157115ef34c93145Fec2FE53706846853B07F42"],
["Klaytn", "0xC7A13BE098720840dEa132D860fDfa030884b09A"],
["Kaia", "0xC7A13BE098720840dEa132D860fDfa030884b09A"],
["Celo", "0x05ca6037eC51F8b712eD2E6Fa72219FEaE74E153"],
["Near", "token.wormhole.testnet"],
["Injective", "inj1q0e70vhrv063eah90mu97sazhywmeegp7myvnh"],
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/constants/finality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const finalityThresholds = [
["Sui", 0],
["Algorand", 0],
["Aptos", 0],
["Klaytn", 0],
["Kaia", 0],
["Sei", 0],
["Near", 0],
["Osmosis", 0],
Expand Down Expand Up @@ -105,7 +105,7 @@ const blockTimeMilliseconds = [
["Holesky", 15_000],
["Injective", 2_500],
["Karura", 12_000],
["Klaytn", 1_000],
["Kaia", 1_000],
["Kujira", 3_000],
["Mantle", 2_000],
["Moonbeam", 12_000],
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/constants/nativeChainIds.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const chainNetworkNativeChainIdEntries = [
["Fantom", 250n],
["Gnosis", 100n],
["Karura", 686n],
["Klaytn", 8217n],
["Kaia", 8217n],
["Moonbeam", 1284n],
["Neon", 245022934n],
["Oasis", 42262n],
Expand Down Expand Up @@ -85,7 +85,7 @@ const chainNetworkNativeChainIdEntries = [
["Fantom", 4002n],
["Gnosis", 10200n],
["Karura", 596n],
["Klaytn", 1001n], //baobab
["Kaia", 1001n], //kairos
["Moonbeam", 1287n], //moonbase alpha
["Neon", 245022940n],
["Oasis", 42261n],
Expand Down
2 changes: 1 addition & 1 deletion core/base/src/constants/platforms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const platformAndChainsEntries = [[
"Fantom",
"Gnosis",
"Karura",
"Klaytn",
"Kaia",
"Moonbeam",
"Neon",
"Oasis",
Expand Down
4 changes: 2 additions & 2 deletions core/base/src/constants/rpc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const rpcConfig = [[
["Gnosis", "https://rpc.ankr.com/gnosis"],
["Rootstock", "https://public-node.rsk.co"],
["Mantle", "https://rpc.mantle.xyz"],
["Klaytn", "https://rpc.ankr.com/klaytn"],
["Kaia", "https://public-en.node.kaia.io"],
["Snaxchain", "https://mainnet.snaxchain.io"],
]], [
"Testnet", [
Expand Down Expand Up @@ -87,7 +87,7 @@ const rpcConfig = [[
["Scroll", "https://rpc.ankr.com/scroll_sepolia_testnet"],
["Rootstock", "https://public-node.testnet.rsk.co"],
["Gnosis", "https://rpc.chiadochain.net"],
["Klaytn", "https://rpc.ankr.com/klaytn_testnet"],
["Kaia", "https://public-en-kairos.node.kaia.io"],
]], [
"Devnet", [
["Ethereum", "http://eth-devnet:8545"],
Expand Down
28 changes: 14 additions & 14 deletions core/base/src/constants/tokens/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x9AEA32B459e96C8eF5010f69130bf95fd129ac05",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -547,7 +547,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0xEA970e7b7D131Ea36c3051C9Ca11e785462fE00c",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -862,7 +862,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x415ce980fde17F1FF102e1c6e4ce860Acc615D74",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -1125,7 +1125,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x126C03982Ad6D7ef7E6aF020bF219e87185a6BC3",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -1381,7 +1381,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x787e2F3509583C0F03A339Be0826463C839CBE5E",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -1646,7 +1646,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0xe304254de5c2048F9bFb042dDFB54f84d1d77730",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -1902,7 +1902,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0xf0a9476E4712123A807859f9Fd25fe98213379BD",
original: "Klaytn",
original: "Kaia",
},
],
],
Expand Down Expand Up @@ -2384,7 +2384,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 8,
address: "0xa5ec915864d7f37b25ca9144b2db6ebcf29e73603c2ccf9d0e765adcd9049a98::coin::COIN",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -2640,7 +2640,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 8,
address: "0x539b652f8230a0e42adaeda4706b5639893d22362eda6ea897493c210cb48219::coin::T",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -2929,7 +2929,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x41c433c146c47Dc53FC48cDc69e406e365e298E1",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -3227,7 +3227,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0xFA95f6c796E54F9C4a99392CAE84410a25794BB3",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -3525,7 +3525,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0xbbeF8233a0d10EEAb84E913FaDB337ab9b62F683",
original: "Klaytn",
original: "Kaia",
},
],
[
Expand Down Expand Up @@ -3782,7 +3782,7 @@ const mainnetTokenEntries = [
symbol: "WKLAY",
decimals: 8,
address: "wormhole1kyy876kye7k79fuzat532yyqkrzhlr6l7hc7lfa2rk5tygzhy00qrhjgkc",
original: "Klaytn",
original: "Kaia",
},
],
],
Expand Down Expand Up @@ -4187,7 +4187,7 @@ const mainnetTokenEntries = [
],
],
[
"Klaytn",
"Kaia",
[
[
"KLAY",
Expand Down
8 changes: 4 additions & 4 deletions core/base/src/constants/tokens/testnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ const testnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x327e0c7D5cFa65d4f9E358dC9fA4446C49dBcB6C",
original: "Klaytn",
original: "Kaia",
},
],
],
Expand Down Expand Up @@ -422,7 +422,7 @@ const testnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x7b34f3711705eB2963fB856cda063C979de4749e",
original: "Klaytn",
original: "Kaia",
},
],
],
Expand Down Expand Up @@ -624,7 +624,7 @@ const testnetTokenEntries = [
symbol: "WKLAY",
decimals: 18,
address: "0x79D34FDb686B5D139949E4F92D83EEe376489176",
original: "Klaytn",
original: "Kaia",
},
],
],
Expand Down Expand Up @@ -3170,7 +3170,7 @@ const testnetTokenEntries = [
],
],
[
"Klaytn",
"Kaia",
[
[
"KLAY",
Expand Down
4 changes: 2 additions & 2 deletions core/icons/src/constants/chainIcons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ export function chainToIcon(chain: Chain): string {
PREFIX +
"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCA0OTAgNDkwIj48cGF0aCBmaWxsPSJ1cmwoI2EpIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yNDUgNDkwYzEzNS4zMSAwIDI0NS0xMDkuNjkgMjQ1LTI0NVMzODAuMzEgMCAyNDUgMCAwIDEwOS42OSAwIDI0NXMxMDkuNjkgMjQ1IDI0NSAyNDV6bTEtMjNjMTIyLjYxIDAgMjIyLTk5LjM5MyAyMjItMjIyUzM2OC42MDcgMjMgMjQ2IDIzIDI0IDEyMi4zOTMgMjQgMjQ1czk5LjM5MyAyMjIgMjIyIDIyMnptLTEtMTdjMTEzLjIyIDAgMjA1LTkxLjc4MiAyMDUtMjA1UzM1OC4yMTggNDAgMjQ1IDQwIDQwIDEzMS43ODIgNDAgMjQ1czkxLjc4MiAyMDUgMjA1IDIwNXptLjUtMjVjOTkuNjg3IDAgMTgwLjUtODAuODEzIDE4MC41LTE4MC41UzM0NS4xODcgNjQgMjQ1LjUgNjQgNjUgMTQ0LjgxMyA2NSAyNDQuNSAxNDUuODEzIDQyNSAyNDUuNSA0MjV6TTIzNS4zMTMgOTguNjZsMTMwLjY4IDIyNi43IDE0LjAxMi0yNC4zMS0xMTYuNjYtMjAyLjM5em0tMTI1LjMxIDIwMS45OCAxMTEuODQtMTk0LjAzLjIzMS40LjIyLS4zODIgMTMyLjU0IDIyOS45M2gtMjguMDI1bC0zMy40ODQtNTguMDg4Yy0xNS4yMTUtNC44MS0zMS40MTQtNy40MDQtNDguMjItNy40MDQtOC42NjMgMC0xNy4xMTcuNjA1LTI1LjMzNiAxLjgxMmwxNi4xNC0yNy45NTZjMy4wNDctLjE0OSA2LjExMy0uMjI0IDkuMTk2LS4yMjQgMTAuMjY3IDAgMjAuMzM5LjgzMSAzMC4xNTQgMi40M2wtNTMuMTk1LTkyLjI4NC05OC4wNSAxNzAuMXptNzYuMDM1LTIuOTQ5IDUwLjI1Ni04Ny4xODYtMTQuMDEyLTI0LjMwOS04Ni42NzYgMTUwLjM3aDI4LjAyNWwuMjY2LS40NjJjMjQuMDM3LTE0LjQ3MiA1MS42MTktMjEuNzg3IDgxLjczNy0yMS43ODcgMTkuMjMyIDAgMzcuNjcgMy4zOTcgNTQuNzQ3IDkuNjI1bC0xOC43NzUtMzIuNTJhMTg3LjE0IDE4Ny4xNCAwIDAgMC0zNS45NzItMy40NzJjLTIwLjg0MiAwLTQwLjg4NSAzLjQyNS01OS41OTYgOS43NDR6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImEiIHgxPSI0NjIuNSIgeDI9IjEwMSIgeTE9IjQ5MCIgeTI9IjQzLjUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiM1QTgxRkYiLz48c3RvcCBvZmZzZXQ9Ii41MjQiIHN0b3AtY29sb3I9IiNFNDBDNUIiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNGRjRDM0IiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48L3N2Zz4="
);
} else if (chain === "Klaytn") {
} else if (chain === "Kaia") {
return (
PREFIX +
"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbDpzcGFjZT0icHJlc2VydmUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBkPSJtMjU0LjggMjg4LjEgMTYwIDE1OS43Yy04Ny45IDc1LjItMjI1LjkgNzguNC0zMTkuNy0xLjIgNTMuNC01Mi45IDEwNi42LTEwNS43IDE1OS43LTE1OC41eiIgc3R5bGU9ImZpbGw6I2JkMDcyZiIvPjxwYXRoIGQ9Ik0yOTEuNSAyNTUuOWMzNS4yLTM2LjIgNzAuOS03My4yIDEwNy0xMDkuOSAxNS0xNS4zIDMwLjUtMjkuOSA0Ni4xLTQ0LjYgMS4yLTEuMSA1LjItMS4zIDUuOS0uNCAyNy40IDM2IDQ3LjggNzUuMyA1My4yIDEyMC44IDguMiA2OS40LTcuNyAxMzIuNi01MS4zIDE4OC4xLTEuMiAxLjUtMi4zIDMuMi0yLjkgNC4xLTUzLjItNTMuMy0xMDYuNC0xMDYuNC0xNTgtMTU4LjF6IiBzdHlsZT0iZmlsbDojZmE0MjEyIi8+PHBhdGggZD0iTTEzOS4xIDMzNy44YzUuOS0xNS42IDExLjktMzEuMiAxNy44LTQ2LjggMjQuNS02NC41IDQ5LTEyOSA3My41LTE5My40IDcuNy0yMCAxNi40LTM5LjcgMjQuMy01OS43IDMtNy43IDUuMy0xNS43IDcuNy0yMy42IDEuOC01LjkgNS40LTguMSAxMS42LTcuNSAyNC40IDIuNCA0OC40IDYuMiA3MC45IDE2LjUgMTMgNiAyNi4zIDExLjQgMzguNyAxOC41IDEwLjEgNS44IDE4LjkgMTMuNyAzMC4xIDIyTDE0MC43IDMzOWwtMS42LTEuMnoiIHN0eWxlPSJmaWxsOiNmZjgwMDAiLz48cGF0aCBkPSJNMjAwLjIgNDcuN2MtNDUuOSAxMjEuNS05MS43IDI0Mi45LTEzOC41IDM2Ni45LTguOC0xMy40LTE3LTI0LjctMjMuOS0zNi43QzIyIDM1MC40IDExLjkgMzIwIDcuOSAyODguNWMtMS45LTE1LTEuNS0zMC40LTEuNi00NS42IDAtMi40IDIuMi01LjMgNC4xLTcuMkM2OS41IDE3Ni40IDEyOC44IDExNy4zIDE4OCA1OC4yYzMuNi0zLjYgNy4xLTcuNCAxMC43LTExLjJsMS41Ljd6IiBzdHlsZT0iZmlsbDojYjcwYzAyIi8+PC9zdmc+"
"PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MyIgaGVpZ2h0PSI3NSIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBmaWxsPSIjQkZGMDA5IiBkPSJNMjcuMzU4IDE4LjY3NmMwLTIuOTcgMi40My01LjM4OSA1LjQxNC01LjM4OWg5LjY4N1YuMTc3SDMyLjc3MmMtMTAuMjYzIDAtMTguNTg0IDguMjgzLTE4LjU4NCAxOC41IDAgMi42NjUuNTcgNS4xOTkgMS41OSA3LjQ4Ni03Ljk3MSAzLjM1NC0xMy4yNjQgMTAuNDgtMTQuNDk2IDE5LjQ5OC0xLjQ0IDkuOSAyLjU0NSAyMC41OCAxMS4yMjQgMjUuNzQgNy43NDYgNC44NTYgMTkuODU3IDQuNTM1IDI2LjQtMi4yMDF2NC40NzJoMTMuNDgxVjI0LjA2NWgtMTkuNjFjLTIuOTgyIDAtNS40MTktMi40Mi01LjQxOS01LjM4OVptMTEuODQ3IDE4LjUwNnYxMi40NTJjMCA2Ljg4LTUuNjAzIDEyLjQ1MS0xMi41MDkgMTIuNDUxLTYuOTA1IDAtMTIuNTA4LTUuNTc4LTEyLjUwOC0xMi40NTEgMC02Ljg3NCA1LjYwMy0xMi40NTIgMTIuNTA4LTEyLjQ1MmgxMi41MDlaIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZmlsbD0iI2ZmZiIgZD0iTS44OTggMEg1Mi40N3Y3NC43MTRILjg5OHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4="
);
} else if (chain === "Celo") {
return (
Expand Down
Loading
Loading