buildPaymasterAndData method

Uint8List buildPaymasterAndData()

Implementation

Uint8List buildPaymasterAndData() {
  final pmBytes = hexDecode(paymasterAddress);
  final tokenBytes = hexDecode(tokenAddress);
  return concatBytes([pmBytes, tokenBytes]);
}