2022-11-30 15:44:23 -05:00
|
|
|
/**
|
2023-06-01 17:52:58 -04:00
|
|
|
* The Application Binary Interface (ABI) describes how method input
|
|
|
|
* parameters should be encoded, their results decoded, and how to
|
|
|
|
* decode events and errors.
|
|
|
|
*
|
|
|
|
* See [About ABIs](docs-abi) for more details how they are used.
|
2022-11-30 15:44:23 -05:00
|
|
|
*
|
2023-02-12 22:14:26 -05:00
|
|
|
* @_section api/abi:Application Binary Interface [about-abi]
|
2022-12-30 11:30:03 -05:00
|
|
|
* @_navTitle: ABI
|
2022-11-30 15:44:23 -05:00
|
|
|
*/
|
2022-09-15 22:58:45 -04:00
|
|
|
//////
|
2022-11-30 15:44:23 -05:00
|
|
|
export { AbiCoder } from "./abi-coder.js";
|
2022-10-01 01:34:06 -04:00
|
|
|
export { decodeBytes32String, encodeBytes32String } from "./bytes32.js";
|
2023-01-30 22:29:09 -05:00
|
|
|
export { ConstructorFragment, ErrorFragment, EventFragment, FallbackFragment, Fragment, FunctionFragment, NamedFragment, ParamType, StructFragment, } from "./fragments.js";
|
2022-09-15 22:58:45 -04:00
|
|
|
export { checkResultErrors, Indexed, Interface, ErrorDescription, LogDescription, TransactionDescription, Result } from "./interface.js";
|
2022-09-05 16:57:11 -04:00
|
|
|
export { Typed } from "./typed.js";
|
|
|
|
//# sourceMappingURL=index.js.map
|