29 lines
698 B
TypeScript
29 lines
698 B
TypeScript
/**
|
|
* About contracts...
|
|
*
|
|
* @_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";
|
|
|
|
export type {
|
|
BaseContractMethod, ConstantContractMethod,
|
|
PostfixOverrides,
|
|
ContractEvent, ContractEventArgs, ContractEventName,
|
|
ContractDeployTransaction,
|
|
ContractInterface, ContractMethod, ContractMethodArgs, ContractTransaction,
|
|
DeferredTopicFilter, Overrides,
|
|
WrappedFallback
|
|
} from "./types.js";
|