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 b3e645d commit e8dba1cCopy full SHA for e8dba1c
apps/contract-verification/src/app/Verifiers/EtherscanVerifier.ts
@@ -53,7 +53,7 @@ export class EtherscanVerifier extends AbstractVerifier {
53
formData.append('contractaddress', submittedContract.address)
54
formData.append('contractname', submittedContract.filePath + ':' + submittedContract.contractName)
55
formData.append('compilerversion', `v${metadata.compiler.version}`)
56
- formData.append('constructorArguments', submittedContract.abiEncodedConstructorArgs?.replace('0x', '') ?? '')
+ formData.append('constructorArguements', submittedContract.abiEncodedConstructorArgs?.replace('0x', '') ?? '')
57
58
const url = new URL(this.apiUrl + '/api')
59
url.searchParams.append('module', 'contract')
0 commit comments