mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-30 00:25:49 +00:00
revise per Rome feedback
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
# Define signer address
|
||||
import os
|
||||
my_secret = os.getenv("MY_SECRET")
|
||||
my_secret = os.getenv("MYSECRET")
|
||||
from xrpl.wallet import Wallet
|
||||
wallet = Wallet(seed="MY_SECRET")
|
||||
wallet = Wallet(seed="MYSECRET", sequence=16237283)
|
||||
print(wallet.classic_address) # "raaFKKmgf6CRZttTVABeTcsqzRQ51bNR6Q"
|
||||
|
||||
from xrpl.models.transactions import Payment
|
||||
from xrpl.utils import xrp_to_drops
|
||||
my_payment = Payment(
|
||||
account=test_wallet_1.classic_address,
|
||||
account=wallet.classic_address,
|
||||
amount=xrp_to_drops(22),
|
||||
fee="10",
|
||||
destination="rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe",
|
||||
@@ -18,5 +18,5 @@ print("Payment object:", my_payment)
|
||||
|
||||
# Sign transaction -------------------------------------------------------------
|
||||
import xrpl.transaction
|
||||
signed = xrpl.transaction.safe_sign_transaction(my_payment, test_wallet_1)
|
||||
signed = xrpl.transaction.safe_sign_transaction(my_payment, wallet)
|
||||
print("Signed transaction blob:", signed)
|
||||
|
||||
Reference in New Issue
Block a user