Complete the code to specify the contract address for verification.
const contractAddress = '[1]';
The contract address must be a full Ethereum address string to verify on Etherscan.
Complete the code to set the Etherscan API key for contract verification.
const apiKey = '[1]';
The API key is a string provided by Etherscan to authorize verification requests.
Fix the error in the verification function call by completing the method name.
await etherscan.[1](contractAddress, sourceCode, apiKey);The correct method to verify a contract on Etherscan is 'verifyContract'.
Fill both blanks to create a dictionary with contract address and API key for verification.
const verificationData = { address: '[1]', key: '[2]' };The 'address' field needs the contract address, and 'key' needs the Etherscan API key.
Fill all three blanks to complete the verification function call with address, source, and API key.
await etherscan.verifyContract('[1]', '[2]', '[3]');
The function requires the contract address, the source code filename, and the API key in that order.