You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
introduce new types CosmosTransaction and SignedCosmosTransaction:
classCosmosTransaction {
finalList<GeneratedMessage> messages; //comes from the google's protobuf https://pub.dev/documentation/protobuf/latest/protobuf/GeneratedMessage-class.htmlfinalString? memo;
finalFee? fee; //comes from the proto/cosmos/tx protobuf found here: https://github.com/cosmos/cosmos-sdk/blob/master/proto/cosmos/tx/v1beta1/tx.protofinalFuture<Either<TransactionSigningFailure, SignedCosmosTransaction> sign(Account account);
// should mimic the functionality of https://github.com/alan-sdk/alan.dart/blob/604bc3484dafcc9c7634cce088ec8f8c09c96a70/lib/transactions/signer/tx_signer.dart#L41
}
class SignedCosmosTransaction {
final Tx tx;
}
The text was updated successfully, but these errors were encountered:
Acceptance Criteria
CosmosTransaction
andSignedCosmosTransaction
:The text was updated successfully, but these errors were encountered: