DeployedContractFor
DeployedContractFor<
M> =DeployedContract<InferLedger<M>,InferCircuits<M>,InferActions<M>>
Defined in: src/Contract.ts:173
Shorthand for DeployedContract<InferLedger<M>, InferCircuits<M>, InferActions<M>>.
Type Parameters
M
M extends ContractModule
Example
import * as CounterContract from './contracts/counter/contract/index.js';let contract: DeployedContractFor<typeof CounterContract>;// contract.ledgerState() returns Promise<{ counter: bigint }>Since
0.12.0