signToSignature method

  1. @override
Future<MsgSignature> signToSignature(
  1. Uint8List payload, {
  2. int? chainId,
  3. bool? isEIP1559,
})

An override to the signToSignature, but it's not supported as the signing is done in the relayer.

Implementation

@override

/// An override to the signToSignature, but it's not supported
/// as the signing is done in the relayer.
Future<MsgSignature> signToSignature(Uint8List payload,
    {int? chainId, bool? isEIP1559}) {
  throw UnsupportedError('Not supported');
}