Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Funds

Coins attached to a contract call (e.g. inside an execute or transferRemote message).

Definition

type Funds = Record<Denom, string>

Construction

import type { Funds } from "@left-curve/sdk"
 
const funds: Funds = {
  "bridge/usdc": "1000000",
}

Notes

  • Same shape as Coins; the distinct alias signals intent in action signatures.
  • The SDK builds the EIP-712 typed data for funds automatically. See execute.

See also