Skip to content

Commit

Permalink
fix: mainnet instead of livenet for cactuslink wallet network env name
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwbabylonlab committed Oct 2, 2024
1 parent aced69e commit a1f6fe0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/utils/wallet/list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const walletList: IntegratedWallet[] = [
provider: cactusLinkProvider,
linkToDocs:
"https://chromewebstore.google.com/detail/cactus-link/chiilpgkfmcopocdffapngjcbggdehmj?pli=1",
supportedNetworks: [Network.MAINNET, Network.SIGNET],
supportedNetworks: [Network.SIGNET],
},
{
name: "Keystone",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/wallet/providers/cactuslink_wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {

// Internal network names
const INTERNAL_NETWORK_NAMES = {
[Network.MAINNET]: "livenet",
[Network.MAINNET]: "mainnet",
[Network.TESTNET]: "testnet",
[Network.SIGNET]: "signet",
};
Expand Down

0 comments on commit a1f6fe0

Please sign in to comment.