@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.cjs.js
CHANGED
|
@@ -6299,13 +6299,13 @@ async function sendAndConfirmRawTransaction(connection, rawTransaction, options)
|
|
|
6299
6299
|
|
|
6300
6300
|
const endpoint = {
|
|
6301
6301
|
http: {
|
|
6302
|
-
devnet: 'http://devnet.solana.com',
|
|
6303
|
-
testnet: 'http://testnet.solana.com',
|
|
6302
|
+
devnet: 'http://api.devnet.solana.com',
|
|
6303
|
+
testnet: 'http://api.testnet.solana.com',
|
|
6304
6304
|
'mainnet-beta': 'http://api.mainnet-beta.solana.com'
|
|
6305
6305
|
},
|
|
6306
6306
|
https: {
|
|
6307
|
-
devnet: 'https://devnet.solana.com',
|
|
6308
|
-
testnet: 'https://testnet.solana.com',
|
|
6307
|
+
devnet: 'https://api.devnet.solana.com',
|
|
6308
|
+
testnet: 'https://api.testnet.solana.com',
|
|
6309
6309
|
'mainnet-beta': 'https://api.mainnet-beta.solana.com'
|
|
6310
6310
|
}
|
|
6311
6311
|
};
|