Skip to content

Commit

Permalink
comments on values for transaction creation
Browse files Browse the repository at this point in the history
  • Loading branch information
kolydart committed Oct 22, 2019
1 parent 83ab7ab commit 3cfed1e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions mainCreateTransaction.py
Expand Up @@ -14,9 +14,9 @@

from web3 import Web3, HTTPProvider

address = 'WALLET_ADDRESS'
pk = "PRIVATE_KEY"
apikey = 'API_KEY'
address = 'WALLET_ADDRESS' # set value to your wallet's address
pk = "PRIVATE_KEY" # set value to your private key; caution! do not share the key with anyone
apikey = 'API_KEY' # set this to your own api key, if using infura.io
provider = 'https://mainnet.infura.io/v3/'+apikey
record_utf8 = """
{
Expand Down
4 changes: 2 additions & 2 deletions testCreateTransaction.py
Expand Up @@ -15,8 +15,8 @@

from web3 import Web3, HTTPProvider

address = 'WALLET_ADDRESS'
pk = "PRIVATE_KEY"
address = 'WALLET_ADDRESS' # set value to your wallet's address
pk = "PRIVATE_KEY" # set value to your private key; caution! do not share the key with anyone
provider = 'https://ropsten.infura.io'
record_utf8 = """
{
Expand Down

0 comments on commit 3cfed1e

Please sign in to comment.