diff --git a/yarn-project/aztec.js/src/index.ts b/yarn-project/aztec.js/src/index.ts index 4fa48b1e776..79b4fc59c26 100644 --- a/yarn-project/aztec.js/src/index.ts +++ b/yarn-project/aztec.js/src/index.ts @@ -62,7 +62,7 @@ export { type FunctionSelectorLike, type L2AmountClaim, type L2Claim, - type L2AmountClaimWithRecipient as L2RedeemableAmountClaim, + type L2AmountClaimWithRecipient, type WrappedFieldLike, } from './utils/index.js'; diff --git a/yarn-project/end-to-end/src/shared/cross_chain_test_harness.ts b/yarn-project/end-to-end/src/shared/cross_chain_test_harness.ts index 5de7ede970e..b561aa03488 100644 --- a/yarn-project/end-to-end/src/shared/cross_chain_test_harness.ts +++ b/yarn-project/end-to-end/src/shared/cross_chain_test_harness.ts @@ -10,7 +10,7 @@ import { type L1TokenManager, L1TokenPortalManager, type L2AmountClaim, - type L2RedeemableAmountClaim, + type L2AmountClaimWithRecipient, Note, type PXE, type SiblingPath, @@ -256,7 +256,7 @@ export class CrossChainTestHarness { } async consumeMessageOnAztecAndMintPrivately( - claim: Pick, + claim: Pick, ) { this.logger.info('Consuming messages on L2 privately'); const { recipient, claimAmount, claimSecret: secretForL2MessageConsumption, messageLeafIndex } = claim;