near-batch-sender
✓Verified·Scanned 2/18/2026
Batch operations for NEAR tokens - send to multiple recipients, transfer NFTs, claim rewards with cost estimation.
from clawhub.ai·v1f6c73a·7.6 KB·0 installs
Scanned from 1.0.0 at 1f6c73a · Transparency log ↗
$ vett add clawhub.ai/shaiss/near-batch-sender
NEAR Batch Sender Skill
Batch operations for NEAR sends and NFT transfers.
Installation
The skill is installed in ~/.openclaw/skills/near-batch-sender/
Usage
Batch Send NEAR
Create recipients.json:
{
"recipients": [
{"account": "account1.near", "amount": "1.5"},
{"account": "account2.near", "amount": "0.5"}
]
}
Run:
node scripts/batch.js send myaccount.near recipients.json
Batch Transfer NFTs
Create nfts.json:
{
"transfers": [
{"token_id": "123", "receiver": "account1.near", "contract": "nft.example.near"},
{"token_id": "456", "receiver": "account2.near", "contract": "nft.example.near"}
]
}
Run:
node scripts/batch.js nft myaccount.near nfts.json
Estimate Costs
node scripts/batch.js estimate myaccount.near recipients.json send
Requirements
- NEAR CLI installed and configured
- Sufficient balance for all transfers
License
MIT