Pre-General Availability: 2026-02-23

Import OpenZeppelin/Hardhat Manifest and Contracts

post

/v1/contracts/manifests/import

Imports a manifest file, ABIs, and bytecodes for the associated contracts compiled and deployed via Hardhat.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : schema
Type: object
Show Source
Nested Schema : contracts
Type: array
Addresses to register with ABI and deployed runtime bytecode. For each item, provide either blockNum or txHash.
Show Source
Nested Schema : manifest
Type: object
OpenZeppelin/Hardhat manifest JSON
Nested Schema : items
Type: object
Show Source
Match One Schema
Show Source
Nested Schema : abi
Type: array
Standard JSON ABI entries
Show Source
Nested Schema : items
Type: object
Examples

Back to Top

Response

Supported Media Types

202 Response

Accepted
Body ()
Root Schema : schema
Type: object
Additional Properties Allowed: true

400 Response

Validation error
Body ()
Root Schema : ErrorResponse
Type: object
Show Source
Nested Schema : DecodedError
Type: object
Show Source
Nested Schema : customError
Type: object
Decoded custom error as defined in the contract ABI
Show Source
Nested Schema : standardError
Type: object
Decoded standard Error(string) revert
Show Source
Nested Schema : standardPanic
Type: object
Decoded Panic(uint256) revert
Show Source
Nested Schema : args
Type: array
Show Source
Nested Schema : DecodedArgument
Type: object
Show Source
  • Only for event parameters
  • May be empty if unknown
  • Canonical ABI type (for example, uint256, address, (uint256,address), uint256[])
  • Normalized JSON value (address lowercase hex, bigints as decimal strings, bytes as 0x-hex)

500 Response

Internal error
Body ()
Root Schema : ErrorResponse
Type: object
Show Source
Nested Schema : DecodedError
Type: object
Show Source
Nested Schema : customError
Type: object
Decoded custom error as defined in the contract ABI
Show Source
Nested Schema : standardError
Type: object
Decoded standard Error(string) revert
Show Source
Nested Schema : standardPanic
Type: object
Decoded Panic(uint256) revert
Show Source
Nested Schema : args
Type: array
Show Source
Nested Schema : DecodedArgument
Type: object
Show Source
  • Only for event parameters
  • May be empty if unknown
  • Canonical ABI type (for example, uint256, address, (uint256,address), uint256[])
  • Normalized JSON value (address lowercase hex, bigints as decimal strings, bytes as 0x-hex)
Back to Top