encodeSetContenthashCall static method
Implementation
static Uint8List encodeSetContenthashCall(Uint8List node, Uint8List hash) {
return SolCodec.encodeCall(
'setContenthash(bytes32,bytes)',
[SolFixedBytes(32), SolBytes()],
[node, hash],
);
}