@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.browser.esm.js
CHANGED
|
@@ -4269,7 +4269,8 @@ const ParsedConfirmedTransactionResult = type({
|
|
|
4269
4269
|
accountKeys: array(type({
|
|
4270
4270
|
pubkey: PublicKeyFromString,
|
|
4271
4271
|
signer: boolean(),
|
|
4272
|
-
writable: boolean()
|
|
4272
|
+
writable: boolean(),
|
|
4273
|
+
source: optional(union([literal('transaction'), literal('lookupTable')]))
|
|
4273
4274
|
})),
|
|
4274
4275
|
instructions: array(ParsedOrRawInstruction),
|
|
4275
4276
|
recentBlockhash: string(),
|
|
@@ -7445,7 +7446,7 @@ class Keypair {
|
|
|
7445
7446
|
|
|
7446
7447
|
|
|
7447
7448
|
get secretKey() {
|
|
7448
|
-
return this._keypair.secretKey;
|
|
7449
|
+
return new Uint8Array(this._keypair.secretKey);
|
|
7449
7450
|
}
|
|
7450
7451
|
|
|
7451
7452
|
}
|