Skip to content
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/kiichain/chain.info.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { defineChain } from "viem"

const kiichain = defineChain({
id: 123454321,
name: "Kiichain Testnet",
id: 0x538,
name: "Kiichain Oro",
nativeCurrency: { name: "Ether", symbol: "kii", decimals: 18 },
rpcUrls: {
default: { http: ["https://a.sentry.testnet.kiivalidator.com:8645"] },
default: { http: ["https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com"] },
},
blockExplorers: {
default: { name: "Kii Explorer", url: "https://app.kiichain.io/kiichain" },
Expand Down
6 changes: 3 additions & 3 deletions src/lib/wallet/metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ const metadata: WalletMetadata[] = [
]

export const kiichainMetadata: Web3ChainData = {
chainId: "0x75BCD15", // 123454321 in hex
chainName: "Kiichain Testnet",
chainId: "0x538", // 123454321 in hex
chainName: "Kiichain Oro",
nativeCurrency: {
name: "Kiichain",
symbol: "kii", // Symbol of the native currency
decimals: 18,
},
rpcUrls: ["https://a.sentry.testnet.kiivalidator.com:8645"],
rpcUrls: ["https://json-rpc.uno.sentry.testnet.v3.kiivalidator.com"],
blockExplorerUrls: ["https://app.kiichain.io/kiichain"],
}

Expand Down