UNPKG

@swingby-protocol/sdk

Version:

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

6 lines (4 loc) 226 B
const RESOURCES = ['swap', 'pool', 'withdrawal'] as const; export type SkybridgeResource = typeof RESOURCES[number]; export const isSkybridgeResource = (value: any): value is SkybridgeResource => RESOURCES.includes(value);