sendStakeTransaction method

Future sendStakeTransaction({
  1. required StakeTransaction stake,
})

Implementation

Future<dynamic> sendStakeTransaction(
    {required StakeTransaction stake}) async {
  return await inventory({
    'transaction': {'Stake': stake.jsonMap(asHex: false)}
  });
}