@solana/web3.js 1.59.1 → 1.60.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/lib/index.browser.cjs.js +3 -2
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +3 -2
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +3 -2
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.d.ts +2 -0
- package/lib/index.esm.js +3 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +3 -2
- 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 -2
- package/lib/index.native.js.map +1 -1
- package/package.json +1 -1
- package/src/connection.ts +5 -0
- package/src/keypair.ts +1 -1
package/lib/index.iife.js
CHANGED
|
@@ -17922,7 +17922,8 @@ var solanaWeb3 = (function (exports) {
|
|
|
17922
17922
|
accountKeys: array(type({
|
|
17923
17923
|
pubkey: PublicKeyFromString,
|
|
17924
17924
|
signer: boolean(),
|
|
17925
|
-
writable: boolean()
|
|
17925
|
+
writable: boolean(),
|
|
17926
|
+
source: optional(union([literal('transaction'), literal('lookupTable')]))
|
|
17926
17927
|
})),
|
|
17927
17928
|
instructions: array(ParsedOrRawInstruction),
|
|
17928
17929
|
recentBlockhash: string(),
|
|
@@ -21098,7 +21099,7 @@ var solanaWeb3 = (function (exports) {
|
|
|
21098
21099
|
|
|
21099
21100
|
|
|
21100
21101
|
get secretKey() {
|
|
21101
|
-
return this._keypair.secretKey;
|
|
21102
|
+
return new Uint8Array(this._keypair.secretKey);
|
|
21102
21103
|
}
|
|
21103
21104
|
|
|
21104
21105
|
}
|