RING
0x1574c84Ec7fA78fC6C749e1d242dbde163675e720xc94b6c80…25f0aaSource details
| Property | Value |
|---|---|
| Keccak256 Hash | 0xc94b6c807c48f9af26f875df7956b228bc5f66091c73ddc01ea735bc0b25f0aa |
| Source URL | https://raw.githubusercontent.com/busytoby/atropa_pulsechain/58607494f7741b80525953e4a85bc99e66fd20fc/solidity/dysnomia/domain/sky/03_ring.sol |
| Source Revision | 58607494f7741b80525953e4a85bc99e66fd20fc |
| Source Status | Canonical source snapshot; deployed bytecode equivalence is only established where a deployment record says so. |
| Compiler | solc 0.8.21; optimizer enabled with 200 runs |
| Compiler Configuration | {"evmVersion":"compiler-default","optimizer":{"enabled":true,"runs":200},"version":"0.8.21+commit.d9974bed.Linux.g++"} |
| Compilation Closure Hash | 0x918d5011fc2dfaf076ae7b593f60f7fab16de7679185faab7f07e1e8076063d8 |
| Compilation Closure Files | 37 |
| Hash Generated | 2026-09-14T19:34:03Z |
Overview
Section titled “Overview”RING is the time/moment tracking contract that calculates Eta values and tracks player moments. It coordinates with PANG for push operations.
- Kind: Contract
- License: Sharia
- Solidity: ^0.8.21
- Source:
domain/sky/03_ring.sol
Inheritance Chain (C3 Linearized)
Section titled “Inheritance Chain (C3 Linearized)”- self — RING
- DYSNOMIA
- MultiOwnable
Immediate Parents
Section titled “Immediate Parents”What This Means For Players
Section titled “What This Means For Players”Plain English Summary: RING is the time tracker - it records your moments and activity in the game. Every interaction you have creates a “moment” that RING remembers. These moments affect your power calculations and rewards in the WORLD territory system.
Real-World Analogy: Think of RING like a fitness tracker that records your workout sessions. Each time you do something in the game, RING logs that moment and uses the accumulated data to calculate your “fitness score” (Eta values) which determines your influence in the game.
How It Affects Your Gameplay:
- Moment tracking - Your Soul ID is linked to your activity moments
- Eta calculations - RING computes values used for territory claims and rewards
- Player history - Your accumulated moments influence future reward calculations
Live Deployment Compatibility
Section titled “Live Deployment Compatibility”The deployed RING reports Type() == "RING" and accepts Eta() from a player with the required active character state. Its observed live call path delegates the YUE reaction through CHAN.ReactYue, while the recovered source snapshot calls YUE.React directly. Use this source for the callable interface and game relationships, not as a claim of byte-for-byte deployment equivalence.
State Variables
Section titled “State Variables”| Variable | Type | Visibility | Mutability | Initial Value | NatSpec |
|---|---|---|---|---|---|
Type |
string |
public | constant | RING |
|
Pang |
PANG |
public | mutable | `` | |
Phobos |
QINGINTERFACE |
public | mutable | `` | |
Moments |
mapping(uint64 => uint256) |
public | mutable | `` |
Constructor
Section titled “Constructor”constructor
Section titled “constructor”constructorconstructor
constructor(address PangAddress) DYSNOMIA("Dysnomia Ring", "RING", address(DYSNOMIA(PangAddress).Xiao()))- Modifiers:
DYSNOMIA("Dysnomia Ring", "RING", address(DYSNOMIA(PangAddress).Xiao())) - Parameters: address PangAddress
Functions
Section titled “Functions”External & Public
Section titled “External & Public”Etafunction
function Eta() public returns (uint256 Phoebe, uint256 Iota, uint256 Chao, uint256 Charge)Open this function to load its call form.
- Visibility: public
- Returns: uint256 Phoebe, uint256 Iota, uint256 Chao, uint256 Charge
Inherited Members
Section titled “Inherited Members”This contract inherits the members below from its parents. See each parent’s dedicated MD for full signatures, NatSpec, and semantics.
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 |
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
Section titled “Contract Interactions”Depends On
Section titled “Depends On”- DYSNOMIA V2 - Base functionality
- PANG - Push operations
- CHOA - Player state (via Pang.Zi)
Depended On By
Section titled “Depended On By”Special Mechanisms
Section titled “Special Mechanisms”Eta Calculation
Section titled “Eta Calculation”function Eta() public returns (uint256 Phoebe, uint256 Iota, uint256 Chao, uint256 Charge) { uint256 Omicron; uint256 Omega;
// Get player (YUEINTERFACE Yue, LAU Usertoken) = Pang.Zi().Choa().Sei().Chi();
// React against Phobos Chao = Yue.React(address(Phobos));
// Get push values (Iota, Omicron, Phoebe, Omega, Charge) = Pang.Push(Phobos.Waat());
// Adjust values Chao = Chao / Omicron; Charge = Charge / Omega;
// Record moment Moments[Usertoken.Saat(1)] = Iota; Iota = Iota * Iota;}Phobos Reference
Section titled “Phobos Reference”The Phobos QING is derived from the deep contract chain at construction:
Phobos = Pang.Zi().Choa().Sei().Chan().Xie().Xia().Mai().Qi().Zuo();Inherited functions and getters (25)
RING.GetMarketRate(address _a)Read
Open this function to load its call form.
RING.Moments(uint64 Soul)Read
Open this function to load its call form.
RING.MotzkinPrime()Read
Open this function to load its call form.
RING.Pang()Read
Open this function to load its call form.
RING.Phobos()Read
Open this function to load its call form.
RING.Purchase(address _t, uint256 _a)Simulate / call
Open this function to load its call form.
RING.Redeem(address _t, uint256 _a)Simulate / call
Open this function to load its call form.
RING.Rename(string newName, string newSymbol)Simulate / call
Open this function to load its call form.
RING.Type()Read
Open this function to load its call form.
RING.Xiao()Read
Open this function to load its call form.
RING.addOwner(address newOwner)Simulate / call
Open this function to load its call form.
RING.allowance(address owner, address spender)Read
Open this function to load its call form.
RING.approve(address spender, uint256 value)Simulate / call
Open this function to load its call form.
RING.balanceOf(address account)Read
Open this function to load its call form.
RING.decimals()Read
Open this function to load its call form.
RING.maxSupply()Read
Open this function to load its call form.
RING.mintToCap()Simulate / call
Open this function to load its call form.
RING.name()Read
Open this function to load its call form.
RING.owner(address cOwner)Read
Open this function to load its call form.
RING.owner()Read
Open this function to load its call form.
RING.renounceOwnership(address toRemove)Simulate / call
Open this function to load its call form.
RING.symbol()Read
Open this function to load its call form.
RING.totalSupply()Read
Open this function to load its call form.
RING.transfer(address to, uint256 value)Simulate / call
Open this function to load its call form.
RING.transferFrom(address from, address to, uint256 value)Simulate / call
Open this function to load its call form.
Compiled ABI
Section titled “Compiled ABI”The compiled ABI below is produced by solc 0.8.21 from the exact source bytes recorded in Source details. Consumers can paste it directly into ethers/web3/viem.
Click to expand JSON ABI
[ { "inputs": [ { "internalType": "address", "name": "PangAddress", "type": "address" } ], "stateMutability": "nonpayable", "type": "constructor" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "sender", "type": "address" }, { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" }, { "internalType": "uint256", "name": "allowance", "type": "uint256" }, { "internalType": "uint256", "name": "needed", "type": "uint256" } ], "name": "DysnomiaInsufficientAllowance", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "sender", "type": "address" }, { "internalType": "address", "name": "from", "type": "address" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" }, { "internalType": "uint256", "name": "balance", "type": "uint256" }, { "internalType": "uint256", "name": "needed", "type": "uint256" } ], "name": "DysnomiaInsufficientBalance", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "asset", "type": "address" } ], "name": "MarketRateNotFound", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" } ], "name": "OwnableInvalidOwner", "type": "error" }, { "inputs": [ { "internalType": "address", "name": "origin", "type": "address" }, { "internalType": "address", "name": "account", "type": "address" }, { "internalType": "address", "name": "what", "type": "address" } ], "name": "OwnableUnauthorizedAccount", "type": "error" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "owner", "type": "address" }, { "indexed": true, "internalType": "address", "name": "spender", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Approval", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }, { "indexed": true, "internalType": "bool", "name": "state", "type": "bool" } ], "name": "OwnershipUpdate", "type": "event" }, { "anonymous": false, "inputs": [ { "indexed": true, "internalType": "address", "name": "from", "type": "address" }, { "indexed": true, "internalType": "address", "name": "to", "type": "address" }, { "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "Transfer", "type": "event" }, { "inputs": [], "name": "Eta", "outputs": [ { "internalType": "uint256", "name": "Phoebe", "type": "uint256" }, { "internalType": "uint256", "name": "Iota", "type": "uint256" }, { "internalType": "uint256", "name": "Chao", "type": "uint256" }, { "internalType": "uint256", "name": "Charge", "type": "uint256" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_a", "type": "address" } ], "name": "GetMarketRate", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "uint64", "name": "Soul", "type": "uint64" } ], "name": "Moments", "outputs": [ { "internalType": "uint256", "name": "Iota", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "MotzkinPrime", "outputs": [ { "internalType": "uint64", "name": "", "type": "uint64" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "Pang", "outputs": [ { "internalType": "contract PANG", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "Phobos", "outputs": [ { "internalType": "contract QINGINTERFACE", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_t", "type": "address" }, { "internalType": "uint256", "name": "_a", "type": "uint256" } ], "name": "Purchase", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "_t", "type": "address" }, { "internalType": "uint256", "name": "_a", "type": "uint256" } ], "name": "Redeem", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "string", "name": "newName", "type": "string" }, { "internalType": "string", "name": "newSymbol", "type": "string" } ], "name": "Rename", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "Type", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "Xiao", "outputs": [ { "internalType": "contract atropaMath", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "newOwner", "type": "address" } ], "name": "addOwner", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "owner", "type": "address" }, { "internalType": "address", "name": "spender", "type": "address" } ], "name": "allowance", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "spender", "type": "address" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "approve", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "account", "type": "address" } ], "name": "balanceOf", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "decimals", "outputs": [ { "internalType": "uint8", "name": "", "type": "uint8" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "maxSupply", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "mintToCap", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "name", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "cOwner", "type": "address" } ], "name": "owner", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "owner", "outputs": [ { "internalType": "address", "name": "", "type": "address" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "toRemove", "type": "address" } ], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [], "name": "symbol", "outputs": [ { "internalType": "string", "name": "", "type": "string" } ], "stateMutability": "view", "type": "function" }, { "inputs": [], "name": "totalSupply", "outputs": [ { "internalType": "uint256", "name": "", "type": "uint256" } ], "stateMutability": "view", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "transfer", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "nonpayable", "type": "function" }, { "inputs": [ { "internalType": "address", "name": "from", "type": "address" }, { "internalType": "address", "name": "to", "type": "address" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "transferFrom", "outputs": [ { "internalType": "bool", "name": "", "type": "bool" } ], "stateMutability": "nonpayable", "type": "function" }]