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.

vault.ts
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,
  })
vault.ts
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
Server API
Delegation policy
Vault

Allowed contracts

VaultRouterReward

Per-tx cap

2 ETH

Daily cap

10 ETH

Method allowlist

deposit() · claim() · swap()

Active · expires in 30 days

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
Delegations
Auto-compound flow
Hourly
1User deposits via your UI
2Kevo signs approval + deposit
3Cron claims rewards hourly
4Auto-swap to base asset
5Re-deposit to vault

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
Webhook events

For protocols

Wallet infrastructure that bends to your contracts.

API-first, policy-bound, audit-ready. The wallet layer your protocol can actually rely on.