Sums non-negative eligible balances and allocates a caller-supplied pool by bala
Sums non-negative eligible balances and allocates a caller-supplied pool by balance share. It performs no transfer, wallet lookup, securities analysis, tax withholding, rounding-to-token-decimals or compliance check; output is calculation data only.
Not tested: has real-world effectsour last check, 2026-09-24
0 of 0checks answered this week
n/amedian answer time
$0.002listed price per call
n/aprice it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://prop.halowerk.com/v1/token-dividend
| Category | Company and compliance |
|---|---|
| Provider host | prop.halowerk.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"holders": [
{
"account_id": "holder-a",
"balance": 5000,
"eligible": true
},
{
"account_id": "holder-b",
"balance": 3000,
"eligible": true
},
{
"account_id": "treasury",
"balance": 2000,
"eligible": false
}
],
"total_dividend": 12500
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"holders": {
"items": {
"additionalProperties": false,
"properties": {
"account_id": {
"maxLength": 256,
"minLength": 1,
"type": "string"
},
"balance": {
"maximum": 1e+30,
"minimum": 0,
"type": "number"
},
"eligible": {
"type": "boolean"
}
},
"required": [
"account_id",
"balance",
"eligible"
],
"type": "object"
},
"maxItems": 100000,
"minItems": 1,
"type": "array"
},
"total_dividend": {
"description": "Amount in a caller-selected currency or token unit.",
"maximum": 1000000000000000,
"minimum": 0,
"type": "number"
}
},
"required": [
"total_dividend",
"holders"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}