@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.
- package/browser/index.js +1 -1
- package/build/WalletConnection.js +0 -2
- package/package.json +1 -1
- package/src/WalletConnection.ts +1 -2
|
@@ -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
package/src/WalletConnection.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
}
|