@solana/web3.js 1.70.1 → 1.70.2
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.cjs.js +3 -4
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +3 -4
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +2448 -69
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.esm.js +2441 -67
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +3 -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/lib/index.native.js +3 -4
- package/lib/index.native.js.map +1 -1
- package/package.json +2 -1
- package/src/connection.ts +23 -17
- package/src/publickey.ts +2 -2
- package/src/agent-manager.ts +0 -44
package/lib/index.d.ts
CHANGED
|
@@ -66,11 +66,11 @@ declare module '@solana/web3.js' {
|
|
|
66
66
|
toBase58(): string;
|
|
67
67
|
toJSON(): string;
|
|
68
68
|
/**
|
|
69
|
-
* Return the byte array representation of the public key
|
|
69
|
+
* Return the byte array representation of the public key in big endian
|
|
70
70
|
*/
|
|
71
71
|
toBytes(): Uint8Array;
|
|
72
72
|
/**
|
|
73
|
-
* Return the Buffer representation of the public key
|
|
73
|
+
* Return the Buffer representation of the public key in big endian
|
|
74
74
|
*/
|
|
75
75
|
toBuffer(): Buffer;
|
|
76
76
|
get [Symbol.toStringTag](): string;
|