We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fa7f93 commit b247c45Copy full SHA for b247c45
packages/cli/src/command-helpers/abi.ts
@@ -21,9 +21,6 @@ export const loadAbiFromSourcify = async (
21
const result = await fetch(`https://repo.sourcify.dev/contracts/full_match/${chainId}/${address}/metadata.json`);
22
const json = await result.json();
23
24
- // Etherscan returns a JSON object that has a `status`, a `message` and
25
- // a `result` field. The `status` is '0' in case of errors and '1' in
26
- // case of success
27
if (result.ok) {
28
return new ABICtor('Contract', undefined, immutable.fromJS(json.output.abi));
29
}
0 commit comments