UNPKG

solana-framework

Version:

solana-framework is solana uni-tools for typescript

74 lines (64 loc) 2.2 kB
/* tslint:disable */ /* eslint-disable */ /** * Jupiter API v6 * The core of [jup.ag](https://jup.ag). Easily get a quote and swap through Jupiter API. ### Rate Limit We update our rate limit from time to time depending on the load of our servers. We recommend running your own instance of the API if you want to have high rate limit, here to learn how to run the [self-hosted API](https://station.jup.ag/docs/apis/self-hosted). ### API Wrapper - Typescript [@jup-ag/api](https://github.com/jup-ag/jupiter-quote-api-node) ### Data types - Public keys are base58 encoded strings - raw data such as Vec<u8\\> are base64 encoded strings * * The version of the OpenAPI document: 6.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * * @export * @interface PlatformFee */ export interface PlatformFee { /** * * @type {string} * @memberof PlatformFee */ amount?: string; /** * * @type {number} * @memberof PlatformFee */ feeBps?: number; } /** * Check if a given object implements the PlatformFee interface. */ export function instanceOfPlatformFee(value: object): boolean { let isInstance = true; return isInstance; } export function PlatformFeeFromJSON(json: any): PlatformFee { return PlatformFeeFromJSONTyped(json, false); } export function PlatformFeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): PlatformFee { if ((json === undefined) || (json === null)) { return json; } return { 'amount': !exists(json, 'amount') ? undefined : json['amount'], 'feeBps': !exists(json, 'feeBps') ? undefined : json['feeBps'], }; } export function PlatformFeeToJSON(value?: PlatformFee | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'amount': value.amount, 'feeBps': value.feeBps, }; }