{{"TITLE_CONTRACT_EDITOR" | translate}}

TITLE_WEB3_SANDBOX

  • EXPLANATION_SMART_CONTRACT_DEPLOYMENT
  • EXPLANATION_GWEI_VALUE_POST_COMPILATION
{{ "LABEL_SELECT_COMPILER_VERSION" | translate}} @if (compilerErrors.length > 0) {

Compiler Errors:

    @for (error of compilerErrors; track error) {
  • {{ error.formattedMessage }}
  • }
} @if (compiledContracts) {

{{ "TITLE_CONTRACT_DEPLOYMENT" | translate}}

{{ "LABEL_COMPILED_CONTRACTS" | translate}} {{ "GWEI_VALUE_FOR_SENDING_ETH" | translate }}
} @if (deployedContractAddress) {
{{ "LABEL_CONTRACT_ADDRESS" | translate }} {{ deployedContractAddress }}
} @if (deployedContractAddress) {

TITLE_INTERACT_WITH_CONTRACT

@for (func of contractFunctions; track func) {
@if (func.inputs.length > 0) {
@if (func.outputValue !== '') {
{{ "LABEL_OUTPUT_FOR" | translate: {name: func.name} }}: {{ func.outputValue }}
} } @else {
@if (func.outputValue !== '') {
{{ "LABEL_OUTPUT_FOR" | translate: {name: func.name} }}: {{ func.outputValue }}
}
}
}
@if (invokeOutput !== '') {
{{ "LABEL_OUTPUT" | translate}}: {{ invokeOutput }}
}
}