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

38 lines
812 B
TypeScript
Raw Normal View History

2022-11-28 05:54:49 +03:00
/**
* Explain about ABI here...
*
* @_section api/abi:Application Binary Interface [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, 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";