Skip to content

Commit

Permalink
Create constants.py
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jan 4, 2025
1 parent 15014c8 commit f1e1d0b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/constants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# src/constants.py

"""
Pi Coin Configuration Constants
This module contains constants related to the Pi Coin cryptocurrency.
"""

# Pi Coin Symbol
PI_COIN_SYMBOL = "Pi" # Symbol for Pi Coin

# Pi Coin Value
PI_COIN_VALUE = 314159 # Fixed value of Pi Coin in USD

# Pi Coin Supply
PI_COIN_SUPPLY = 100_000_000_000 # Total supply of Pi Coin

# Additional constants can be added here as needed
# Example:
# PI_COIN_TRANSACTION_FEE = 0.01 # Transaction fee in USD
# PI_COIN_BLOCK_TIME = 10 # Average block time in seconds

0 comments on commit f1e1d0b

Please sign in to comment.