encodeContenthashCall static method
Implementation
static Uint8List encodeContenthashCall(Uint8List node) {
// contenthash(bytes32) selector: 0xbc1c58d1
return SolCodec.encodeCall(
'contenthash(bytes32)',
[SolFixedBytes(32)],
[node],
);
}