@cetusprotocol/dlmm-sdk 0.1.2 → 0.2.0

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/index.d.mts CHANGED
@@ -1036,10 +1036,10 @@ declare class FeeUtils {
1036
1036
 
1037
1037
  type IlmInputOptions = {
1038
1038
  curvature: number;
1039
- initial_price: string;
1040
- max_price: string;
1039
+ initial_price: number;
1040
+ max_price: number;
1041
1041
  bin_step: number;
1042
- total_supply: string;
1042
+ total_supply: number;
1043
1043
  pool_share_percentage: number;
1044
1044
  config: {
1045
1045
  price_curve_points_num: number;
@@ -1049,35 +1049,35 @@ type IlmInputOptions = {
1049
1049
  };
1050
1050
  };
1051
1051
  type Axis = {
1052
- x: string;
1053
- y: string;
1052
+ x: number;
1053
+ y: number;
1054
1054
  };
1055
1055
  type TokenTable = {
1056
- withdrawn: string;
1057
- price: string;
1058
- usdc_in_pool: string;
1056
+ withdrawn: number;
1057
+ price: number;
1058
+ usdc_in_pool: number;
1059
1059
  };
1060
1060
  type IlmInputResult = {
1061
1061
  price_curve: {
1062
1062
  data: Axis[];
1063
- min_y: string;
1064
- max_y: string;
1063
+ min_y: number;
1064
+ max_y: number;
1065
1065
  };
1066
1066
  liquidity_curve: {
1067
1067
  data: Axis[];
1068
- min_y: string;
1069
- max_y: string;
1068
+ min_y: number;
1069
+ max_y: number;
1070
1070
  };
1071
1071
  dlmm_bins: {
1072
1072
  data: Axis[];
1073
- min_y: string;
1074
- max_y: string;
1073
+ min_y: number;
1074
+ max_y: number;
1075
1075
  };
1076
1076
  tokens_table: TokenTable[];
1077
1077
  price_table: TokenTable[];
1078
- initial_fdv: string;
1079
- final_fdv: string;
1080
- usdc_in_pool: string;
1078
+ initial_fdv: number;
1079
+ final_fdv: number;
1080
+ usdc_in_pool: number;
1081
1081
  };
1082
1082
 
1083
1083
  declare class IlmUtils {
package/dist/index.d.ts CHANGED
@@ -1036,10 +1036,10 @@ declare class FeeUtils {
1036
1036
 
1037
1037
  type IlmInputOptions = {
1038
1038
  curvature: number;
1039
- initial_price: string;
1040
- max_price: string;
1039
+ initial_price: number;
1040
+ max_price: number;
1041
1041
  bin_step: number;
1042
- total_supply: string;
1042
+ total_supply: number;
1043
1043
  pool_share_percentage: number;
1044
1044
  config: {
1045
1045
  price_curve_points_num: number;
@@ -1049,35 +1049,35 @@ type IlmInputOptions = {
1049
1049
  };
1050
1050
  };
1051
1051
  type Axis = {
1052
- x: string;
1053
- y: string;
1052
+ x: number;
1053
+ y: number;
1054
1054
  };
1055
1055
  type TokenTable = {
1056
- withdrawn: string;
1057
- price: string;
1058
- usdc_in_pool: string;
1056
+ withdrawn: number;
1057
+ price: number;
1058
+ usdc_in_pool: number;
1059
1059
  };
1060
1060
  type IlmInputResult = {
1061
1061
  price_curve: {
1062
1062
  data: Axis[];
1063
- min_y: string;
1064
- max_y: string;
1063
+ min_y: number;
1064
+ max_y: number;
1065
1065
  };
1066
1066
  liquidity_curve: {
1067
1067
  data: Axis[];
1068
- min_y: string;
1069
- max_y: string;
1068
+ min_y: number;
1069
+ max_y: number;
1070
1070
  };
1071
1071
  dlmm_bins: {
1072
1072
  data: Axis[];
1073
- min_y: string;
1074
- max_y: string;
1073
+ min_y: number;
1074
+ max_y: number;
1075
1075
  };
1076
1076
  tokens_table: TokenTable[];
1077
1077
  price_table: TokenTable[];
1078
- initial_fdv: string;
1079
- final_fdv: string;
1080
- usdc_in_pool: string;
1078
+ initial_fdv: number;
1079
+ final_fdv: number;
1080
+ usdc_in_pool: number;
1081
1081
  };
1082
1082
 
1083
1083
  declare class IlmUtils {