smartContractAbiJson property
A smart contract ABI in JSON. Each ABI function must be mapped to a short signature. Expected to be a set of functions mapped to corresponding short signatures. Example:
{
"1896f70a": {
"name": "setResolver",
"inputs": [...],
...
},
"ac9650d8": {
"name": "multicall",
"inputs": [...],
...
}
}
Implementation
@$pb.TagNumber(2)
$core.String get smartContractAbiJson => $_getSZ(1);
Implementation
@$pb.TagNumber(2)
set smartContractAbiJson($core.String v) {
$_setString(1, v);
}