import { AztecAddress } from '@aztec/aztec.js/addresses'; import { type AbiType, type AztecAddressLike, type ContractArtifact, EventSelector, type FieldLike, type OptionLike } from '@aztec/aztec.js/abi'; import { ContractBase, ContractFunctionInteraction, type ContractMethod, type ContractStorageLayout, DeployMethod } from '@aztec/aztec.js/contracts'; import { PublicKeys } from '@aztec/aztec.js/keys'; import type { Wallet } from '@aztec/aztec.js/wallet'; export declare const TestLogicContractArtifact: ContractArtifact; export type EscrowDetailsLogContent = { escrow: AztecAddressLike; secret_key: FieldLike; }; /** * Type-safe interface for contract TestLogic; */ export declare class TestLogicContract 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): TestLogicContract; /** * Creates a tx to deploy a new instance of this contract. */ static deploy(wallet: Wallet, escrow_class_id: FieldLike): 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, escrow_class_id: FieldLike): 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; static get storage(): ContractStorageLayout<'escrow_class_id'>; /** Type-safe wrappers for the public methods exposed by the contract. */ methods: { /** constructor(escrow_class_id: field) */ constructor: ((escrow_class_id: FieldLike) => ContractFunctionInteraction) & Pick; /** get_escrow(secret_key: field) */ get_escrow: ((secret_key: FieldLike) => ContractFunctionInteraction) & Pick; /** 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; /** secret_key_to_public_keys(secret_key: field) */ secret_key_to_public_keys: ((secret_key: FieldLike) => ContractFunctionInteraction) & Pick; /** share_escrow(account: struct, escrow: struct, secret_key: field) */ share_escrow: ((account: AztecAddressLike, escrow: AztecAddressLike, secret_key: FieldLike) => ContractFunctionInteraction) & Pick; /** sync_state(scope: struct) */ sync_state: ((scope: AztecAddressLike) => ContractFunctionInteraction) & Pick; /** withdraw(escrow: struct, account: struct, token: struct, amount: integer) */ withdraw: ((escrow: AztecAddressLike, account: AztecAddressLike, token: AztecAddressLike, amount: (bigint | number)) => ContractFunctionInteraction) & Pick; /** withdraw_nft(escrow: struct, account: struct, nft: struct, token_id: field) */ withdraw_nft: ((escrow: AztecAddressLike, account: AztecAddressLike, nft: AztecAddressLike, token_id: FieldLike) => ContractFunctionInteraction) & Pick; }; static get events(): { EscrowDetailsLogContent: { abiType: AbiType; eventSelector: EventSelector; fieldNames: string[]; }; }; }