Skip to content

Commit

Permalink
Change lookup-tables to clarify only 64 addresses in a single transac…
Browse files Browse the repository at this point in the history
…tion (#271)

While an address lookup table can store up to 256 addresses, a transaction is capped at 64 read/write locks (ie unique accounts).
  • Loading branch information
mcintyre94 authored Jul 19, 2024
1 parent 5479e66 commit 883dfac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/advanced/lookup-tables.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Since each transaction on the Solana blockchain requires a listing of every
address that is interacted with as part of the transaction, this listing would
effectively be capped at 32 addresses per transaction. With the help of
[Address Lookup Tables](/docs/advanced/lookup-tables.md), a transaction would
now be able to raise that limit to 256 addresses per transaction.
now be able to raise that limit to 64 addresses per transaction.

## Compressing onchain addresses

Expand Down Expand Up @@ -100,7 +100,7 @@ const extendInstruction = web3.AddressLookupTableProgram.extendLookupTable({
Once these addresses have been inserted into the table, and stored onchain, you
will be able to utilize the Address Lookup Table in future transactions.
Enabling up to 256 addresses in those future transactions.
Enabling up to 64 addresses in those future transactions.

## Fetch an Address Lookup Table

Expand Down

0 comments on commit 883dfac

Please sign in to comment.