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

38 lines
836 B
TypeScript
Raw Permalink Normal View History

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