encodeContenthashCall static method

Uint8List encodeContenthashCall(
  1. Uint8List node
)

Implementation

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