We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f46948 commit 7797197Copy full SHA for 7797197
test/src/tempo/config.ts
@@ -41,7 +41,7 @@ export const addresses = {
41
} as const
42
43
export const chain = (() => {
44
- if (nodeEnv === 'testnet') return tempoTestnet
+ if (nodeEnv === 'testnet' || nodeEnv === 'devnet') return tempoTestnet
45
return tempoLocalnet
46
})()
47
test/src/tempo/prool.ts
@@ -6,7 +6,7 @@ export const port = 9545
6
7
export const rpcUrl = (() => {
8
if (import.meta.env.VITE_TEMPO_ENV === 'devnet')
9
- return 'https://rpc.devnet.tempo.xyz'
+ return 'https://rpc.devnet.tempoxyz.dev'
10
if (import.meta.env.VITE_TEMPO_ENV === 'testnet')
11
return 'https://rpc.testnet.tempo.xyz'
12
const id =
0 commit comments