buildStdTx static method
Builds a StdTx object containing the given stdMsgs
and having the
optional memo
and fee
specified.
Implementation
static StdTx buildStdTx({
required List<StdMsg> stdMsgs,
String memo = '',
StdFee fee = const StdFee(gas: '200000', amount: []),
}) {
return StdTx(
messages: stdMsgs,
memo: memo,
fee: fee,
signatures: null,
);
}