UNPKG

@baking-bad/tezos-etherlink-bridge-sdk

Version:

SDK designed for building token bridge applications between Tezos (L1) and Etherlink (L2)

11 lines (10 loc) 266 B
interface WebSocketAutoUpdateOptions { type: 'websocket'; webSocketApiBaseUrl: string; startImmediately?: boolean; } export interface DipDupBridgeDataProviderOptions { baseUrl: string; autoUpdate: WebSocketAutoUpdateOptions | false; } export {};