encodeAbiCall static method
Implementation
static Uint8List encodeAbiCall(Uint8List node) {
return SolCodec.encodeCall(
'ABI(bytes32,uint256)',
[SolFixedBytes(32), SolFixedBytes(32)],
[
node,
// Content type bitmask: 1 = JSON, 2 = zlib, 4 = CBOR, 8 = URI
Uint8List(32)..[31] = 0xff,
],
);
}