2023-03-04 04:25:07 +03:00
|
|
|
/**
|
2023-06-02 00:52:58 +03:00
|
|
|
* A **Contract** object is a meta-class (a class whose definition is
|
|
|
|
* defined at runtime), which communicates with a deployed smart contract
|
|
|
|
* on the blockchain and provides a simple JavaScript interface to call
|
|
|
|
* methods, send transaction, query historic logs and listen for its events.
|
2023-03-04 04:25:07 +03:00
|
|
|
*
|
|
|
|
* @_section: api/contract:Contracts [about-contracts]
|
|
|
|
*/
|
|
|
|
export { BaseContract, Contract } from "./contract.js";
|
|
|
|
export { ContractFactory } from "./factory.js";
|
|
|
|
export { ContractEventPayload, ContractUnknownEventPayload, ContractTransactionReceipt, ContractTransactionResponse, EventLog, } from "./wrappers.js";
|
2023-03-20 19:53:37 +03:00
|
|
|
export type { BaseContractMethod, ConstantContractMethod, PostfixOverrides, ContractEvent, ContractEventArgs, ContractEventName, ContractDeployTransaction, ContractInterface, ContractMethod, ContractMethodArgs, ContractTransaction, DeferredTopicFilter, Overrides, WrappedFallback } from "./types.js";
|
2023-04-27 15:19:55 +03:00
|
|
|
//# sourceMappingURL=index.d.ts.map
|