near-subaccount
✓Verified·Scanned 2/18/2026
Create, list, delete, and manage NEAR subaccounts with bulk distribution operations.
from clawhub.ai·va74b3eb·8.5 KB·0 installs
Scanned from 1.0.1 at a74b3eb · Transparency log ↗
$ vett add clawhub.ai/shaiss/near-subaccount
NEAR Subaccount Manager Skill
Create and manage NEAR subaccounts from the command line.
Installation
The skill is installed in ~/.openclaw/skills/near-subaccount/
Usage
Create a Subaccount
export NEAR_ACCOUNT="myaccount.near"
node scripts/subaccount.js create wallet
Creates: wallet.myaccount.near
List Subaccounts
node scripts/subaccount.js list myaccount.near
Delete a Subaccount
node scripts/subaccount.js delete wallet.myaccount.near myaccount.near
Bulk Distribute NEAR
Create a subaccounts.json file:
{
"subaccounts": [
"wallet1.myaccount.near",
"wallet2.myaccount.near",
"wallet3.myaccount.near"
]
}
Then distribute:
export NEAR_ACCOUNT="myaccount.near"
node scripts/subaccount.js distribute subaccounts.json 0.1
Requirements
- NEAR CLI installed and configured
- Account with sufficient balance (~0.1 NEAR per subaccount)
License
MIT