@solana/web3.js 1.50.1 → 1.53.0
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 +4 -0
- package/lib/index.browser.cjs.js +2903 -2809
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +2903 -2810
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +2903 -2809
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +870 -831
- package/lib/index.esm.js +2903 -2810
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +3631 -3537
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +3 -3
- package/lib/index.iife.min.js.map +1 -1
- package/lib/index.native.js +2905 -2811
- package/lib/index.native.js.map +1 -1
- package/package.json +2 -2
- package/src/account-data.ts +39 -0
- package/src/account.ts +1 -1
- package/src/connection.ts +56 -8
- package/src/fee-calculator.ts +2 -0
- package/src/index.ts +3 -14
- package/src/loader.ts +4 -5
- package/src/message/index.ts +32 -0
- package/src/{message.ts → message/legacy.ts} +7 -37
- package/src/nonce-account.ts +1 -1
- package/src/{address-lookup-table-program.ts → programs/address-lookup-table/index.ts} +8 -6
- package/src/programs/address-lookup-table/state.ts +84 -0
- package/src/{compute-budget.ts → programs/compute-budget.ts} +4 -4
- package/src/{ed25519-program.ts → programs/ed25519.ts} +4 -4
- package/src/programs/index.ts +7 -0
- package/src/{secp256k1-program.ts → programs/secp256k1.ts} +4 -4
- package/src/{stake-program.ts → programs/stake.ts} +7 -7
- package/src/{system-program.ts → programs/system.ts} +8 -8
- package/src/{vote-program.ts → programs/vote.ts} +7 -7
- package/src/publickey.ts +2 -2
- package/src/{transaction-constants.ts → transaction/constants.ts} +0 -0
- package/src/{util/tx-expiry-custom-errors.ts → transaction/expiry-custom-errors.ts} +0 -0
- package/src/transaction/index.ts +3 -0
- package/src/{transaction.ts → transaction/legacy.ts} +10 -13
- package/src/{util → utils}/__forks__/react-native/url-impl.ts +0 -0
- package/src/{util → utils}/assert.ts +0 -0
- package/src/{util → utils}/bigint.ts +0 -0
- package/src/{util → utils}/borsh-schema.ts +0 -0
- package/src/{util → utils}/cluster.ts +0 -0
- package/src/utils/index.ts +4 -0
- package/src/{util → utils}/makeWebsocketUrl.ts +0 -0
- package/src/{util → utils}/promise-timeout.ts +0 -0
- package/src/{util → utils}/send-and-confirm-raw-transaction.ts +0 -0
- package/src/{util → utils}/send-and-confirm-transaction.ts +0 -0
- package/src/{util → utils}/shortvec-encoding.ts +0 -0
- package/src/{util → utils}/sleep.ts +0 -0
- package/src/{util → utils}/to-buffer.ts +0 -0
- package/src/{util → utils}/url-impl.ts +0 -0
- package/src/validator-info.ts +1 -1
- package/src/vote-account.ts +1 -1
package/README.md
CHANGED
|
@@ -109,6 +109,10 @@ Each Github release features a tarball containing API documentation and a
|
|
|
109
109
|
minified version of the module suitable for direct use in a browser environment
|
|
110
110
|
(`<script>` tag)
|
|
111
111
|
|
|
112
|
+
## Contributing
|
|
113
|
+
|
|
114
|
+
If you have an issue to report or would like to contribute a pull request, please do so against the monorepo at https://github.com/solana-labs/solana. We are not able to merge pull requests into the mirror repo https://github.com/solana-labs/solana-web3.js and issues filed there may go unnoticed.
|
|
115
|
+
|
|
112
116
|
## Disclaimer
|
|
113
117
|
|
|
114
118
|
All claims, content, designs, algorithms, estimates, roadmaps,
|