UNPKG

freelii-passkey-kit

Version:

A helper library for creating and using smart wallet accounts on the Stellar blockchain.

14 lines (13 loc) 418 B
import { Client as SacClient } from 'sac-sdk'; import { PasskeyBase } from "./base"; import type { Server } from '@stellar/stellar-sdk/minimal/rpc'; export declare class SACClient extends PasskeyBase { rpc: Server; rpcUrl: string; networkPassphrase: string; constructor(options: { networkPassphrase: string; rpcUrl: string; }); getSACClient(SACContractId: string): SacClient; }