Install
openclaw skills install near-batch-senderBatch operations for NEAR tokens - send to multiple recipients, transfer NFTs, claim rewards with cost estimation.
openclaw skills install near-batch-senderBatch operations for NEAR sends, NFT transfers, and claims with cost estimation.
This skill provides batch operations for sending NEAR tokens, transferring NFTs, and claiming rewards. Includes cost estimation before execution.
near-batch send <sender_account> <file.json>Batch send NEAR to multiple recipients.
JSON format:
{
"recipients": [
{"account": "account1.near", "amount": "1.5"},
{"account": "account2.near", "amount": "0.5"}
]
}
near-batch nft <sender_account> <file.json>Batch transfer NFTs.
JSON format:
{
"transfers": [
{"token_id": "123", "receiver": "account1.near", "contract": "nft.near"},
{"token_id": "456", "receiver": "account2.near", "contract": "nft.near"}
]
}
near-batch estimate <sender_account> <file.json> [type]Estimate gas costs for a batch operation.
Parameters:
type - Operation type: send, nft, claim (default: send)near-batch claim <file.json>Batch claim rewards/airdrops.