encodeNameCall static method

Uint8List encodeNameCall(
  1. Uint8List node
)

Implementation

static Uint8List encodeNameCall(Uint8List node) {
  return SolCodec.encodeCall(
    'name(bytes32)',
    [SolFixedBytes(32)],
    [node],
  );
}