@solana/web3.js 1.73.3 → 1.73.4
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/README.md +0 -3
- package/lib/index.browser.cjs.js +1 -1
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +1 -1
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +1 -1
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +1 -1
- 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/lib/index.native.js +1 -1
- package/lib/index.native.js.map +1 -1
- package/package.json +4 -7
- package/src/connection.ts +1 -1
package/README.md
CHANGED
|
@@ -2,13 +2,10 @@
|
|
|
2
2
|
[![npm-downloads][npm-downloads-image]][npm-url]
|
|
3
3
|
[![semantic-release][semantic-release-image]][semantic-release-url]
|
|
4
4
|
<br />
|
|
5
|
-
[![codecov][codecov-image]][codecov-url]
|
|
6
5
|
[![code-style-prettier][code-style-prettier-image]][code-style-prettier-url]
|
|
7
6
|
|
|
8
7
|
[code-style-prettier-image]: https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square
|
|
9
8
|
[code-style-prettier-url]: https://github.com/prettier/prettier
|
|
10
|
-
[codecov-image]: https://codecov.io/gh/solana-labs/solana-web3.js/branch/master/graph/badge.svg
|
|
11
|
-
[codecov-url]: https://codecov.io/gh/solana-labs/solana-web3.js
|
|
12
9
|
[npm-downloads-image]: https://img.shields.io/npm/dm/@solana/web3.js.svg?style=flat
|
|
13
10
|
[npm-image]: https://img.shields.io/npm/v/@solana/web3.js.svg?style=flat
|
|
14
11
|
[npm-url]: https://www.npmjs.com/package/@solana/web3.js
|
package/lib/index.browser.cjs.js
CHANGED
|
@@ -6472,7 +6472,7 @@ class Connection {
|
|
|
6472
6472
|
throw new Error('Invalid arguments');
|
|
6473
6473
|
}
|
|
6474
6474
|
const wireTransaction = transaction.serialize();
|
|
6475
|
-
return await this.sendRawTransaction(wireTransaction,
|
|
6475
|
+
return await this.sendRawTransaction(wireTransaction, signersOrOptions);
|
|
6476
6476
|
}
|
|
6477
6477
|
if (signersOrOptions === undefined || !Array.isArray(signersOrOptions)) {
|
|
6478
6478
|
throw new Error('Invalid arguments');
|