- Command:
ethcode.activate - Description: Activates Ethcode extension.
- Command:
ethcode.account.create - Description: Create ethereum account. You will be prompted for password. Accounts are created inside ethcode extension directory.
- Command:
ethcode.account.list - Description: List ethereum accounts.
- Command:
ethcode.account.set - Description: Choose ethereum account for use.
- Command:
ethcode.network.set - Description: Choose ethereum network for use.
- Command:
ethcode.combined-json.load,ethcode.standard-json.load - Description: Generate constructor inputs.
- Command:
ethcode.contract.input.create - Description: Generate constructor inputs.
This will create a constructor-input.json file inside your workspace.
[
{
"internalType": "string",
"name": "_greeting",
"type": "string",
"value": "Hello World!"
}
]
As the JSON suggests the value for the input is provided with the value field.
- Command:
ethcode.contract.input.load - Description: Load constructor inputs.
- Command:
ethcode.transaction.build - Description: Build raw transaction.
- Command:
ethcode.account.sign-deploy - Description: Deploy transaction to network.












