The 0.001% Asymmetric Wedge
Issue B2B Contractor Invoice
Base L2 EIP-3009 settlement is available only when the deployed relayer and asset configuration pass release checks. The current direct-settlement checkout deducts no protocol fee; any future quote must be shown by the live invoice and accepted terms. Non-custodial design intent does not replace deployment, finality or legal review.
Quick Load Template Scenarios
๐ค Autonomous Developer & CI/CD Invoicing
ZERO-HUMAN
Issue B2B invoices automatically upon sprint completion or pull request merge via cURL, npx CLI, or GitHub Actions.
1-Line cURL API:
curl -X POST https://code402.dev/api/invoice/create -H "Content-Type: application/json" -d '{"amountUsdc": 25000, "merchant": "0xYourWallet", "clientName": "Enterprise Corp", "memo": "Sprint Delivery"}'
GitHub Actions CI Workflow (.github/workflows/invoice.yml):
- name: Issue Code402 Settlement Invoice
run: |
curl -s -X POST https://code402.dev/api/invoice/create -H "Content-Type: application/json" -d '{"amountUsdc": 10000, "merchant": "'"$CONTRACTOR_VAULT"'", "clientName": "Acme Inc"}'