We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement a GET /contracts/:id endpoint that provides information about verified contracts.
/contracts/:id
❌ If the contract with the id provided in the PATH doesn’t exist or has not been verified, the response will be an error HTTP 404
✅ If the contract has been verified the response will be HTTP 200 with the following content:
verifiedAt: Datetime string initCallParameters: string compiler: string license: string - one of the predefined license codes ACI: string
Implement additional validation to POST /contracts endpoint: ❌ If the contract has already been verified, the response will be an error HTTP 409.
The text was updated successfully, but these errors were encountered:
Implement remaining MVP features #10, #11, #12, #13, #15
09fadfa
scheduling contract verification #10 performing async verification #11 add init parameters decoding and get verified contract endpoint #12 smart contract all source code endpoint #13 supported compilers endpoint #15 secure verification notification endpoint and fix queue settings
Implement remaining MVP features #10, #11, #12, #13, #15 (#33)
571c08c
No branches or pull requests
Implement a GET
/contracts/:id
endpoint that provides information about verified contracts.❌ If the contract with the id provided in the PATH doesn’t exist or has not been verified, the response will be an error HTTP 404
✅ If the contract has been verified the response will be HTTP 200 with the following content:
verifiedAt: Datetime string
initCallParameters: string
compiler: string
license: string - one of the predefined license codes
ACI: string
Implement additional validation to POST /contracts endpoint:
❌ If the contract has already been verified, the response will be an error HTTP 409.
The text was updated successfully, but these errors were encountered: