index.d.ts 1023 B

123456789101112131415161718
  1. /**
  2. * The Application Binary Interface (ABI) describes how method input
  3. * parameters should be encoded, their results decoded, and how to
  4. * decode events and errors.
  5. *
  6. * See [About ABIs](docs-abi) for more details how they are used.
  7. *
  8. * @_section api/abi:Application Binary Interface [about-abi]
  9. * @_navTitle: ABI
  10. */
  11. export { AbiCoder } from "./abi-coder.js";
  12. export { decodeBytes32String, encodeBytes32String } from "./bytes32.js";
  13. export { ConstructorFragment, ErrorFragment, EventFragment, FallbackFragment, Fragment, FunctionFragment, NamedFragment, ParamType, StructFragment, } from "./fragments.js";
  14. export { checkResultErrors, Indexed, Interface, ErrorDescription, LogDescription, TransactionDescription, Result } from "./interface.js";
  15. export { Typed } from "./typed.js";
  16. export type { JsonFragment, JsonFragmentType, FormatType, FragmentType, ParamTypeWalkAsyncFunc, ParamTypeWalkFunc } from "./fragments.js";
  17. export type { InterfaceAbi, } from "./interface.js";
  18. //# sourceMappingURL=index.d.ts.map