@thru/programs 0.2.36 → 0.2.37

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.
@@ -7767,9 +7767,8 @@ function hexToBytes(hex) {
7767
7767
  }
7768
7768
 
7769
7769
  // src/passkey-manager/context.ts
7770
- var FEE_PAYER_ADDRESS = "taVcZv3wB2m-euBpMHm2rF9fQRY_fO_g7WdOjs70CxDh_S";
7771
7770
  function buildAccountContext(params) {
7772
- const feePayerBytes = helpers.decodeAddress(params.feePayerAddress ?? FEE_PAYER_ADDRESS);
7771
+ const feePayerBytes = helpers.decodeAddress(params.feePayerAddress);
7773
7772
  const programBytes = helpers.decodeAddress(params.programAddress ?? PASSKEY_MANAGER_PROGRAM_ADDRESS);
7774
7773
  const walletBytes = helpers.decodeAddress(params.walletAddress);
7775
7774
  const readWriteBytes = uniqueAccounts([walletBytes, ...params.readWriteAccounts]).filter(
@@ -8074,7 +8073,6 @@ exports.AUTHORITY_BYTES = AUTHORITY_BYTES;
8074
8073
  exports.AUTHORITY_RECORD_BYTES = AUTHORITY_RECORD_BYTES;
8075
8074
  exports.AUTHORITY_TAG_PASSKEY = AUTHORITY_TAG_PASSKEY;
8076
8075
  exports.AUTHORITY_TAG_PUBKEY = AUTHORITY_TAG_PUBKEY;
8077
- exports.FEE_PAYER_ADDRESS = FEE_PAYER_ADDRESS;
8078
8076
  exports.INSTRUCTION_ADD_AUTHORITY = INSTRUCTION_ADD_AUTHORITY;
8079
8077
  exports.INSTRUCTION_CREATE = INSTRUCTION_CREATE;
8080
8078
  exports.INSTRUCTION_REGISTER_CREDENTIAL = INSTRUCTION_REGISTER_CREDENTIAL;