@solana/web3.js 1.62.0 → 1.62.1

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.d.ts CHANGED
@@ -29,7 +29,6 @@ declare module '@solana/web3.js' {
29
29
  export type PublicKeyInitData =
30
30
  | number
31
31
  | string
32
- | Buffer
33
32
  | Uint8Array
34
33
  | Array<number>
35
34
  | PublicKeyData;
package/lib/index.esm.js CHANGED
@@ -3562,7 +3562,7 @@ class AddressLookupTableAccount {
3562
3562
  }
3563
3563
 
3564
3564
  isActive() {
3565
- const U64_MAX = 18446744073709551615n;
3565
+ const U64_MAX = BigInt('0xffffffffffffffff');
3566
3566
  return this.state.deactivationSlot === U64_MAX;
3567
3567
  }
3568
3568