mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-11 01:28:17 +03:00
10 lines
322 B
Python
10 lines
322 B
Python
from typing import Dict
|
|
|
|
# The rest of the codebase uses mojos everywhere. Only uses these units
|
|
# for user facing interfaces
|
|
units: Dict[str, int] = {
|
|
"chia": 10 ** 12, # 1 chia (XCH) is 1,000,000,000,000 mojo (1 Trillion)
|
|
"mojo:": 1,
|
|
"colouredcoin": 10 ** 3, # 1 coloured coin is 1000 colouredcoin mojos
|
|
}
|