Accountable API
Accountable Capital integration.
Accountable Capital develops blockchain-based financial verification technology that enables organisations and investors to demonstrate solvency, liquidity, and compliance through transparent, verifiable attestations. The platform combines cryptographic proofs with auditable financial data to enhance trust across Web3 and traditional finance.
Accountable vaults implement the ERC-7540 async redemption pattern with a queue system for processing withdrawal requests. The protocol is primarily deployed on Monad blockchain.
Deposits are synchronous standard ERC-4626 calls. Redemptions first use
requestRedeem and are claimed later with redeem once the strategy emits
RedeemClaimable. Accountable tracks the pending and claimable share amounts
per controller, so the integration allows only one outstanding redemption per
owner. If another authorised actor claims between status checking and broadcast,
read the status again and build a fresh claim transaction.
The public manager only auto-claims self-controlled redemptions to their share
owner. This avoids routing a controller-level aggregate to a custom receiver;
delegated-controller historical requests are discovered but not auto-claimed.
Deposit permissions
The verified Accountable vault source
defines three constructor-selected permission levels. None is
permissionless, KYC verifies an Accountable-signed payload appended to each
call, and Whitelist checks persistent allowed(address) membership.
When the share receiver and controller differ, the vault checks both accounts.
The Hyperithm Delta Neutral deployment uses None. Its strategy capacity,
loan state and minimum amount are separate lifecycle constraints and must not
be reported as KYC.
Links
Notes
No canonical public source repository is linked from the verified deployment
Smart contract source is verified on MonadScan
Fee terms are read from the deployment’s Accountable fee-manager contract
|
Accountable Capital vault offchain metadata. |
Accountable Capital vault support. |
|
Accountable synchronous deposits and asynchronous redemption claims. |
|
Historical Accountable redemption-settlement event reader. |