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