Files
chia-blockchain/chia/cmds/units.py
Kyle AltendorfandGitHub 9c8557a1f8 Remove Python 3.8 support and update source to 3.9 standards (#18687)
* manual python 3.8 removals

* poetry

* pyupgrade

* black

* isort

* manually tidy imports

* work around shadowed type

* catch up build network protocol files for pyupgrade changes

* placate pylint

* re-enable 20.04

* placate flake8
2024-10-16 14:21:15 -07:00

10 lines
300 B
Python

from __future__ import annotations
# The rest of the codebase uses mojos everywhere.
# Only use 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,
"cat": 10**3, # 1 CAT is 1000 CAT mojos
}