Skip to content

Commit cdab924

Browse files
authored
Create constants.py
1 parent 10ba827 commit cdab924

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/constants.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# src/constants.py
2+
3+
"""
4+
Pi Coin Configuration Constants
5+
This module contains constants related to the Pi Coin cryptocurrency.
6+
"""
7+
8+
# Pi Coin Symbol
9+
PI_COIN_SYMBOL = "Pi" # Symbol for Pi Coin
10+
11+
# Pi Coin Value
12+
PI_COIN_VALUE = 314159 # Fixed value of Pi Coin in USD
13+
14+
# Pi Coin Supply
15+
PI_COIN_SUPPLY = 100_000_000_000 # Total supply of Pi Coin
16+
17+
# Additional constants can be added here as needed
18+
# Example:
19+
# PI_COIN_TRANSACTION_FEE = 0.01 # Transaction fee in USD
20+
# PI_COIN_BLOCK_TIME = 10 # Average block time in seconds

0 commit comments

Comments
 (0)