ipfs storage for images and other nontext items. for use with etica - runs on etica network and currencys
https://collect.etica-stats.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
990 B
31 lines
990 B
/** |
|
* 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. |
|
* |
|
* @_section: api/contract:Contracts [about-contracts] |
|
*/ |
|
export { |
|
BaseContract, Contract |
|
} from "./contract.js"; |
|
|
|
export { |
|
ContractFactory |
|
} from "./factory.js"; |
|
|
|
export { |
|
ContractEventPayload, ContractUnknownEventPayload, |
|
ContractTransactionReceipt, ContractTransactionResponse, |
|
EventLog, UndecodedEventLog |
|
} from "./wrappers.js"; |
|
|
|
export type { |
|
BaseContractMethod, ConstantContractMethod, |
|
PostfixOverrides, |
|
ContractEvent, ContractEventArgs, ContractEventName, |
|
ContractDeployTransaction, |
|
ContractInterface, ContractMethod, ContractMethodArgs, ContractTransaction, |
|
DeferredTopicFilter, Overrides, |
|
WrappedFallback |
|
} from "./types.js";
|
|
|