signToEcSignature method

  1. @override
MsgSignature signToEcSignature(
  1. Uint8List payload, {
  2. int? chainId,
  3. bool isEIP1559 = false,
})

Signs the payload with a private key and returns the obtained signature.

Implementation

@override
MsgSignature signToEcSignature(Uint8List payload,
    {int? chainId, bool isEIP1559 = false}) {
  throw UnimplementedError();
}