Integration Guides
Vault-by-vault guides for integrating Plume Vaults mint and redemption flows on EVM chains and Solana.
These guides are organized one vault per page. Use the Actions API path first for app, wallet, and backend transaction-builder integrations. Use the direct contract path only when your integration needs lower-level control over quoting, compliance, approvals, and redemption state.
Outline
Choose a vault guide
| Guide | Slug | Chains | Deposit |
|---|---|---|---|
| nTBILL Integration Plume Treasury Vault | nest-treasury-vault | ||
| nALPHA Integration Plume Alpha Vault | nest-alpha-vault | ||
| nBASIS Integration Plume Basis Vault | nest-basis-vault | ||
| nOPAL Integration Plume BlackOpal LiquidStone II Vault | nest-opal-vault | ||
| nCREDIT Integration Plume Credit Vault | nest-credit-vault | ||
| nWISDOM Integration Plume Wisdom Vault | nest-wisdom-vault | ||
| nACRDX Integration Plume ACRDX Vault | nest-acrdx-vault | ||
| nLCRD Integration Plume Liquid Credit Vault | nest-lcrd-vault | ||
| nFXCF Integration Plume FalconX CLO Vault | nest-falconx-clo | ||
| nCLOA Integration Plume BlackRock iShares AAA CLO Active ETF Vault | nest-cloa-vault | ||
| nAXI Integration Plume AXI Vault | nest-axi-vault |
Recommended integration paths
| Path | Best for | Primary interface | Notes |
|---|---|---|---|
| EVM Actions API | Apps, wallets, custodians, backend transaction builders | https://api.nest.credit/v1/actions | Builds same-chain EVM transaction bundles for supported vault, chain, and asset combinations. |
| Direct EVM contracts | Protocol integrations and advanced backend flows | ERC-20, NestVaultPredicateProxy, NestVault | Requires the integrator to handle compliance, quoting, allowance, calldata, simulation, and redemption lifecycle. |
| Solana transaction builder | Solana wallets and apps | https://api.nest.credit/v1/solana | Returns base64 Solana transactions for the user's wallet to sign and broadcast. |
The EVM Actions API OpenAPI JSON is available at https://api.nest.credit/v1/actions/docs.
Common implementation rules
- Treat every API amount as a raw integer amount, not a decimal UI amount.
- Use the decimals returned by the API when rendering user-facing amounts.
- Execute returned EVM transactions in order.
- Never assume an approval transaction is present. If allowance is already sufficient, the API can omit it.
- Re-quote close to the time the user signs.
- User-facing apps should keep API simulation enabled.
- For direct EVM integrations, validate the selected vault, chain, asset, and compliance message before submitting transactions.