UNPKG

hapi-ton-sdk

Version:

SDK for managing HAPI attestations on TON network

17 lines (15 loc) 333 B
interface Config { apiStaging: string; apiProduction: string; ton: Readonly<{ score: string; nodeUrl: string; }>; tonTestnet: Readonly<{ score: string; nodeUrl: string; }>; tonApiPath: (hash: string) => string; } declare const config: Readonly<Config>; export { config };