ethers.js/lib.esm/contract/index.js

12 lines
671 B
JavaScript
Raw Permalink Normal View History

2022-11-30 15:44:23 -05:00
/**
2023-06-01 17:52:58 -04: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 15:44:23 -05:00
*
2023-02-12 22:14:26 -05:00
* @_section: api/contract:Contracts [about-contracts]
2022-11-30 15:44:23 -05:00
*/
2022-09-05 16:57:11 -04:00
export { BaseContract, Contract } from "./contract.js";
export { ContractFactory } from "./factory.js";
2023-08-02 23:42:17 -04:00
export { ContractEventPayload, ContractUnknownEventPayload, ContractTransactionReceipt, ContractTransactionResponse, EventLog, UndecodedEventLog } from "./wrappers.js";
2022-09-05 16:57:11 -04:00
//# sourceMappingURL=index.js.map