@sonarwatch/portfolio-plugins 0.14.11 → 0.14.13
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/CHANGELOG.md +1640 -1632
- package/README.md +3 -3
- package/package.json +1 -1
- package/src/plugins/balancer/helpers/pools.js +21 -21
- package/src/plugins/cetus/types.d.ts +109 -0
- package/src/plugins/debridge/airdropFetcher.js +31 -11
- package/src/plugins/debridge/airdropFetcher.js.map +1 -1
- package/src/plugins/debridge/constants.d.ts +4 -1
- package/src/plugins/debridge/constants.js +8 -3
- package/src/plugins/debridge/constants.js.map +1 -1
- package/src/plugins/jupiter/exchange/constants.js +1 -1
- package/src/plugins/kriya/clmmsFetcher.d.ts +3 -0
- package/src/plugins/kriya/clmmsFetcher.js +81 -0
- package/src/plugins/kriya/clmmsFetcher.js.map +1 -0
- package/src/plugins/kriya/constants.d.ts +9 -4
- package/src/plugins/kriya/constants.js +48 -5
- package/src/plugins/kriya/constants.js.map +1 -1
- package/src/plugins/kriya/farmsFetcher.js.map +1 -1
- package/src/plugins/kriya/index.js +4 -0
- package/src/plugins/kriya/index.js.map +1 -1
- package/src/plugins/kriya/lpFetcher.d.ts +3 -0
- package/src/plugins/kriya/lpFetcher.js +80 -0
- package/src/plugins/kriya/lpFetcher.js.map +1 -0
- package/src/plugins/kriya/types/common.d.ts +46 -0
- package/src/plugins/kriya/types/common.js +9 -0
- package/src/plugins/kriya/types/common.js.map +1 -0
- package/src/plugins/kriya/types/farms.d.ts +55 -0
- package/src/plugins/kriya/{types.js → types/farms.js} +2 -1
- package/src/plugins/kriya/types/farms.js.map +1 -0
- package/src/plugins/kriya/types/pools.d.ts +131 -0
- package/src/plugins/kriya/types/pools.js +3 -0
- package/src/plugins/kriya/types/pools.js.map +1 -0
- package/src/plugins/kriya/{types.d.ts → types/vaults.d.ts} +104 -86
- package/src/plugins/kriya/types/vaults.js +3 -0
- package/src/plugins/kriya/types/vaults.js.map +1 -0
- package/src/plugins/kriya/vaultsFetcher.js +67 -59
- package/src/plugins/kriya/vaultsFetcher.js.map +1 -1
- package/src/plugins/kriya/vaultsJob.js +52 -16
- package/src/plugins/kriya/vaultsJob.js.map +1 -1
- package/src/plugins/native-stake/solana/solanaValidatorsJob.js +4 -0
- package/src/plugins/native-stake/solana/solanaValidatorsJob.js.map +1 -1
- package/src/plugins/native-stake/solana/types.d.ts +8 -0
- package/src/plugins/parcl/stakingFetcher.js +10 -24
- package/src/plugins/parcl/stakingFetcher.js.map +1 -1
- package/src/plugins/sushiswap/helpers.js +24 -24
- package/src/plugins/uniswap-v2/helpers.js +22 -22
- package/src/plugins/zeta/airdropFetcher.js +14 -14
- package/src/utils/elementbuilder/LiquidityBuilder.js +1 -1
- package/src/utils/elementbuilder/LiquidityBuilder.js.map +1 -1
- package/src/utils/sei/constants.js +8 -8
- package/src/utils/sei/getQueryBalanceByOwner.js +4 -4
- package/src/plugins/kriya/types.js.map +0 -1
@@ -0,0 +1,80 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
3
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
4
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
5
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
6
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
7
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
8
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
9
|
+
});
|
10
|
+
};
|
11
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
12
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
13
|
+
};
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
15
|
+
const portfolio_core_1 = require("@sonarwatch/portfolio-core");
|
16
|
+
const bignumber_js_1 = __importDefault(require("bignumber.js"));
|
17
|
+
const constants_1 = require("./constants");
|
18
|
+
const clients_1 = require("../../utils/clients");
|
19
|
+
const getOwnedObjects_1 = require("../../utils/sui/getOwnedObjects");
|
20
|
+
const multiGetObjects_1 = require("../../utils/sui/multiGetObjects");
|
21
|
+
const ElementRegistry_1 = require("../../utils/elementbuilder/ElementRegistry");
|
22
|
+
const executor = (owner, cache) => __awaiter(void 0, void 0, void 0, function* () {
|
23
|
+
const client = (0, clients_1.getClientSui)();
|
24
|
+
const lpObjects = yield (0, getOwnedObjects_1.getOwnedObjects)(client, owner, {
|
25
|
+
filter: { StructType: constants_1.lpPositionTypeV2 },
|
26
|
+
});
|
27
|
+
if (!lpObjects)
|
28
|
+
return [];
|
29
|
+
const poolsIds = new Set();
|
30
|
+
const positions = [];
|
31
|
+
lpObjects.forEach((position) => {
|
32
|
+
var _a, _b;
|
33
|
+
if ((_b = (_a = position.data) === null || _a === void 0 ? void 0 : _a.content) === null || _b === void 0 ? void 0 : _b.fields) {
|
34
|
+
poolsIds.add(position.data.content.fields.pool_id);
|
35
|
+
positions.push(position.data.content.fields);
|
36
|
+
}
|
37
|
+
});
|
38
|
+
const poolsById = new Map();
|
39
|
+
const poolsObjects = yield (0, multiGetObjects_1.multiGetObjects)(client, [
|
40
|
+
...new Set(poolsIds),
|
41
|
+
]);
|
42
|
+
poolsObjects.forEach((poolObj) => {
|
43
|
+
var _a, _b;
|
44
|
+
if ((_b = (_a = poolObj.data) === null || _a === void 0 ? void 0 : _a.content) === null || _b === void 0 ? void 0 : _b.fields) {
|
45
|
+
const { keys } = (0, portfolio_core_1.parseTypeString)(poolObj.data.type);
|
46
|
+
if (!keys)
|
47
|
+
return;
|
48
|
+
poolsById.set(poolObj.data.objectId, Object.assign(Object.assign({}, poolObj.data.content.fields), { token_x_mint: keys[0].type, token_y_mint: keys[1].type }));
|
49
|
+
}
|
50
|
+
});
|
51
|
+
const elementRegistry = new ElementRegistry_1.ElementRegistry(portfolio_core_1.NetworkId.sui, constants_1.platformId);
|
52
|
+
positions.forEach((position) => {
|
53
|
+
const pool = poolsById.get(position.pool_id);
|
54
|
+
if (!pool)
|
55
|
+
return;
|
56
|
+
const shares = new bignumber_js_1.default(position.lsp.fields.balance).dividedBy(pool.lsp_supply.fields.value);
|
57
|
+
const tokenAmountX = shares.times(pool.token_x);
|
58
|
+
const tokenAmountY = shares.times(pool.token_y);
|
59
|
+
const element = elementRegistry.addElementLiquidity({
|
60
|
+
label: 'LiquidityPool',
|
61
|
+
});
|
62
|
+
const liquidity = element.addLiquidity();
|
63
|
+
liquidity.addAsset({
|
64
|
+
address: pool.token_x_mint,
|
65
|
+
amount: tokenAmountX,
|
66
|
+
});
|
67
|
+
liquidity.addAsset({
|
68
|
+
address: pool.token_y_mint,
|
69
|
+
amount: tokenAmountY,
|
70
|
+
});
|
71
|
+
});
|
72
|
+
return elementRegistry.getElements(cache);
|
73
|
+
});
|
74
|
+
const fetcher = {
|
75
|
+
id: `${constants_1.platformId}-lp`,
|
76
|
+
networkId: portfolio_core_1.NetworkId.sui,
|
77
|
+
executor,
|
78
|
+
};
|
79
|
+
exports.default = fetcher;
|
80
|
+
//# sourceMappingURL=lpFetcher.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"lpFetcher.js","sourceRoot":"","sources":["../../../../../../packages/plugins/src/plugins/kriya/lpFetcher.ts"],"names":[],"mappings":"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"}
|
@@ -0,0 +1,46 @@
|
|
1
|
+
export type Type = {
|
2
|
+
fields: TypeFields;
|
3
|
+
type: string;
|
4
|
+
};
|
5
|
+
export type TypeFields = {
|
6
|
+
name: string;
|
7
|
+
};
|
8
|
+
export type TickIndex = {
|
9
|
+
fields: BitsFields;
|
10
|
+
type: string;
|
11
|
+
};
|
12
|
+
export type BitsFields = {
|
13
|
+
bits: number;
|
14
|
+
};
|
15
|
+
export type RewardInfo = {
|
16
|
+
fields: RewardInfoFields;
|
17
|
+
type: string;
|
18
|
+
};
|
19
|
+
export type RewardInfoFields = {
|
20
|
+
coins_owed_reward: string;
|
21
|
+
reward_growth_inside_last: string;
|
22
|
+
};
|
23
|
+
export declare enum Dex {
|
24
|
+
cetus = 0,
|
25
|
+
kriya = 1
|
26
|
+
}
|
27
|
+
export type VaultConfig = {
|
28
|
+
id: string;
|
29
|
+
tokenType: string;
|
30
|
+
underlyingPool: string;
|
31
|
+
underlyingDex: Dex;
|
32
|
+
};
|
33
|
+
export type VaultPositionInfo = {
|
34
|
+
id: string;
|
35
|
+
farmId: string;
|
36
|
+
coinType: string;
|
37
|
+
lowerTick: number;
|
38
|
+
upperTick: number;
|
39
|
+
currentTickIndex: number;
|
40
|
+
liquidity: string;
|
41
|
+
totalSupply: string;
|
42
|
+
mintA: string;
|
43
|
+
mintB: string;
|
44
|
+
amountA: string;
|
45
|
+
amountB: string;
|
46
|
+
};
|
@@ -0,0 +1,9 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.Dex = void 0;
|
4
|
+
var Dex;
|
5
|
+
(function (Dex) {
|
6
|
+
Dex[Dex["cetus"] = 0] = "cetus";
|
7
|
+
Dex[Dex["kriya"] = 1] = "kriya";
|
8
|
+
})(Dex || (exports.Dex = Dex = {}));
|
9
|
+
//# sourceMappingURL=common.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../../../../../../packages/plugins/src/plugins/kriya/types/common.ts"],"names":[],"mappings":";;;AA4BA,IAAY,GAGX;AAHD,WAAY,GAAG;IACb,+BAAK,CAAA;IACL,+BAAK,CAAA;AACP,CAAC,EAHW,GAAG,mBAAH,GAAG,QAGd"}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
import { ID } from '../../../utils/sui/structs/id';
|
2
|
+
export type FarmInfo = {
|
3
|
+
tokenXReserve: string;
|
4
|
+
lspSupply: string;
|
5
|
+
protocolFeesPercent: string;
|
6
|
+
createdAt: Date;
|
7
|
+
farmSource: FarmSource;
|
8
|
+
volume: number;
|
9
|
+
packageId: string;
|
10
|
+
farmId: string;
|
11
|
+
objectId: string;
|
12
|
+
poolSource: PoolSource;
|
13
|
+
lspType: string;
|
14
|
+
lpFeesPercent: string;
|
15
|
+
tokenYType: string;
|
16
|
+
data: string;
|
17
|
+
updatedAt: Date;
|
18
|
+
isStable: boolean;
|
19
|
+
tokenXType: string;
|
20
|
+
tokenYReserve: string;
|
21
|
+
tokenX: Token;
|
22
|
+
tokenY: Token;
|
23
|
+
tvl: number;
|
24
|
+
apy: number;
|
25
|
+
feeApy: number;
|
26
|
+
};
|
27
|
+
export declare enum FarmSource {
|
28
|
+
Buck = "buck",
|
29
|
+
Empty = "",
|
30
|
+
Kriya = "kriya"
|
31
|
+
}
|
32
|
+
export declare enum PoolSource {
|
33
|
+
Deepbook = "deepbook",
|
34
|
+
DeepbookV2 = "deepbook_v2",
|
35
|
+
Kriya = "kriya"
|
36
|
+
}
|
37
|
+
export type Token = {
|
38
|
+
coinType: string;
|
39
|
+
ticker: string;
|
40
|
+
tokenName: string;
|
41
|
+
updatedAt: Date;
|
42
|
+
createdAt: Date;
|
43
|
+
decimals: number;
|
44
|
+
iconUrl: string;
|
45
|
+
description: string;
|
46
|
+
price: string;
|
47
|
+
};
|
48
|
+
export type FarmPosition = {
|
49
|
+
farm_id: string;
|
50
|
+
id: ID;
|
51
|
+
lock_until: string;
|
52
|
+
stake_amount: string;
|
53
|
+
stake_weight: string;
|
54
|
+
start_unit: string;
|
55
|
+
};
|
@@ -1,4 +1,5 @@
|
|
1
1
|
"use strict";
|
2
|
+
// Farm
|
2
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
4
|
exports.PoolSource = exports.FarmSource = void 0;
|
4
5
|
var FarmSource;
|
@@ -13,4 +14,4 @@ var PoolSource;
|
|
13
14
|
PoolSource["DeepbookV2"] = "deepbook_v2";
|
14
15
|
PoolSource["Kriya"] = "kriya";
|
15
16
|
})(PoolSource || (exports.PoolSource = PoolSource = {}));
|
16
|
-
//# sourceMappingURL=
|
17
|
+
//# sourceMappingURL=farms.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"farms.js","sourceRoot":"","sources":["../../../../../../../packages/plugins/src/plugins/kriya/types/farms.ts"],"names":[],"mappings":";AAAA,OAAO;;;AA8BP,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,2BAAa,CAAA;IACb,wBAAU,CAAA;IACV,6BAAe,CAAA;AACjB,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB;AAED,IAAY,UAIX;AAJD,WAAY,UAAU;IACpB,mCAAqB,CAAA;IACrB,wCAA0B,CAAA;IAC1B,6BAAe,CAAA;AACjB,CAAC,EAJW,UAAU,0BAAV,UAAU,QAIrB"}
|
@@ -0,0 +1,131 @@
|
|
1
|
+
import { ID } from '../../../utils/sui/structs/id';
|
2
|
+
import { TickIndex, Type } from './common';
|
3
|
+
export type Pool = {
|
4
|
+
id: ID;
|
5
|
+
is_deposit_enabled: boolean;
|
6
|
+
is_stable: boolean;
|
7
|
+
is_swap_enabled: boolean;
|
8
|
+
is_withdraw_enabled: boolean;
|
9
|
+
lp_fee_percent: string;
|
10
|
+
lsp_locked: string;
|
11
|
+
lsp_supply: LspSupply;
|
12
|
+
protocol_fee_percent: string;
|
13
|
+
protocol_fee_x: string;
|
14
|
+
protocol_fee_y: string;
|
15
|
+
scaleX: string;
|
16
|
+
scaleY: string;
|
17
|
+
token_x: string;
|
18
|
+
token_y: string;
|
19
|
+
};
|
20
|
+
export type ExtendedPool = Pool & {
|
21
|
+
token_x_mint: string;
|
22
|
+
token_y_mint: string;
|
23
|
+
};
|
24
|
+
export type LspSupply = {
|
25
|
+
fields: Fields;
|
26
|
+
type: string;
|
27
|
+
};
|
28
|
+
export type Fields = {
|
29
|
+
value: string;
|
30
|
+
};
|
31
|
+
export type LpTokenV2 = {
|
32
|
+
id: ID;
|
33
|
+
lsp: Lsp;
|
34
|
+
pool_id: string;
|
35
|
+
};
|
36
|
+
export type Lsp = {
|
37
|
+
fields: BalanceFields;
|
38
|
+
type: string;
|
39
|
+
};
|
40
|
+
export type BalanceFields = {
|
41
|
+
balance: string;
|
42
|
+
id: ID;
|
43
|
+
};
|
44
|
+
export type ClmmPosition = {
|
45
|
+
fee_growth_inside_x_last: string;
|
46
|
+
fee_growth_inside_y_last: string;
|
47
|
+
fee_rate: string;
|
48
|
+
id: ID;
|
49
|
+
liquidity: string;
|
50
|
+
owed_coin_x: string;
|
51
|
+
owed_coin_y: string;
|
52
|
+
pool_id: string;
|
53
|
+
reward_infos: PositionRewardInfo[];
|
54
|
+
tick_lower_index: TickIndex;
|
55
|
+
tick_upper_index: TickIndex;
|
56
|
+
type_x: Type;
|
57
|
+
type_y: Type;
|
58
|
+
};
|
59
|
+
export type PositionRewardInfo = {
|
60
|
+
fields: PositionRewardInfoFields;
|
61
|
+
type: string;
|
62
|
+
};
|
63
|
+
export type PositionRewardInfoFields = {
|
64
|
+
coins_owed_reward: string;
|
65
|
+
reward_growth_inside_last: string;
|
66
|
+
};
|
67
|
+
export type ClmmPool = {
|
68
|
+
fee_growth_global_x: string;
|
69
|
+
fee_growth_global_y: string;
|
70
|
+
flash_loan_fee_rate: string;
|
71
|
+
id: ID;
|
72
|
+
liquidity: string;
|
73
|
+
max_liquidity_per_tick: string;
|
74
|
+
observation_cardinality: string;
|
75
|
+
observation_cardinality_next: string;
|
76
|
+
observation_index: string;
|
77
|
+
observations: Observation[];
|
78
|
+
protocol_fee_share: string;
|
79
|
+
protocol_fee_x: string;
|
80
|
+
protocol_fee_y: string;
|
81
|
+
protocol_flash_loan_fee_share: string;
|
82
|
+
reserve_x: string;
|
83
|
+
reserve_y: string;
|
84
|
+
reward_infos: RewardInfo[];
|
85
|
+
sqrt_price: string;
|
86
|
+
swap_fee_rate: string;
|
87
|
+
tick_bitmap: Tick;
|
88
|
+
tick_index: TickIndex;
|
89
|
+
tick_spacing: number;
|
90
|
+
ticks: Tick;
|
91
|
+
type_x: Type;
|
92
|
+
type_y: Type;
|
93
|
+
};
|
94
|
+
export type RewardInfo = {
|
95
|
+
fields: RewardInfoFields;
|
96
|
+
type: string;
|
97
|
+
};
|
98
|
+
export type RewardInfoFields = {
|
99
|
+
ended_at_seconds: string;
|
100
|
+
last_update_time: string;
|
101
|
+
reward_coin_type: Type;
|
102
|
+
reward_growth_global: string;
|
103
|
+
reward_per_seconds: string;
|
104
|
+
total_reward: string;
|
105
|
+
total_reward_allocated: string;
|
106
|
+
};
|
107
|
+
export type Observation = {
|
108
|
+
fields: ObservationFields;
|
109
|
+
type: string;
|
110
|
+
};
|
111
|
+
export type ObservationFields = {
|
112
|
+
initialized: boolean;
|
113
|
+
seconds_per_liquidity_cumulative: string;
|
114
|
+
tick_cumulative: TickCumulative;
|
115
|
+
timestamp_s: string;
|
116
|
+
};
|
117
|
+
export type TickCumulative = {
|
118
|
+
fields: TickCumulativeFields;
|
119
|
+
type: string;
|
120
|
+
};
|
121
|
+
export type TickCumulativeFields = {
|
122
|
+
bits: string;
|
123
|
+
};
|
124
|
+
export type Tick = {
|
125
|
+
fields: TickBitmapFields;
|
126
|
+
type: string;
|
127
|
+
};
|
128
|
+
export type TickBitmapFields = {
|
129
|
+
id: ID;
|
130
|
+
size: string;
|
131
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"pools.js","sourceRoot":"","sources":["../../../../../../../packages/plugins/src/plugins/kriya/types/pools.ts"],"names":[],"mappings":""}
|
@@ -1,9 +1,5 @@
|
|
1
|
-
import { ID } from '
|
2
|
-
|
3
|
-
id: string;
|
4
|
-
underlyingPool: string;
|
5
|
-
tokenType: string;
|
6
|
-
};
|
1
|
+
import { ID } from '../../../utils/sui/structs/id';
|
2
|
+
import { RewardInfo, TickIndex, Type } from './common';
|
7
3
|
export type Vault = {
|
8
4
|
clmm_pool_id: string;
|
9
5
|
fee_a: string;
|
@@ -54,23 +50,16 @@ export type TotalSupply = {
|
|
54
50
|
export type TotalSupplyFields = {
|
55
51
|
value: string;
|
56
52
|
};
|
57
|
-
export type
|
58
|
-
id: string;
|
59
|
-
lowerTick: number;
|
60
|
-
upperTick: number;
|
61
|
-
liquidity: string;
|
62
|
-
totalSupply: string;
|
63
|
-
};
|
64
|
-
export type VaultPosition = {
|
53
|
+
export type VaultPositionCetus = {
|
65
54
|
id: ID;
|
66
55
|
name: number[];
|
67
|
-
value:
|
56
|
+
value: ValueCetus;
|
68
57
|
};
|
69
|
-
export type
|
70
|
-
fields:
|
58
|
+
export type ValueCetus = {
|
59
|
+
fields: PositionFieldsCetus;
|
71
60
|
type: string;
|
72
61
|
};
|
73
|
-
export type
|
62
|
+
export type PositionFieldsCetus = {
|
74
63
|
coin_type_a: CoinType;
|
75
64
|
coin_type_b: CoinType;
|
76
65
|
description: string;
|
@@ -79,8 +68,8 @@ export type ValueFields = {
|
|
79
68
|
liquidity: string;
|
80
69
|
name: string;
|
81
70
|
pool: string;
|
82
|
-
tick_lower_index:
|
83
|
-
tick_upper_index:
|
71
|
+
tick_lower_index: TickIndex;
|
72
|
+
tick_upper_index: TickIndex;
|
84
73
|
url: string;
|
85
74
|
};
|
86
75
|
export type CoinType = {
|
@@ -90,66 +79,65 @@ export type CoinType = {
|
|
90
79
|
export type CoinTypeAFields = {
|
91
80
|
name: string;
|
92
81
|
};
|
93
|
-
export type
|
94
|
-
|
82
|
+
export type VaultPositionKriya = {
|
83
|
+
id: ID;
|
84
|
+
name: number[];
|
85
|
+
value: ValueKriya;
|
86
|
+
};
|
87
|
+
export type ValueKriya = {
|
88
|
+
fields: PositionFieldsKriya;
|
95
89
|
type: string;
|
96
90
|
};
|
97
|
-
export type
|
98
|
-
|
91
|
+
export type PositionFieldsKriya = {
|
92
|
+
fee_growth_inside_x_last: string;
|
93
|
+
fee_growth_inside_y_last: string;
|
94
|
+
fee_rate: string;
|
95
|
+
id: ID;
|
96
|
+
liquidity: string;
|
97
|
+
owed_coin_x: string;
|
98
|
+
owed_coin_y: string;
|
99
|
+
pool_id: string;
|
100
|
+
reward_infos: RewardInfo[];
|
101
|
+
tick_lower_index: TickIndex;
|
102
|
+
tick_upper_index: TickIndex;
|
103
|
+
type_x: Type;
|
104
|
+
type_y: Type;
|
99
105
|
};
|
100
|
-
export type
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
106
|
+
export type LeverageVaultInfo = {
|
107
|
+
depositedA: string;
|
108
|
+
apr: string;
|
109
|
+
borrowedBUsd: string;
|
110
|
+
farmStakeReceiptType: string;
|
111
|
+
decimalA: string;
|
112
|
+
createdAt: string;
|
113
|
+
farmSource: string;
|
114
|
+
coinB: string;
|
115
|
+
decimalB: string;
|
116
|
+
tvl: string;
|
117
|
+
borrowedB: string;
|
118
|
+
targetLeverage: string;
|
119
|
+
vaultName: string;
|
120
|
+
depositedAUsd: string;
|
121
|
+
lpSupply: string;
|
122
|
+
vaultSource: string;
|
108
123
|
farmId: string;
|
124
|
+
fees: string;
|
125
|
+
coinA: string;
|
126
|
+
updatedAt: string;
|
127
|
+
id: string;
|
128
|
+
};
|
129
|
+
export type DynFieldPositionVault = {
|
130
|
+
name: Name;
|
131
|
+
bcsName: string;
|
132
|
+
type: string;
|
133
|
+
objectType: string;
|
109
134
|
objectId: string;
|
110
|
-
|
111
|
-
|
112
|
-
lpFeesPercent: string;
|
113
|
-
tokenYType: string;
|
114
|
-
data: string;
|
115
|
-
updatedAt: Date;
|
116
|
-
isStable: boolean;
|
117
|
-
tokenXType: string;
|
118
|
-
tokenYReserve: string;
|
119
|
-
tokenX: Token;
|
120
|
-
tokenY: Token;
|
121
|
-
tvl: number;
|
122
|
-
apy: number;
|
123
|
-
feeApy: number;
|
124
|
-
};
|
125
|
-
export declare enum FarmSource {
|
126
|
-
Buck = "buck",
|
127
|
-
Empty = "",
|
128
|
-
Kriya = "kriya"
|
129
|
-
}
|
130
|
-
export declare enum PoolSource {
|
131
|
-
Deepbook = "deepbook",
|
132
|
-
DeepbookV2 = "deepbook_v2",
|
133
|
-
Kriya = "kriya"
|
134
|
-
}
|
135
|
-
export type Token = {
|
136
|
-
coinType: string;
|
137
|
-
ticker: string;
|
138
|
-
tokenName: string;
|
139
|
-
updatedAt: Date;
|
140
|
-
createdAt: Date;
|
141
|
-
decimals: number;
|
142
|
-
iconUrl: string;
|
143
|
-
description: string;
|
144
|
-
price: string;
|
135
|
+
version: number;
|
136
|
+
digest: string;
|
145
137
|
};
|
146
|
-
export type
|
147
|
-
|
148
|
-
|
149
|
-
lock_until: string;
|
150
|
-
stake_amount: string;
|
151
|
-
stake_weight: string;
|
152
|
-
start_unit: string;
|
138
|
+
export type Name = {
|
139
|
+
type: string;
|
140
|
+
value: number[];
|
153
141
|
};
|
154
142
|
export type StakeReceiptWithPoints = {
|
155
143
|
farm_id: string;
|
@@ -178,26 +166,56 @@ export type StakeReceiptWithPoints = {
|
|
178
166
|
type: string;
|
179
167
|
};
|
180
168
|
};
|
181
|
-
export type
|
182
|
-
|
169
|
+
export type VaultReceipt = {
|
170
|
+
farm_id: string;
|
171
|
+
id: ID;
|
172
|
+
reward_infos: RewardInfos;
|
173
|
+
shares: string;
|
174
|
+
user_points_info: UserPointsInfo;
|
175
|
+
};
|
176
|
+
export type RewardInfos = {
|
177
|
+
fields: RewardInfosFields;
|
178
|
+
type: string;
|
179
|
+
};
|
180
|
+
export type RewardInfosFields = {
|
181
|
+
id: ID;
|
182
|
+
size: string;
|
183
|
+
};
|
184
|
+
export type UserPointsInfo = {
|
185
|
+
fields: UserPointsInfoFields;
|
186
|
+
type: string;
|
187
|
+
};
|
188
|
+
export type UserPointsInfoFields = {
|
189
|
+
claimed_points: string;
|
190
|
+
index: string;
|
191
|
+
updated_at: string;
|
192
|
+
};
|
193
|
+
export type VaultData = {
|
194
|
+
lpPriceHigh: string;
|
183
195
|
apr: string;
|
184
|
-
|
185
|
-
farmStakeReceiptType: string;
|
186
|
-
decimalA: string;
|
187
|
-
createdAt: string;
|
188
|
-
farmSource: string;
|
196
|
+
createdAt: Date;
|
189
197
|
coinB: string;
|
190
|
-
decimalB: string;
|
191
198
|
tvl: string;
|
192
|
-
borrowedB: string;
|
193
|
-
targetLeverage: string;
|
194
199
|
vaultName: string;
|
195
|
-
|
200
|
+
lastRebalance: string;
|
196
201
|
lpSupply: string;
|
197
202
|
vaultSource: string;
|
198
203
|
farmId: string;
|
199
204
|
fees: string;
|
200
205
|
coinA: string;
|
201
|
-
|
206
|
+
lpPriceLow: string;
|
207
|
+
updatedAt: Date;
|
208
|
+
currentLpPrice: string;
|
202
209
|
id: string;
|
210
|
+
rebalanceCap: string;
|
211
|
+
pool: Pool;
|
212
|
+
};
|
213
|
+
export type Pool = {
|
214
|
+
tokenYDecimals: number;
|
215
|
+
vaultCoinType: string;
|
216
|
+
vaultType: string;
|
217
|
+
tokenXType: string;
|
218
|
+
tokenYType: string;
|
219
|
+
poolId: string;
|
220
|
+
tokenXDecimals: number;
|
203
221
|
};
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"vaults.js","sourceRoot":"","sources":["../../../../../../../packages/plugins/src/plugins/kriya/types/vaults.ts"],"names":[],"mappings":""}
|