index.js 836 B

1234567891011121314151617
  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 { ConstructorFragment, ErrorFragment, EventFragment, FallbackFragment, Fragment, FunctionFragment, NamedFragment, ParamType, StructFragment, } from "./fragments.js";
  15. export { checkResultErrors, Indexed, Interface, ErrorDescription, LogDescription, TransactionDescription, Result } from "./interface.js";
  16. export { Typed } from "./typed.js";
  17. //# sourceMappingURL=index.js.map