@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.esm.js
CHANGED
|
@@ -6261,13 +6261,13 @@ async function sendAndConfirmRawTransaction(connection, rawTransaction, options)
|
|
|
6261
6261
|
|
|
6262
6262
|
const endpoint = {
|
|
6263
6263
|
http: {
|
|
6264
|
-
devnet: 'http://devnet.solana.com',
|
|
6265
|
-
testnet: 'http://testnet.solana.com',
|
|
6264
|
+
devnet: 'http://api.devnet.solana.com',
|
|
6265
|
+
testnet: 'http://api.testnet.solana.com',
|
|
6266
6266
|
'mainnet-beta': 'http://api.mainnet-beta.solana.com'
|
|
6267
6267
|
},
|
|
6268
6268
|
https: {
|
|
6269
|
-
devnet: 'https://devnet.solana.com',
|
|
6270
|
-
testnet: 'https://testnet.solana.com',
|
|
6269
|
+
devnet: 'https://api.devnet.solana.com',
|
|
6270
|
+
testnet: 'https://api.testnet.solana.com',
|
|
6271
6271
|
'mainnet-beta': 'https://api.mainnet-beta.solana.com'
|
|
6272
6272
|
}
|
|
6273
6273
|
};
|