Skip to main content

Veil

Use viem-style calls to use any Aleo wallet or SDK.

Get StartedGitHub
import { createPublicClient, http } from '@provablehq/veil-core'

const client = createPublicClient({
  transport: http('https://api.provable.com/v2'),
})

const balance = await client.getBalance({
  address: 'aleo1...',
})