Update app.py
Browse files
app.py
CHANGED
|
@@ -51,10 +51,10 @@ elif db_type == "PostgreSQL":
|
|
| 51 |
|
| 52 |
# Blockchain Configuration
|
| 53 |
st.sidebar.subheader("π Blockchain Configuration")
|
| 54 |
-
BLOCKCHAIN_NODE_URL = st.sidebar.text_input("Blockchain Node URL", value="https://
|
| 55 |
|
| 56 |
# Hardcoded Smart Contract Address (Removed sidebar input)
|
| 57 |
-
CONTRACT_ADDRESS = "
|
| 58 |
|
| 59 |
PRIVATE_KEY = st.sidebar.text_input("Blockchain Account Private Key", type="password")
|
| 60 |
|
|
|
|
| 51 |
|
| 52 |
# Blockchain Configuration
|
| 53 |
st.sidebar.subheader("π Blockchain Configuration")
|
| 54 |
+
BLOCKCHAIN_NODE_URL = st.sidebar.text_input("Blockchain Node URL", value="https://rpc.buildbear.io/linguistic-doctorstrange-fb0930a4")
|
| 55 |
|
| 56 |
# Hardcoded Smart Contract Address (Removed sidebar input)
|
| 57 |
+
CONTRACT_ADDRESS = "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48" # π Replace with your actual smart contract address
|
| 58 |
|
| 59 |
PRIVATE_KEY = st.sidebar.text_input("Blockchain Account Private Key", type="password")
|
| 60 |
|