@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
19 lines (18 loc) • 378 B
TypeScript
import type { ReactNode } from "react";
type Chain = {
id: number;
name: string;
logo: ReactNode;
rpcUrls?: {
alchemy?: {
http?: string[];
webSocket?: string[];
};
infura?: {
http?: string[];
webSocket?: string[];
};
};
};
export declare const chainConfigs: Chain[];
export {};