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

Actions Overview

Core actions are framework-agnostic APIs from @ivem/kit.

Usage

import { connect, sendTransaction } from '@ivem/kit'
 
await connect(config)
await sendTransaction(config, {
  to: 'receiver',
  amount: '1.00000000',
  memo: 'Payment from app',
})

Parameters

All actions accept config as the first argument.

Return Type

Each action returns a typed value or promise result based on its behavior.

Examples

Related