@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.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
  }