How to Simulate a Function Call
This guide explains how to simulate
a function call using Aztec.js.
Prerequisites
You should have a wallet to act as the caller, and a contract that has been deployed.
You can learn how to create wallets from this guide.
You can learn how to deploy a contract here.
Relevant imports
You will need to import this from Aztec.js:
import_contract
import { Contract } from '@aztec/aztec.js';
Source code: yarn-project/end-to-end/src/composed/docs_examples.test.ts#L7-L9
Define contract
Get a previously deployed contract like this:
get_contract
const contract = await Contract.at(deployedContract.address, TokenContractArtifact, wallet);
Source code: yarn-project/end-to-end/src/composed/docs_examples.test.ts#L45-L47