ethers.js/src.ts/abi/index.ts

42 lines
1.0 KiB
TypeScript
Raw Normal View History

2022-11-28 05:54:49 +03: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-28 05:54:49 +03:00
*
2023-02-13 05:21:11 +03:00
* @_section api/abi:Application Binary Interface [about-abi]
2022-12-12 10:47:12 +03:00
* @_navTitle: ABI
2022-11-28 05:54:49 +03:00
*/
//////
2022-11-28 05:54:49 +03:00
export { AbiCoder } from "./abi-coder.js";
2022-09-05 23:14:43 +03:00
export { decodeBytes32String, encodeBytes32String } from "./bytes32.js";
2022-09-05 23:14:43 +03:00
export {
ConstructorFragment, ErrorFragment, EventFragment, FallbackFragment,
Fragment, FunctionFragment, NamedFragment, ParamType, StructFragment,
2022-09-05 23:14:43 +03:00
} from "./fragments.js";
export {
checkResultErrors,
Indexed,
Interface,
ErrorDescription, LogDescription, TransactionDescription,
Result
2022-09-05 23:14:43 +03:00
} from "./interface.js";
export { Typed } from "./typed.js";
export type {
JsonFragment, JsonFragmentType,
2022-12-30 19:28:26 +03:00
FormatType, FragmentType, ParamTypeWalkAsyncFunc, ParamTypeWalkFunc
2022-09-05 23:14:43 +03:00
} from "./fragments.js";
export type {
InterfaceAbi,
} from "./interface.js";