@layerzerolabs/lz-solana-sdk-v2 2.3.34 → 2.3.35-aptos.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/dist/index.mjs CHANGED
@@ -15132,7 +15132,7 @@ async function txWithAddressLookupTable(connection, payer, instructions, recentB
15132
15132
  }).compileToV0Message()
15133
15133
  );
15134
15134
  }
15135
- const lookupTableAccount = await connection.getAddressLookupTable(tableAddr).then((res) => res.value);
15135
+ const { value: lookupTableAccount } = await connection.getAddressLookupTable(tableAddr);
15136
15136
  return new VersionedTransaction(
15137
15137
  new TransactionMessage({
15138
15138
  instructions,