@solana/web3.js 1.10.2 → 1.11.1
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/lib/index.browser.esm.js +4 -4
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +4 -4
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +4 -4
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +4 -4
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/package.json +1 -1
- package/src/util/cluster.ts +4 -4
package/lib/index.browser.esm.js
CHANGED
|
@@ -8201,13 +8201,13 @@ async function sendAndConfirmRawTransaction(connection, rawTransaction, options)
|
|
|
8201
8201
|
|
|
8202
8202
|
const endpoint = {
|
|
8203
8203
|
http: {
|
|
8204
|
-
devnet: 'http://devnet.solana.com',
|
|
8205
|
-
testnet: 'http://testnet.solana.com',
|
|
8204
|
+
devnet: 'http://api.devnet.solana.com',
|
|
8205
|
+
testnet: 'http://api.testnet.solana.com',
|
|
8206
8206
|
'mainnet-beta': 'http://api.mainnet-beta.solana.com'
|
|
8207
8207
|
},
|
|
8208
8208
|
https: {
|
|
8209
|
-
devnet: 'https://devnet.solana.com',
|
|
8210
|
-
testnet: 'https://testnet.solana.com',
|
|
8209
|
+
devnet: 'https://api.devnet.solana.com',
|
|
8210
|
+
testnet: 'https://api.testnet.solana.com',
|
|
8211
8211
|
'mainnet-beta': 'https://api.mainnet-beta.solana.com'
|
|
8212
8212
|
}
|
|
8213
8213
|
};
|