@ref-finance/ref-sdk 1.4.3 → 1.4.4-beta.1-development

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -7,8 +7,8 @@ export interface TokenMetadata {
7
7
  decimals: number;
8
8
  icon: string;
9
9
  }
10
- export declare type PoolKind = 'SIMPLE_POOL' | 'STABLE_SWAP' | 'RATED_SWAP';
11
- export declare type StablePoolKind = 'STABLE_SWAP' | 'RATED_SWAP';
10
+ export declare type PoolKind = 'SIMPLE_POOL' | 'STABLE_SWAP' | 'RATED_SWAP' | 'DEGEN_SWAP';
11
+ export declare type StablePoolKind = 'STABLE_SWAP' | 'RATED_SWAP' | 'DEGEN_SWAP';
12
12
  export interface PoolRPCView {
13
13
  id: number;
14
14
  token_account_ids: string[];
@@ -5,6 +5,9 @@ export declare const getRatedPoolDetail: ({ id }: {
5
5
  export declare const getUnRatedPoolDetail: ({ id }: {
6
6
  id: string | number;
7
7
  }) => Promise<any>;
8
+ export declare const getDegenPoolDetail: ({ id }: {
9
+ id: string | number;
10
+ }) => Promise<any>;
8
11
  export declare const getStablePools: (stablePools: Pool[]) => Promise<any[]>;
9
12
  export declare const getPool: (id: number) => Promise<Pool>;
10
13
  export declare const getPoolByIds: (ids: number[]) => Promise<Pool[]>;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.4.3",
2
+ "version": "1.4.4-beta.1-development",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",