Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions examples/send_transfer.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"""
from iota import *

SEED1 = b"THESEEDOFTHEWALLETSENDINGGOESHERE999999999999999999999999999999999999999999999999"
ADDRESS_WITH_CHECKSUM_SECURITY_LEVEL_2 = b"RECEIVINGWALLETADDRESSGOESHERE9WITHCHECKSUMANDSECURITYLEVEL2999999999999999999999999999999"

# Create the API instance.
api =\
Expand All @@ -12,7 +14,7 @@
'http://localhost:14265/',

# Seed used for cryptographic functions.
seed = b'SEED9GOES9HERE'
seed = SEED1
)

# For more information, see :py:meth:`Iota.send_transfer`.
Expand All @@ -26,8 +28,7 @@
# Recipient of the transfer.
address =
Address(
b'TESTVALUE9DONTUSEINPRODUCTION99999FBFFTG'
b'QFWEHEL9KCAFXBJBXGE9HID9XCOHFIDABHDG9AHDR'
ADDRESS_WITH_CHECKSUM_SECURITY_LEVEL_2,
),

# Amount of IOTA to transfer.
Expand Down