The Capx ecosystem pioneers the transformation of AI agents into verifiable, tradable digital assets. This is achieved through a meticulously designed Token Factory protocol and an accompanying Token Registry, both operating immutably on Capx Chain. This system provides a standardized, transparent, and automated framework for endowing every deployed AI agent with its own distinct on-chain economic identity.
The decision to pair every AI agent with a dedicated ERC-20 fungible token is a deliberate architectural choice, predicated on several core tenets:
The Capx Token Factory is a non-upgradeable smart contract system on Capx Chain responsible for the genesis of all AI agent tokens. Its operation is deeply integrated with the AI agent deployment pipeline originating from Capx Cloud.
Capx Agent Contracts
➹createAgent
function (or a similar internal method). This function deploys a new, distinct ERC-20 compliant smart contract for the agent.
1,000,000,000
(one billion) tokens are minted to a totalSupply
variable within the new token contract. This supply is immutable; the ERC-20 contract itself will contain no mint()
or burn()
functions callable post-deployment, ensuring absolute supply predictability.name()
: Derived from the agent’s registered name (e.g., “Agent X Token”).symbol()
: A unique ticker (e.g., “AXT”).decimals()
: Standard ERC-20 decimal places (typically 18).totalSupply
is programmatically transferred to predefined addresses or vesting contracts. This distribution is determined by allocation rules.
Complementing the Token Factory is the Capx Token Registry. This registry serves as the canonical, on-chain directory of all legitimate AI agent tokens within the ecosystem.
registerToken(address agentTokenContract, bytes32 agentIdentifier)
: When the Token Factory creates a new agent token, it (or an authorized address) calls this function to log the new token contract’s address alongside a unique identifier for the AI agent (e.g., a hash of its metadata or deployment ID).The Capx ecosystem pioneers the transformation of AI agents into verifiable, tradable digital assets. This is achieved through a meticulously designed Token Factory protocol and an accompanying Token Registry, both operating immutably on Capx Chain. This system provides a standardized, transparent, and automated framework for endowing every deployed AI agent with its own distinct on-chain economic identity.
The decision to pair every AI agent with a dedicated ERC-20 fungible token is a deliberate architectural choice, predicated on several core tenets:
The Capx Token Factory is a non-upgradeable smart contract system on Capx Chain responsible for the genesis of all AI agent tokens. Its operation is deeply integrated with the AI agent deployment pipeline originating from Capx Cloud.
Capx Agent Contracts
➹createAgent
function (or a similar internal method). This function deploys a new, distinct ERC-20 compliant smart contract for the agent.
1,000,000,000
(one billion) tokens are minted to a totalSupply
variable within the new token contract. This supply is immutable; the ERC-20 contract itself will contain no mint()
or burn()
functions callable post-deployment, ensuring absolute supply predictability.name()
: Derived from the agent’s registered name (e.g., “Agent X Token”).symbol()
: A unique ticker (e.g., “AXT”).decimals()
: Standard ERC-20 decimal places (typically 18).totalSupply
is programmatically transferred to predefined addresses or vesting contracts. This distribution is determined by allocation rules.
Complementing the Token Factory is the Capx Token Registry. This registry serves as the canonical, on-chain directory of all legitimate AI agent tokens within the ecosystem.
registerToken(address agentTokenContract, bytes32 agentIdentifier)
: When the Token Factory creates a new agent token, it (or an authorized address) calls this function to log the new token contract’s address alongside a unique identifier for the AI agent (e.g., a hash of its metadata or deployment ID).