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 GET /contracts/:id/source endpoint that returns all of the Smart Contract files as an array.
/contracts/:id/source
❌ 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 an array of the following records representing each of the source code files:
{ source: [{ filePath: string isEntryFile: boolean content: string }] }
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 GET
/contracts/:id/source
endpoint that returns all of the Smart Contract files as an array.❌ 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 an array of the following records representing each of the source code files:
The text was updated successfully, but these errors were encountered: