update params in call

pull/3771/head
Aniket-Engg 1 year ago committed by yann300
parent 63e2552aa2
commit 6cdc33382c
  1. 4
      apps/etherscan/src/app/RemixPlugin.tsx

@ -8,8 +8,8 @@ export class RemixClient extends PluginClient {
return this.onload()
}
async verify (apiKey: string, contractAddress: string, contractArguments: string, contractName: string, compilationResultParam: any) {
const result = await verify(apiKey, contractAddress, contractArguments, contractName, compilationResultParam, null, false, null, this,
async verify (apiKey: string, contractAddress: string, contractArguments: string, contractName: string, compilationResultParam: any, chainRef?: number | string, isProxyContract?: boolean, expectedImplAddress?: string) {
const result = await verify(apiKey, contractAddress, contractArguments, contractName, compilationResultParam, chainRef, isProxyContract, expectedImplAddress, this,
(value: EtherScanReturn) => {}, (value: string) => {})
return result
}

Loading…
Cancel
Save