DeFi & Protocols
Programmable wallets
for protocols.
Embed wallets directly into your protocol. Users can grant scoped delegations so your backend can request signatures within explicit policy controls.
import { KevoAdmin } from
'@kevo-ws/sdk/server'
const admin = new KevoAdmin({
secretKey: process.env.KEVO_SECRET_KEY!,
evmRpcUrl: process.env.EVM_RPC_URL,
})
const txHash = await admin
.delegations.sendTransaction(userId, {
to: '0xRecipient...',
value: '0x2386f26fc10000',
chainId: 8453,
})import { KevoAdmin } from
'@kevo-ws/sdk/server'
const admin = new KevoAdmin({
secretKey: process.env.KEVO_SECRET_KEY!,
evmRpcUrl: process.env.EVM_RPC_URL,
})
const txHash = await admin
.delegations.sendTransaction(userId, {
to: '0xRecipient...',
value: '0x2386f26fc10000',
chainId: 8453,
})API-first wallet primitives.
Wallet creation, signing, sending, sponsorship, and delegation flows are exposed through SDK and API primitives so protocol logic can stay inside your app.
- Server SDK with admin signing
- Embedded EVM and Solana wallets
- Signing and send primitives
Allowed contracts
Per-tx cap
2 ETH
Daily cap
10 ETH
Method allowlist
deposit() · claim() · swap()
Policy-bound delegations.
Users grant scoped delegations with constraints such as chain, contract, expiry, value and transaction limits. Backend requests are checked before signing.
- Contract & method allowlists
- Value and transaction limits
- Revocable and auditable
Webhook confirms every step
Automation primitives for DeFi apps.
Build claim, deposit, vote, or rebalance flows using delegated signing and your own contract logic. Kevo supplies the wallet and policy layer.
- Cron-driven onchain actions
- Governance and DAO flows
- Event-driven hooks into your stack
For protocols
Wallet infrastructure that bends to your contracts.
API-first, policy-bound, audit-ready. The wallet layer your protocol can actually rely on.