UNPKG

@swingby-protocol/sdk

Version:

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

8 lines (6 loc) 341 B
import type { SkybridgeMode } from '../../modes'; import type { SkybridgeParams } from '../../common-params'; import { getDetails } from '../../generic-details'; export const getFloatDetails = async <M extends SkybridgeMode>( params: Pick<SkybridgeParams<'pool', M>, 'context' | 'hash'>, ) => getDetails({ ...params, resource: 'pool' });