10 lines
304 B
Python
10 lines
304 B
Python
# web3 provider information
|
|
# include provider HTTPS endpoint URL & its API Key.
|
|
# Alchemy is a good choice for Web3 provider
|
|
WEB3_PROVIDER_URL = "https://eth-sepolia.g.alchemy.com/v2/"
|
|
WEB3_PROVIDER_KEY = ""
|
|
|
|
# Please write down your wallet key to sign a transaction with our contract.
|
|
WALLET_KEY = ""
|
|
|