import { AztecAddress } from '@aztec/aztec.js/addresses'; import { type AztecAddressLike, type ContractArtifact, type FieldLike, type OptionLike } from '@aztec/aztec.js/abi'; import { ContractBase, ContractFunctionInteraction, type ContractMethod, DeployMethod } from '@aztec/aztec.js/contracts'; import { PublicKeys } from '@aztec/aztec.js/keys'; import type { Wallet } from '@aztec/aztec.js/wallet'; export declare const EscrowContractArtifact: ContractArtifact; /** * Type-safe interface for contract Escrow; */ export declare class EscrowContract extends ContractBase { private constructor(); /** * Creates a contract instance. * @param address - The deployed contract's address. * @param wallet - The wallet to use when interacting with the contract. * @returns A new Contract instance. */ static at(address: AztecAddress, wallet: Wallet): EscrowContract; /** * Creates a tx to deploy a new instance of this contract. */ static deploy(wallet: Wallet): DeployMethod; /** * Creates a tx to deploy a new instance of this contract using the specified public keys hash to derive the address. */ static deployWithPublicKeys(publicKeys: PublicKeys, wallet: Wallet): DeployMethod; /** * Creates a tx to deploy a new instance of this contract using the specified constructor method. */ static deployWithOpts(opts: { publicKeys?: PublicKeys; method?: M; wallet: Wallet; }, ...args: Parameters): DeployMethod; /** * Returns this contract's artifact. */ static get artifact(): ContractArtifact; /** * Returns this contract's artifact with public bytecode. */ static get artifactForPublic(): ContractArtifact; /** Type-safe wrappers for the public methods exposed by the contract. */ methods: { /** offchain_receive(messages: struct) */ offchain_receive: ((messages: { ciphertext: FieldLike[]; recipient: AztecAddressLike; tx_hash: OptionLike; anchor_block_timestamp: (bigint | number); }[]) => ContractFunctionInteraction) & Pick; /** public_dispatch(selector: field) */ public_dispatch: ((selector: FieldLike) => ContractFunctionInteraction) & Pick; /** sync_state(scope: struct) */ sync_state: ((scope: AztecAddressLike) => ContractFunctionInteraction) & Pick; /** withdraw(token: struct, amount: integer, recipient: struct) */ withdraw: ((token: AztecAddressLike, amount: (bigint | number), recipient: AztecAddressLike) => ContractFunctionInteraction) & Pick; /** withdraw_nft(nft: struct, token_id: field, recipient: struct) */ withdraw_nft: ((nft: AztecAddressLike, token_id: FieldLike, recipient: AztecAddressLike) => ContractFunctionInteraction) & Pick; }; }