index.js 671 B

123456789101112
  1. /**
  2. * A **Contract** object is a meta-class (a class whose definition is
  3. * defined at runtime), which communicates with a deployed smart contract
  4. * on the blockchain and provides a simple JavaScript interface to call
  5. * methods, send transaction, query historic logs and listen for its events.
  6. *
  7. * @_section: api/contract:Contracts [about-contracts]
  8. */
  9. export { BaseContract, Contract } from "./contract.js";
  10. export { ContractFactory } from "./factory.js";
  11. export { ContractEventPayload, ContractUnknownEventPayload, ContractTransactionReceipt, ContractTransactionResponse, EventLog, UndecodedEventLog } from "./wrappers.js";
  12. //# sourceMappingURL=index.js.map