2022-11-30 23:44:23 +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.
|
2022-11-30 23:44:23 +03:00
|
|
|
*
|
2023-02-13 06:14:26 +03:00
|
|
|
* @_section: api/contract:Contracts [about-contracts]
|
2022-11-30 23:44:23 +03:00
|
|
|
*/
|
2022-09-05 23:57:11 +03:00
|
|
|
export { BaseContract, Contract } from "./contract.js";
|
|
|
|
export { ContractFactory } from "./factory.js";
|
2023-01-27 07:36:26 +03:00
|
|
|
export { ContractEventPayload, ContractUnknownEventPayload, ContractTransactionReceipt, ContractTransactionResponse, EventLog, } from "./wrappers.js";
|
2022-09-05 23:57:11 +03:00
|
|
|
//# sourceMappingURL=index.js.map
|