
We are excited to announce that after ongoing requests from the AIOZ community, we have today released the AIOZ dCDN CLI Node implementation.
The AIOZ dCDN CLI Node is software to become an AIOZ Node in AIOZ dCDN. Your Node contributes storage capacity, network bandwidth and computing power to the AIOZ dCDN and in return receives rewards in AIOZ tokens.
If you're looking to run an GUI-less AIOZ Node on your computer, read more below!
AIOZ dCDN CLI Node is the software to become an AIOZ Node in AIOZ dCDN. AIOZ Node contributes storage capacity, network bandwidth and computing power to the AIOZ dCDN and gets rewards in AIOZ Tokens.
Download and extract the latest AIOZ dCDN CLI Node. The scripts below are written for Windows PowerShell.
curl.exe -LO https://github.com/AIOZNetwork/aioz-depin-cli/files/13561213/aioznode-windows-amd64-1.1.0.zip
Expand-Archive -Path aioznode-windows-amd64-1.1.0.zip -DestinationPath .
ren aioznode-windows-amd64-1.1.0.exe aioznode.exeVerify the node is runnable
.\aioznode.exe version
The output should be the version of AIOZ dCDN Node.
Generate new mnemonic phrase and private key
.\aioznode.exe keytool new --save-priv-key privkey.json
--save-priv-key write the private key to file
Response
{
"address": "aioz1k28nzwgrwgzrwfuwsfcqjyvd0r4lfprql2c4uf",
"address_hex": "0xB28F313903720437278E827009118d78eBf48460",
"pub_key": "{\"@type\":\"/ethermint.crypto.v1.ethsecp256k1.PubKey\",\"key\":\"AxSwg94OuvFInQXiZtHevsw7gFKvbZXCqFunK3pMjV0I\"}",
"priv_key": "{\"@type\":\"/ethermint.crypto.v1.ethsecp256k1.PrivKey\",\"key\":\"rdWGOtJ/Uio4SDtubqMUGKn+7doBCCOfegAI9OGMIbE=\"}",
"mnemonic": "rain wing olive skate effort present long myself combine giant vote stay sweet bundle agree lock connect glide absent spider effort attitude enemy mouse"
}
IMPORTANT NOTE: Make sure to backup and secure your mnemonic phrase as it will be used in case of migration or recovering your node.
Run the node
.\aioznode.exe start --home nodedata --priv-key-file privkey.json
--home data folder of the node
--priv-key-file the private key file which the node starts with. If you do not specify the private key file, the node will ask for it from the standard input stream.
Note:
Because AIOZ dCDN CLI Node automatically updates itself by downloading and replacing the executable file, make sure to set file permission to writable.
AIOZ dCDN CLI Node has to stop to perform auto update, it should be run as Windows Service to start again after update and at system boot.
Download the latest AIOZ dCDN CLI Node
For macOS
curl -LO https://github.com/AIOZNetwork/aioz-depin-cli/files/13561206/aioznode-darwin-amd64-1.1.0.tar.gz
tar xzf aioznode-darwin-amd64-1.1.0.tar.gz
mv aioznode-darwin-amd64-1.1.0 aioznodeFor Linux
curl -LO https://github.com/AIOZNetwork/aioz-depin-cli/files/13561211/aioznode-linux-amd64-1.1.0.tar.gz
tar xzf aioznode-linux-amd64-1.1.0.tar.gz
mv aioznode-linux-amd64-1.1.0 aioznodeVerify the node is runnable
./aioznode version
The output should be the version of AIOZ dCDN Node.
Generate new mnemonic phrase and private key
./aioznode keytool new --save-priv-key privkey.json
--save-priv-key write the private key to file
Response
{
"address": "aioz1k28nzwgrwgzrwfuwsfcqjyvd0r4lfprql2c4uf",
"address_hex": "0xB28F313903720437278E827009118d78eBf48460",
"pub_key": "{\"@type\":\"/ethermint.crypto.v1.ethsecp256k1.PubKey\",\"key\":\"AxSwg94OuvFInQXiZtHevsw7gFKvbZXCqFunK3pMjV0I\"}",
"priv_key": "{\"@type\":\"/ethermint.crypto.v1.ethsecp256k1.PrivKey\",\"key\":\"rdWGOtJ/Uio4SDtubqMUGKn+7doBCCOfegAI9OGMIbE=\"}",
"mnemonic": "rain wing olive skate effort present long myself combine giant vote stay sweet bundle agree lock connect glide absent spider effort attitude enemy mouse"
}
IMPORTANT NOTE: Make sure to backup and secure your mnemonic phrase as it will be used in case of migration or recovering your node.
Run the node
./aioznode start --home nodedata --priv-key-file privkey.json
--home data folder of the node
--priv-key-file the private key file which the node starts with. If you do not specify the private key file, the node will ask for it from the standard input stream.
Note:
Because AIOZ dCDN CLI Node automatically updates itself by downloading and replacing the executable file, make sure to set file permission to writable.
AIOZ dCDN CLI Node has to stop to perform auto update, it should be run with launchctl(macOS) or systemctl(Linux) to start it again after update and at system boot.
./aioznode.exe stats
Note: This command requires a running node, if your node is not on default port 1317, you need to specify it with the flag --endpoint
Response
{
"storage": {
"total_count": 4864,
"total_size": 149967615893
},
"delivery": {
"upstream_speed": 0
}
}
./aioznode.exe reward balance
Note: This command requires a running node, if your node is not on default port 1317, you need to specify it with the flag --endpoint
Response
{
"balance": [
{
"denom": "attoaioz",
"amount": "7218886258271998637"
}
],
"storage_earned": [
{
"denom": "attoaioz",
"amount": "810423534750216148"
}
],
"delivery_earned": [
{
"denom": "attoaioz",
"amount": "7525653191257749557"
}
],
"withdraw": [
{
"denom": "attoaioz",
"amount": "1100000000000000000"
}
],
"delivery_counter": 16521
}
./aioznode.exe reward withdraw --address 0x9A20600a143745404f1AA1C69Bd280f4bD5B4408 --amount 1aioz --priv-key-file privkey.json
This command requires a running node. If your node is not on default port 1317, you need to specify it with the flag --endpoint.
--address the address to withdraw the reward to. The rewards is transferred in AIOZ Chain.
--amount the amount of reward to withdraw. The unit can be aioz or attoaioz. 1 AIOZ equal 10^18 attoaioz. Minimum withdraw is 1 AIOZ. Example values: 1aioz, 1.1aioz, 1100000000000000000attoaioz.
--priv-key-file the private key file which the node started with. If you do not specify the private key file, the node will ask for it from the standard input stream.
Response
{
"txid": "2604F553B62B70136967811B14BA8DB5706A2FA86EF7FD1A6899ECB3EF944D59"
}
.\aioznode.exe keytool recover "rain wing olive skate effort present long myself combine giant vote stay sweet bundle agree lock connect glide absent spider effort attitude enemy mouse" --save-pri-key privkey.json
--save-pri-key write the private key to file.
Response
{
"address": "aioz1k28nzwgrwgzrwfuwsfcqjyvd0r4lfprql2c4uf",
"address_hex": "0xB28F313903720437278E827009118d78eBf48460",
"pub_key": "{\"@type\":\"/ethermint.crypto.v1.ethsecp256k1.PubKey\",\"key\":\"AxSwg94OuvFInQXiZtHevsw7gFKvbZXCqFunK3pMjV0I\"}",
"priv_key": "{\"@type\":\"/ethermint.crypto.v1.ethsecp256k1.PrivKey\",\"key\":\"rdWGOtJ/Uio4SDtubqMUGKn+7doBCCOfegAI9OGMIbE=\"}"
}
The release of the AIOZ dCDN CLI Node implementation enables those with server-specification computers to run AIOZ Nodes at increased levels of productivity.
With the launch of AIOZ W3S imminent, these servers-specs AIOZ dCDN CLI Nodes will contribute even more computing power to the AIOZ Network, resulting in a smooth experience for W3S users and a healthier ecosystem overall.
AIOZ Network is Web3 Infrastructure for AI, Storage and Streaming.
AIOZ empowers a faster, secure and decentralized future. Powered by a decentralized Content Delivery Network (dCDN), AI computation and thousands of individual nodes run globally, AIOZ rewards you for sharing your computational resources for use in storing, transcoding, and streaming digital media content and powering decentralized AI computation.

AI agent sandboxes need external storage for files that outlive the sandbox. Real providers like Modal and E2B mount S3-compatible buckets, AIOZ Storage included.

AIOZ storage can back LangGraph's S3 checkpoint offload tier, but not the whole backend. Here is the real DynamoDB-plus-S3 setup and its credential gap.

AIOZ storage for AI datasets means S3-compatible buckets for training data and model outputs, no native versioning or lifecycle policies. Here is the honest scope.

AIOZ storage for AI workloads means S3-compatible object storage for datasets, checkpoints, and model outputs. No vector database. Here is what is real.

Add AIOZ storage team members through the dashboard's 3-step wizard: name and password, per-bucket permissions, and a one-time credential download.

No Postman collection to import. AIOZ Storage docs show building raw S3 requests by hand, authenticated with AWS Signature and your access grant keys.