Use Cases
- Bulk submission: Submit up to 100 contracts in one request, for example every contract of a protocol on a new chain.
- ABI refresh: Resubmit an updated ABI after an upgrade instead of filling in the form again.
- CI integration: Submit from a deploy pipeline and poll for the result, using idempotency keys so retries are safe.
- Status tracking: List your submissions and filter by chain, project, contract, or status.
Submit Contracts for Decoding
Submit a batch of contracts with their ABIs and get a per-item result.
List Contract Submissions
Track the status of the submissions made by your account.
How Decoding Submissions Work
- You submit a contract with its ABI. Each item in the batch is validated and stored independently, so one bad item does not fail the others.
- Accepted items start as
pending. Dune’s decoding pipeline picks them up within a minute and moves them toapproved,rejected, orneeds_manual_review. - Approved submissions are processed and decoded tables appear under
<project_name>_<blockchain>.<contract_name>_evt_*and_call_*in the Data Explorer, after which the status becomesprocessed.
Some submissions always go to manual review. ABI upgrades (
submission_type: "upgrade"), renames, deletions, and submissions to protected namespaces are queued for a Dune team member to review rather than processed automatically. They will show needs_manual_review until then.Requirements
- Attributed to you. Submissions are attributed to the Dune user who created the API key, the same way the form attributes them to the logged-in user. For a team’s key that user must still be a member of the team.
- Read/Write scope to submit, Read scope to list.
- Paid plan for advanced submissions. Free plans can submit new contracts for one blockchain per request. Batches spanning multiple blockchains, and resubmissions (
upgrade,rename,delete,other), require a paid plan: the team’s plan for a team API key.