@btc-vision/walletconnect 1.0.7 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -131,8 +131,6 @@ export class WalletConnection {
131
131
  return new JSONRpcProvider('https://testnet.opnet.org', networks.testnet);
132
132
  case UnisatChainType.BITCOIN_REGTEST:
133
133
  return new JSONRpcProvider('https://regtest.opnet.org', networks.regtest);
134
- case UnisatChainType.FRACTAL_BITCOIN_MAINNET:
135
- return new JSONRpcProvider('https://fractal.opnet.org', networks.bitcoin);
136
134
  default:
137
135
  throw new Error('Unsupported network');
138
136
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@btc-vision/walletconnect",
3
3
  "type": "module",
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "author": "impredmet",
6
6
  "description": "The OP_NET Wallet Connect library helps your dApp connect to any compatible wallet.",
7
7
  "engines": {
@@ -176,8 +176,7 @@ export class WalletConnection {
176
176
  return new JSONRpcProvider('https://testnet.opnet.org', networks.testnet);
177
177
  case UnisatChainType.BITCOIN_REGTEST:
178
178
  return new JSONRpcProvider('https://regtest.opnet.org', networks.regtest);
179
- case UnisatChainType.FRACTAL_BITCOIN_MAINNET:
180
- return new JSONRpcProvider('https://fractal.opnet.org', networks.bitcoin);
179
+ // TODO: Add Fractal Mainnet & Testnet when available
181
180
  default:
182
181
  throw new Error('Unsupported network');
183
182
  }