ZI¶
Overview¶
ZI is the fifth contract in the soeng chain. It provides spin calculations using CHOA's Yuan and CHO's (Tethys) balance data.
- Kind: Contract
- License: Sharia
- Solidity: ^0.8.21
- Source:
domain/soeng/05_zi.sol
Inheritance Chain (C3 Linearized)¶
- self — ZI
- DYSNOMIA
- MultiOwnable
Immediate Parents¶
What This Means For Players¶
Plain English Summary: ZI adds "spin" to your power calculations. It takes your XIE power values and applies rotational modifiers based on your Yuan (weighted token holdings) and CHO balance. Think of it as adding angular momentum to your linear power.
Real-World Analogy: If XIE measures how hard you can punch, ZI measures how much "spin" you can put on the punch. A spinning punch (high spin values) transfers energy differently than a straight punch, affecting the final impact.
How It Affects Your Gameplay: - Spin values - Four outputs (Iota, Omicron, Omega, Eta) that modify game calculations - Yuan weighting - Your overall token holdings (via CHOA.Yuan) influence spin - Fifth in the chain - ZI prepares data for PANG's final push calculations
State Variables¶
| Variable | Type | Visibility | Mutability | Initial Value | NatSpec |
|---|---|---|---|---|---|
Type |
string |
public | constant | ZI |
|
Choa |
CHOA |
public | mutable | `` | |
Tethys |
CHOINTERFACE |
public | mutable | `` |
Constructor¶
constructor¶
constructor(address ChoaAddress) DYSNOMIA("Dysnomia Zi", "ZI", address(DYSNOMIA(ChoaAddress).Xiao()))
- Modifiers:
DYSNOMIA("Dysnomia Zi", "ZI", address(DYSNOMIA(ChoaAddress).Xiao())) - Parameters: address ChoaAddress
Functions¶
External & Public¶
Spin¶
function Spin(uint256 QingWaat) public returns (uint256 Iota, uint256 Omicron, uint256 Omega, uint256 Eta)
- Visibility: public
- Parameters: uint256 QingWaat
- Returns: uint256 Iota, uint256 Omicron, uint256 Omega, uint256 Eta
Inherited Members¶
This contract inherits the members below from its parents. See each parent's dedicated MD for full signatures, NatSpec, and semantics.
From DYSNOMIA¶
External & Public Functions
| Function | Signature | State Mutability |
|---|---|---|
Rename |
function Rename(string memory newName, string memory newSymbol) public virtual onlyOwners |
nonpayable |
mintToCap |
function mintToCap() public onlyOwners |
nonpayable |
GetMarketRate |
function GetMarketRate(address _a) public view returns (uint256) |
view |
Purchase |
function Purchase(address _t, uint256 _a) public |
nonpayable |
Redeem |
function Redeem(address _t, uint256 _a) public |
nonpayable |
name |
function name() public view virtual returns (string memory) |
view |
symbol |
function symbol() public view virtual returns (string memory) |
view |
decimals |
function decimals() public view virtual returns (uint8) |
view |
totalSupply |
function totalSupply() public view virtual returns (uint256) |
view |
balanceOf |
function balanceOf(address account) public view virtual returns (uint256) |
view |
transfer |
function transfer(address to, uint256 value) public virtual returns (bool) |
nonpayable |
allowance |
function allowance(address owner, address spender) public view virtual returns (uint256) |
view |
approve |
function approve(address spender, uint256 value) public virtual returns (bool) |
nonpayable |
transferFrom |
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) |
nonpayable |
Internal Functions
| Function | Signature |
|---|---|
_addLibraryOwner |
function _addLibraryOwner(VOID Void, string memory what) internal |
_mintToCap |
function _mintToCap() internal |
_addMarketRate |
function _addMarketRate(address _a, uint256 _r) internal |
_transfer |
function _transfer(address from, address to, uint256 value) internal |
_update |
function _update(address from, address to, uint256 value) internal virtual |
_mint |
function _mint(address account, uint256 value) internal |
_approve |
function _approve(address owner, address spender, uint256 value) internal |
_spendAllowance |
function _spendAllowance(address owner, address spender, uint256 value) internal virtual |
Events
| Event | Parameters |
|---|---|
Transfer |
address indexed from, address indexed to, uint256 value |
Approval |
address indexed owner, address indexed spender, uint256 value |
Errors
| Error | Parameters |
|---|---|
MarketRateNotFound |
address asset |
DysnomiaInsufficientBalance |
address origin, address sender, address from, address to, address what, uint256 balance, uint256 needed |
DysnomiaInsufficientAllowance |
address origin, address sender, address owner, address spender, address what, uint256 allowance, uint256 needed |
State Variables (private parent storage is not reachable and is omitted)
| Variable | Type | Visibility | Mutability |
|---|---|---|---|
__name |
string |
internal | mutable |
__symbol |
string |
internal | mutable |
MotzkinPrime |
uint64 |
public | constant |
Xiao |
atropaMath |
public | mutable |
maxSupply |
uint256 |
public | mutable |
From MultiOwnable¶
External & Public Functions
| Function | Signature | State Mutability |
|---|---|---|
owner |
function owner() external view virtual returns (address) |
view |
renounceOwnership |
function renounceOwnership(address toRemove) public virtual onlyOwners |
nonpayable |
addOwner |
function addOwner(address newOwner) public virtual onlyOwners |
nonpayable |
Internal Functions
| Function | Signature |
|---|---|
_checkOwner |
function _checkOwner() internal view virtual |
_changeOwnership |
function _changeOwnership(address cOwner, bool cState) internal virtual |
Events
| Event | Parameters |
|---|---|
OwnershipUpdate |
address indexed newOwner, bool indexed state |
Errors
| Error | Parameters |
|---|---|
OwnableUnauthorizedAccount |
address origin, address account, address what |
OwnableInvalidOwner |
address origin, address owner, address what |
Modifiers
| Modifier | Parameters |
|---|---|
onlyOwners |
(none) |
Contract Interactions¶
Depends On¶
- DYSNOMIA V2 - Base functionality
- CHOA - Yuan calculations
Depended On By¶
- PANG - Uses ZI for push calculations
Special Mechanisms¶
Tethys Reference¶
Tethys is CHO accessed through the contract chain:
Spin Calculation¶
function Spin(uint256 QingWaat) public returns (uint256 Iota, uint256 Omicron, uint256 Omega, uint256 Eta) {
uint256 Charge;
User memory Alpha = Choa.Sei().Chan().Xie().Xia().Mai().Qi().Zuo().Cho().GetUser();
QINGINTERFACE Qing = Choa.Sei().Chan().Xie().Xia().Mai().Qi().Zuo().GetQing(QingWaat);
(Charge, Omicron, Omega) = Choa.Sei().Chan().Xie().Power(QingWaat);
Iota = Xiao.modExp(Omicron, Charge, Choa.Yuan(address(Tethys)));
Omicron = Xiao.modExp(Omega, Charge, Choa.Yuan(address(Tethys)));
Omega = Tethys.balanceOf(Alpha.On.Phi) / Alpha.Entropy;
Eta = Tethys.balanceOf(address(Qing)) / Qing.Entropy();
}
Contract Verification¶
| Property | Value |
|---|---|
| Keccak256 Hash | 0xfc5b58a41455760782a2b87bbbd51f4990ccede26e7e3c9eb8e0e7fe7949faa6 |
| Source URL | https://raw.githubusercontent.com/busytoby/atropa_pulsechain/main/solidity/dysnomia/domain/soeng/05_zi.sol |
| Hash Generated | 2026-04-17T20:48:15Z |