UNPKG

@swingby-protocol/sdk

Version:

An implementation of the Swingby standard development kit for NodeJS and JavaScript.

6 lines (4 loc) 245 B
export const SKYBRIDGE_BRIDGES = ['btc_erc', 'btc_bep20'] as const; export type SkybridgeBridge = typeof SKYBRIDGE_BRIDGES[number]; export const isSkybridgeBridge = (value: any): value is SkybridgeBridge => SKYBRIDGE_BRIDGES.includes(value);