Skip to content

Commit

Permalink
fix: Migrate from Goerli to Ropsten (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
roy1210 authored Oct 18, 2021
1 parent 71e9f0e commit 3cd0118
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/context/getNetworkDetails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const NETWORK_INFO: {
},
},
test: {
btc_erc: { indexerNodes: ['https://tbtc-goerli-node-1.swingby.network/bb-eth'] },
btc_erc: { indexerNodes: ['https://tbtc-ropsten-node-1.swingby.network/bb-eth'] },
btc_bep20: { indexerNodes: ['https://tbtc-bsc-1.swingby.network/bb-bsc'] },
},
};
Expand Down
2 changes: 1 addition & 1 deletion src/modules/explorer-link/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ it.each<[{ mode: SkybridgeMode; coin: SkybridgeCoin; transactionId: string }, st
coin: 'WBTC',
transactionId: 'my-id',
},
'https://goerli.etherscan.io/tx/my-id',
'https://ropsten.etherscan.io/tx/my-id',
],
[
{
Expand Down
2 changes: 1 addition & 1 deletion src/modules/explorer-link/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { SkybridgeResource } from '../resources';

const explorers: { [k in SkybridgeChain]: { [k in SkybridgeMode]: string } } = {
ethereum: {
test: 'https://goerli.etherscan.io/tx/:transactionId',
test: 'https://ropsten.etherscan.io/tx/:transactionId',
production: 'https://etherscan.io/tx/:transactionId',
},
bitcoin: {
Expand Down

0 comments on commit 3cd0118

Please sign in to comment.