Skip to content
Merged
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: 6 additions & 0 deletions .changeset/pink-ways-cover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@crossmint/common-sdk-base": patch
"@crossmint/wallets-sdk": patch
---

update tempo testnet details
Comment thread
albertoelias-crossmint marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const BLOCKCHAIN_TO_CHAIN_ID: Record<EVMBlockchainIncludingTestnet, numbe
plume: 98865,
"plume-testnet": 161221135,
"arc-testnet": 5042002,
"tempo-testnet": 42429,
"tempo-testnet": 42431,
};

export function blockchainToChainId(blockchain: EVMBlockchainIncludingTestnet) {
Expand Down
8 changes: 4 additions & 4 deletions packages/wallets/src/chains/definitions/tempoTestnet.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import { defineChain } from "viem";

export const tempoTestnet = defineChain({
id: 42429,
id: 42431,
name: "Tempo Testnet",
nativeCurrency: {
decimals: 6,
name: "pathUSD",
symbol: "pathUSD",
},
rpcUrls: {
default: { http: ["https://rpc.testnet.tempo.xyz"] },
default: { http: ["https://rpc.moderato.tempo.xyz"] },
},
blockExplorers: {
default: {
name: "Tempo Scout",
url: "https://scout.tempo.xyz",
name: "Tempo Explorer",
url: "https://explore.tempo.xyz",
},
},
testnet: true,
Expand Down