예제 #1
0
 def _create_msg(self) -> proto.StellarSignTx:
     tx = proto.StellarSignTx()
     tx.source_account = "GAK5MSF74TJW6GLM7NLTL76YZJKM2S4CGP3UH4REJHPHZ4YBZW2GSBPW"
     tx.fee = 100
     tx.sequence_number = 0x100000000
     tx.memo_type = 0
     return tx
def _create_msg() -> messages.StellarSignTx:
    return messages.StellarSignTx(
        source_account="GAK5MSF74TJW6GLM7NLTL76YZJKM2S4CGP3UH4REJHPHZ4YBZW2GSBPW",
        fee=100,
        sequence_number=0x100000000,
        memo_type=0,
    )
예제 #3
0
 def _create_msg(self) -> proto.StellarSignTx:
     tx = proto.StellarSignTx()
     tx.protocol_version = 1
     tx.source_account = unhexlify(
         '15d648bfe4d36f196cfb5735ffd8ca54cd4b8233f743f22449de7cf301cdb469')
     tx.fee = 100
     tx.sequence_number = 0x100000000
     tx.memo_type = 0
     return tx