index.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. //////
  12. export { AbiCoder } from "./abi-coder.js";
  13. export { decodeBytes32String, encodeBytes32String } from "./bytes32.js";
  14. export {
  15. ConstructorFragment, ErrorFragment, EventFragment, FallbackFragment,
  16. Fragment, FunctionFragment, NamedFragment, ParamType, StructFragment,
  17. } from "./fragments.js";
  18. export {
  19. checkResultErrors,
  20. Indexed,
  21. Interface,
  22. ErrorDescription, LogDescription, TransactionDescription,
  23. Result
  24. } from "./interface.js";
  25. export { Typed } from "./typed.js";
  26. export type {
  27. JsonFragment, JsonFragmentType,
  28. FormatType, FragmentType, ParamTypeWalkAsyncFunc, ParamTypeWalkFunc
  29. } from "./fragments.js";
  30. export type {
  31. InterfaceAbi,
  32. } from "./interface.js";