@augustdigital/sdk 4.14.0-alpha.2 → 4.14.0-alpha.4
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/lib/core/constants.adapters.d.ts +111 -83
- package/lib/core/constants.core.d.ts +66 -59
- package/lib/core/constants.d.ts +76 -68
- package/lib/core/constants.vaults.d.ts +48 -3
- package/lib/core/constants.web3.d.ts +19 -18
- package/lib/core/core.helpers.d.ts +33 -8
- package/lib/core/helpers.adapters.d.ts +7 -2
- package/lib/core/helpers.core.d.ts +33 -8
- package/lib/core/helpers.signer.d.ts +6 -2
- package/lib/core/helpers.vaults.d.ts +34 -14
- package/lib/core/helpers.web3.d.ts +85 -19
- package/lib/core/read.actions.d.ts +4 -1
- package/lib/core/web3.helpers.d.ts +85 -19
- package/lib/core/write.actions.d.ts +8 -5
- package/lib/main.d.ts +4 -0
- package/lib/main.js +3 -0
- package/lib/main.js.map +1 -1
- package/lib/modules/vaults/constants.d.ts +91 -47
- package/lib/modules/vaults/getters.js +4 -3
- package/lib/modules/vaults/getters.js.map +1 -1
- package/lib/modules/vaults/main.d.ts +4 -0
- package/lib/modules/vaults/main.js +11 -0
- package/lib/modules/vaults/main.js.map +1 -1
- package/lib/modules/vaults/utils.js +5 -0
- package/lib/modules/vaults/utils.js.map +1 -1
- package/lib/modules/vaults/vault.actions.d.ts +13 -4
- package/lib/services/subgraph/vaults.js +1 -0
- package/lib/services/subgraph/vaults.js.map +1 -1
- package/lib/types/subgraph.d.ts +1 -0
- package/lib/types/vaults.d.ts +2 -0
- package/lib/types/vaults.js.map +1 -1
- package/lib/types/webserver.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { IAddress, IVaultAdapterConfig } from '../types';
|
|
2
|
-
export declare function getVaultAdapterConfig(
|
|
2
|
+
export declare function getVaultAdapterConfig(
|
|
3
|
+
vaultAddress: IAddress,
|
|
4
|
+
): IVaultAdapterConfig | undefined;
|
|
3
5
|
export declare function vaultHasAdapter(vaultAddress: IAddress): boolean;
|
|
4
|
-
export declare function getVaultDepositTokens(
|
|
6
|
+
export declare function getVaultDepositTokens(
|
|
7
|
+
vaultAddress: IAddress,
|
|
8
|
+
underlyingToken: IAddress,
|
|
9
|
+
): IAddress[];
|
|
@@ -1,23 +1,48 @@
|
|
|
1
1
|
import { INormalizedNumber } from '../types';
|
|
2
|
-
export declare function toNormalizedBn(
|
|
2
|
+
export declare function toNormalizedBn(
|
|
3
|
+
value: string | bigint | number,
|
|
4
|
+
decimals?: number | BigInt,
|
|
5
|
+
): INormalizedNumber;
|
|
3
6
|
export declare function getFallbackRpcUrls(chainId: number): string[];
|
|
4
7
|
export declare const filterOutBySize: (usdAmount: number) => boolean;
|
|
5
8
|
export declare function toTitleCase(str: string, type?: 'camel'): string;
|
|
6
9
|
export declare function truncate(s: string, amount?: number): string;
|
|
7
|
-
export declare function round(
|
|
10
|
+
export declare function round(
|
|
11
|
+
value: number | string | bigint,
|
|
12
|
+
options?: {
|
|
8
13
|
showing?: number | 'all';
|
|
9
14
|
usd?: boolean;
|
|
10
15
|
decimals?: number;
|
|
11
|
-
}
|
|
12
|
-
|
|
16
|
+
},
|
|
17
|
+
): string;
|
|
18
|
+
export declare function loanStateToReadable(
|
|
19
|
+
loanState: number | bigint,
|
|
20
|
+
):
|
|
21
|
+
| 'PREAPPROVED'
|
|
22
|
+
| 'FUNDING_REQUIRED'
|
|
23
|
+
| 'FUNDED'
|
|
24
|
+
| 'ACTIVE'
|
|
25
|
+
| 'CANCELLED'
|
|
26
|
+
| 'MATURED'
|
|
27
|
+
| 'CLOSED';
|
|
13
28
|
export declare function dateToUnix(date: Date): number;
|
|
14
29
|
export declare function unixToDate(epoch: number): Date;
|
|
15
30
|
export declare function isEarlierThanNow(startTime: Date): boolean;
|
|
16
31
|
export declare function daysAgo(days: number): Date;
|
|
17
32
|
export declare function prepareDateForDb(date: string | Date): string;
|
|
18
|
-
export declare function orderObjArrByDate(
|
|
33
|
+
export declare function orderObjArrByDate(
|
|
34
|
+
objectArray: any[],
|
|
35
|
+
options?: {
|
|
19
36
|
key?: string;
|
|
20
37
|
order?: 'asc' | 'desc';
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
export declare function
|
|
38
|
+
},
|
|
39
|
+
): any[];
|
|
40
|
+
export declare function calculateWeights(
|
|
41
|
+
data?: Array<any>,
|
|
42
|
+
weightProperty?: string,
|
|
43
|
+
): any[];
|
|
44
|
+
export declare function calculateWeightedAverage(
|
|
45
|
+
data?: Array<any>,
|
|
46
|
+
valueProperty?: string,
|
|
47
|
+
weightProperty?: string,
|
|
48
|
+
): any;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { Signer, Wallet } from 'ethers';
|
|
2
2
|
export declare function isViemWalletClient(signer: any): boolean;
|
|
3
|
-
export declare function viemToEthersSigner(
|
|
4
|
-
|
|
3
|
+
export declare function viemToEthersSigner(
|
|
4
|
+
walletClient: any,
|
|
5
|
+
): Promise<Signer | Wallet>;
|
|
6
|
+
export declare function normalizeSigner(
|
|
7
|
+
signer: Signer | Wallet | any,
|
|
8
|
+
): Promise<Signer | Wallet>;
|
|
5
9
|
export type CompatibleSigner = Signer | Wallet | any;
|
|
@@ -1,16 +1,36 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
IAddress,
|
|
3
|
+
IContractRunner,
|
|
4
|
+
ITokenizedVault,
|
|
5
|
+
IVaultVersion,
|
|
6
|
+
} from '../types';
|
|
2
7
|
export declare const isBadVault: (address?: string) => boolean;
|
|
3
|
-
export declare function getVaultVersion(
|
|
4
|
-
|
|
8
|
+
export declare function getVaultVersion(
|
|
9
|
+
vault: string,
|
|
10
|
+
): IVaultVersion | undefined;
|
|
11
|
+
export declare function getVaultVersionV2(
|
|
12
|
+
vault: ITokenizedVault,
|
|
13
|
+
): IVaultVersion | undefined;
|
|
5
14
|
export declare const REWARD_DISTRIBUTOR_ADDRESS: (chainId: number) => string[];
|
|
6
|
-
export declare const AVAX_PRICE_FEED_ADDRESS: (
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
export declare const AVAX_PRICE_FEED_ADDRESS: (
|
|
16
|
+
chainId: number,
|
|
17
|
+
) => '0xFF3EEb22B5E3dE6e705b44749C2559d704923FD7' | '0x';
|
|
18
|
+
export declare function getVaultSymbol(
|
|
19
|
+
vault: IAddress,
|
|
20
|
+
provider: IContractRunner,
|
|
21
|
+
): Promise<string>;
|
|
22
|
+
export declare const SUBGRAPH_POOL_URLS: (
|
|
23
|
+
apiKey: string,
|
|
24
|
+
chainId?: number,
|
|
25
|
+
pool?: IAddress,
|
|
26
|
+
) =>
|
|
27
|
+
| {
|
|
28
|
+
1: string;
|
|
29
|
+
8453: string;
|
|
30
|
+
43114: string;
|
|
31
|
+
42161: string;
|
|
32
|
+
56: string;
|
|
33
|
+
}
|
|
34
|
+
| {
|
|
35
|
+
999: string;
|
|
36
|
+
};
|
|
@@ -1,29 +1,95 @@
|
|
|
1
1
|
import { Contract, ethers, Interface, InterfaceAbi } from 'ethers';
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
IAddress,
|
|
4
|
+
IChainId,
|
|
5
|
+
IContractRunner,
|
|
6
|
+
IExplorerType,
|
|
7
|
+
IInfuraOptions,
|
|
8
|
+
} from '../types';
|
|
3
9
|
export declare const determineBlockCutoff: (chain: number) => 120000 | 150000;
|
|
4
|
-
export declare const determineBlockSkipInternal: (
|
|
10
|
+
export declare const determineBlockSkipInternal: (
|
|
11
|
+
chain: number,
|
|
12
|
+
) => 8000 | 50000;
|
|
5
13
|
export declare const getChainId: (provider: IContractRunner) => Promise<number>;
|
|
6
|
-
export declare function createContract({
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
14
|
+
export declare function createContract({
|
|
15
|
+
provider,
|
|
16
|
+
address,
|
|
17
|
+
abi,
|
|
18
|
+
}: {
|
|
19
|
+
address: string;
|
|
20
|
+
provider: IContractRunner;
|
|
21
|
+
abi: Interface | InterfaceAbi;
|
|
10
22
|
}): Contract;
|
|
11
23
|
export declare const createProvider: (rpcUrl: string) => any;
|
|
12
|
-
export declare const getInfuraProvider: (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export declare const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
24
|
+
export declare const getInfuraProvider: (
|
|
25
|
+
infura: IInfuraOptions,
|
|
26
|
+
) => ethers.JsonRpcProvider;
|
|
27
|
+
export declare const explorerLink: (
|
|
28
|
+
hex: IAddress,
|
|
29
|
+
chain: IChainId,
|
|
30
|
+
type: IExplorerType,
|
|
31
|
+
) => string;
|
|
32
|
+
export declare const getDecimals: (
|
|
33
|
+
provider: IContractRunner,
|
|
34
|
+
address: IAddress,
|
|
35
|
+
) => Promise<any>;
|
|
36
|
+
export declare const getReceiptTokenAddress: (
|
|
37
|
+
provider: IContractRunner,
|
|
38
|
+
address: IAddress,
|
|
39
|
+
) => Promise<any>;
|
|
40
|
+
export declare const getSymbol: (
|
|
41
|
+
provider: IContractRunner,
|
|
42
|
+
address: IAddress | undefined,
|
|
43
|
+
) => Promise<any>;
|
|
44
|
+
export declare function getTokenMetadata(
|
|
45
|
+
provider: IContractRunner,
|
|
46
|
+
asset: IAddress,
|
|
47
|
+
meta: ('symbol' | 'decimals' | 'name' | 'totalSupply')[],
|
|
48
|
+
): Promise<any[]>;
|
|
49
|
+
export declare const getManagementFeePercent: (
|
|
50
|
+
provider: IContractRunner,
|
|
51
|
+
address: IAddress,
|
|
52
|
+
) => Promise<number>;
|
|
53
|
+
export declare function simulateTransaction(
|
|
54
|
+
provider: IContractRunner,
|
|
55
|
+
abi: string[] | any,
|
|
56
|
+
functionName: string,
|
|
57
|
+
options?: {
|
|
20
58
|
args?: (string | number | bigint)[][];
|
|
21
59
|
from?: string;
|
|
22
60
|
to?: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
61
|
+
},
|
|
62
|
+
): Promise<boolean | ethers.Result>;
|
|
63
|
+
export declare function checkAddress(
|
|
64
|
+
address: string,
|
|
65
|
+
logger?: any,
|
|
66
|
+
type?: 'wallet' | 'contract',
|
|
67
|
+
): boolean;
|
|
25
68
|
type ILoanOracleFeeCategories = 'LOAN.REPAY.INTERESTS';
|
|
26
|
-
export declare function getLoanOracleFeeRate(
|
|
27
|
-
|
|
28
|
-
|
|
69
|
+
export declare function getLoanOracleFeeRate(
|
|
70
|
+
provider: IContractRunner,
|
|
71
|
+
category_id: ILoanOracleFeeCategories,
|
|
72
|
+
address: IAddress,
|
|
73
|
+
chainId?: number,
|
|
74
|
+
): Promise<number>;
|
|
75
|
+
export declare function getHistoricalContractData(
|
|
76
|
+
provider: IContractRunner,
|
|
77
|
+
contractAddress: IAddress,
|
|
78
|
+
abi: Interface | InterfaceAbi,
|
|
79
|
+
methodName: string,
|
|
80
|
+
args: (string | number | bigint | boolean)[],
|
|
81
|
+
startBlock: number,
|
|
82
|
+
endBlock: number,
|
|
83
|
+
blockInterval?: number,
|
|
84
|
+
): Promise<any[]>;
|
|
85
|
+
export declare function getHistoricalContractDataByDate(
|
|
86
|
+
provider: IContractRunner,
|
|
87
|
+
contractAddress: IAddress,
|
|
88
|
+
abi: Interface | InterfaceAbi,
|
|
89
|
+
methodName: string,
|
|
90
|
+
args: (string | number | bigint | boolean)[],
|
|
91
|
+
startDate: string | number,
|
|
92
|
+
endDate: string | number,
|
|
93
|
+
intervalHours?: number,
|
|
94
|
+
): Promise<any[]>;
|
|
29
95
|
export {};
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import { IContractWriteOptions } from './write.actions';
|
|
2
2
|
import { IContractRunner } from '../types';
|
|
3
|
-
export declare function allowance(
|
|
3
|
+
export declare function allowance(
|
|
4
|
+
signer: IContractRunner,
|
|
5
|
+
options: IContractWriteOptions,
|
|
6
|
+
): Promise<import('..').INormalizedNumber>;
|
|
@@ -1,29 +1,95 @@
|
|
|
1
1
|
import { Contract, ethers, Interface, InterfaceAbi } from 'ethers';
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
IAddress,
|
|
4
|
+
IChainId,
|
|
5
|
+
IContractRunner,
|
|
6
|
+
IExplorerType,
|
|
7
|
+
IInfuraOptions,
|
|
8
|
+
} from '../types';
|
|
3
9
|
export declare const determineBlockCutoff: (chain: number) => 120000 | 150000;
|
|
4
|
-
export declare const determineBlockSkipInternal: (
|
|
10
|
+
export declare const determineBlockSkipInternal: (
|
|
11
|
+
chain: number,
|
|
12
|
+
) => 8000 | 50000;
|
|
5
13
|
export declare const getChainId: (provider: IContractRunner) => Promise<number>;
|
|
6
|
-
export declare function createContract({
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
14
|
+
export declare function createContract({
|
|
15
|
+
provider,
|
|
16
|
+
address,
|
|
17
|
+
abi,
|
|
18
|
+
}: {
|
|
19
|
+
address: string;
|
|
20
|
+
provider: IContractRunner;
|
|
21
|
+
abi: Interface | InterfaceAbi;
|
|
10
22
|
}): Contract;
|
|
11
23
|
export declare const createProvider: (rpcUrl: string) => any;
|
|
12
|
-
export declare const getInfuraProvider: (
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
export declare const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
24
|
+
export declare const getInfuraProvider: (
|
|
25
|
+
infura: IInfuraOptions,
|
|
26
|
+
) => ethers.JsonRpcProvider;
|
|
27
|
+
export declare const explorerLink: (
|
|
28
|
+
hex: IAddress,
|
|
29
|
+
chain: IChainId,
|
|
30
|
+
type: IExplorerType,
|
|
31
|
+
) => string;
|
|
32
|
+
export declare const getDecimals: (
|
|
33
|
+
provider: IContractRunner,
|
|
34
|
+
address: IAddress,
|
|
35
|
+
) => Promise<any>;
|
|
36
|
+
export declare const getReceiptTokenAddress: (
|
|
37
|
+
provider: IContractRunner,
|
|
38
|
+
address: IAddress,
|
|
39
|
+
) => Promise<any>;
|
|
40
|
+
export declare const getSymbol: (
|
|
41
|
+
provider: IContractRunner,
|
|
42
|
+
address: IAddress | undefined,
|
|
43
|
+
) => Promise<any>;
|
|
44
|
+
export declare function getTokenMetadata(
|
|
45
|
+
provider: IContractRunner,
|
|
46
|
+
asset: IAddress,
|
|
47
|
+
meta: ('symbol' | 'decimals' | 'name' | 'totalSupply')[],
|
|
48
|
+
): Promise<any[]>;
|
|
49
|
+
export declare const getManagementFeePercent: (
|
|
50
|
+
provider: IContractRunner,
|
|
51
|
+
address: IAddress,
|
|
52
|
+
) => Promise<number>;
|
|
53
|
+
export declare function simulateTransaction(
|
|
54
|
+
provider: IContractRunner,
|
|
55
|
+
abi: string[] | any,
|
|
56
|
+
functionName: string,
|
|
57
|
+
options?: {
|
|
20
58
|
args?: (string | number | bigint)[][];
|
|
21
59
|
from?: string;
|
|
22
60
|
to?: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
61
|
+
},
|
|
62
|
+
): Promise<boolean | ethers.Result>;
|
|
63
|
+
export declare function checkAddress(
|
|
64
|
+
address: string,
|
|
65
|
+
logger?: any,
|
|
66
|
+
type?: 'wallet' | 'contract',
|
|
67
|
+
): boolean;
|
|
25
68
|
type ILoanOracleFeeCategories = 'LOAN.REPAY.INTERESTS';
|
|
26
|
-
export declare function getLoanOracleFeeRate(
|
|
27
|
-
|
|
28
|
-
|
|
69
|
+
export declare function getLoanOracleFeeRate(
|
|
70
|
+
provider: IContractRunner,
|
|
71
|
+
category_id: ILoanOracleFeeCategories,
|
|
72
|
+
address: IAddress,
|
|
73
|
+
chainId?: number,
|
|
74
|
+
): Promise<number>;
|
|
75
|
+
export declare function getHistoricalContractData(
|
|
76
|
+
provider: IContractRunner,
|
|
77
|
+
contractAddress: IAddress,
|
|
78
|
+
abi: Interface | InterfaceAbi,
|
|
79
|
+
methodName: string,
|
|
80
|
+
args: (string | number | bigint | boolean)[],
|
|
81
|
+
startBlock: number,
|
|
82
|
+
endBlock: number,
|
|
83
|
+
blockInterval?: number,
|
|
84
|
+
): Promise<any[]>;
|
|
85
|
+
export declare function getHistoricalContractDataByDate(
|
|
86
|
+
provider: IContractRunner,
|
|
87
|
+
contractAddress: IAddress,
|
|
88
|
+
abi: Interface | InterfaceAbi,
|
|
89
|
+
methodName: string,
|
|
90
|
+
args: (string | number | bigint | boolean)[],
|
|
91
|
+
startDate: string | number,
|
|
92
|
+
endDate: string | number,
|
|
93
|
+
intervalHours?: number,
|
|
94
|
+
): Promise<any[]>;
|
|
29
95
|
export {};
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { IAddress } from '../types';
|
|
2
2
|
import { Signer, Wallet } from 'ethers';
|
|
3
3
|
export type IContractWriteOptions = {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
target: IAddress;
|
|
5
|
+
wallet: IAddress;
|
|
6
|
+
amount?: string | bigint | number;
|
|
7
|
+
wait?: boolean;
|
|
8
8
|
};
|
|
9
|
-
export declare function approve(
|
|
9
|
+
export declare function approve(
|
|
10
|
+
signer: Signer | Wallet,
|
|
11
|
+
options: IContractWriteOptions,
|
|
12
|
+
): Promise<string>;
|
package/lib/main.d.ts
CHANGED
|
@@ -23,6 +23,10 @@ export declare class AugustSDK extends AugustBase {
|
|
|
23
23
|
loadSubaccounts?: boolean;
|
|
24
24
|
loadSnapshots?: boolean;
|
|
25
25
|
} & IVaultCustomOptions): Promise<import("./types").IVault[]>;
|
|
26
|
+
getTotalDeposited(options?: {
|
|
27
|
+
loadSubaccounts?: boolean;
|
|
28
|
+
loadSnapshots?: boolean;
|
|
29
|
+
}): Promise<number>;
|
|
26
30
|
vaultDeposit(signer: Signer | Wallet, options: IContractWriteOptions): Promise<string>;
|
|
27
31
|
getVault(props: {
|
|
28
32
|
vault: IAddress;
|
package/lib/main.js
CHANGED
|
@@ -52,6 +52,9 @@ class AugustSDK extends core_1.AugustBase {
|
|
|
52
52
|
async getVaults(options) {
|
|
53
53
|
return await this.vaults.getVaults(options);
|
|
54
54
|
}
|
|
55
|
+
async getTotalDeposited(options) {
|
|
56
|
+
return await this.vaults.getTotalDeposited(options);
|
|
57
|
+
}
|
|
55
58
|
async vaultDeposit(signer, options) {
|
|
56
59
|
return await this.vaults.vaultDeposit(signer, options);
|
|
57
60
|
}
|
package/lib/main.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src.ts/main.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../src.ts/main.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,63 +3,107 @@ export declare const VAULT_AgoraAUSD: IAddress;
|
|
|
3
3
|
export declare const SUBACCOUNT_CALEB: IAddress;
|
|
4
4
|
export declare const MULTI_ASSET_VAULTS: `0x${string}`[];
|
|
5
5
|
export declare const WRAPPER_ADAPTOR: {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
43114: IAddress;
|
|
7
|
+
1: IAddress;
|
|
8
8
|
};
|
|
9
9
|
export declare const VAULT_FUNCTIONS_V1: IPoolFunctions[];
|
|
10
10
|
export declare const VAULT_FUNCTIONS_V2: IPoolFunctions[];
|
|
11
11
|
export declare const VAULT_FUNCTIONS_V2_RECEIPT: IPoolFunctions[];
|
|
12
12
|
export declare const VAULT_FUNCTIONS_V2_WHITELISTED_ASSETS: IPoolFunctions[];
|
|
13
|
-
export declare const SUBGRAPH_POOL_URLS: (
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
13
|
+
export declare const SUBGRAPH_POOL_URLS: (
|
|
14
|
+
apiKey: string,
|
|
15
|
+
chainId?: number,
|
|
16
|
+
pool?: IAddress,
|
|
17
|
+
) =>
|
|
18
|
+
| {
|
|
19
|
+
1: string;
|
|
20
|
+
8453: string;
|
|
21
|
+
43114: string;
|
|
22
|
+
42161: string;
|
|
23
|
+
56: string;
|
|
24
|
+
}
|
|
25
|
+
| {
|
|
26
|
+
999: string;
|
|
27
|
+
};
|
|
22
28
|
export declare const OLD_LENDING_POOLS: `0x${string}`[];
|
|
23
29
|
export declare const IDLE_CAPITAL_BORROWER_ADDRESS: `0x${string}`[];
|
|
24
30
|
export declare const SUBGRAPH_VAULT_URLS: {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
31
|
+
tacUSR: string;
|
|
32
|
+
upINJUSDT: string;
|
|
33
|
+
'tac-tETH': string;
|
|
34
|
+
upBTC: string;
|
|
35
|
+
upAUSD: string;
|
|
36
|
+
TACcbBTC: string;
|
|
37
|
+
xUpUSDC: string;
|
|
38
|
+
uptBTC: string;
|
|
39
|
+
gtETH: string;
|
|
40
|
+
agETH: string;
|
|
41
|
+
upUSDC: string;
|
|
42
|
+
hgETH: string;
|
|
43
|
+
upsSYLVA: string;
|
|
44
|
+
hbBTC: string;
|
|
45
|
+
hbHYPE: string;
|
|
46
|
+
upAZT: string;
|
|
47
|
+
sUSDT: string;
|
|
48
|
+
upEDGE: string;
|
|
49
|
+
coreUSDC: string;
|
|
50
|
+
upcUSDO: string;
|
|
51
|
+
shiftETH: string;
|
|
52
|
+
upsUSDe: string;
|
|
53
|
+
upLBTC: string;
|
|
54
|
+
upAVAX: string;
|
|
55
|
+
TACrsEth: string;
|
|
56
|
+
mUSD: string;
|
|
57
|
+
wildUSD: string;
|
|
58
|
+
earnAUSD: string;
|
|
59
|
+
AlpineCoinshiftUSDC: string;
|
|
60
|
+
AlpineUSDCFlagship: string;
|
|
61
|
+
UpStrBTC: string;
|
|
62
|
+
maxiUSR: string;
|
|
63
|
+
upGAMMAusdc: string;
|
|
64
|
+
xHYPE: string;
|
|
59
65
|
};
|
|
60
|
-
type VaultSymbols =
|
|
66
|
+
type VaultSymbols =
|
|
67
|
+
| 'testWETHTSA'
|
|
68
|
+
| 'tacUSR'
|
|
69
|
+
| 'upINJUSDT'
|
|
70
|
+
| 'tac-tETH'
|
|
71
|
+
| 'upAUSD'
|
|
72
|
+
| 'TACcbBTC'
|
|
73
|
+
| 'xUpUSDC'
|
|
74
|
+
| 'uptBTC'
|
|
75
|
+
| 'gtETH'
|
|
76
|
+
| 'agETH'
|
|
77
|
+
| 'upUSDC'
|
|
78
|
+
| 'hgETH'
|
|
79
|
+
| 'upsSYLVA'
|
|
80
|
+
| 'hbBTC'
|
|
81
|
+
| 'hbHYPE'
|
|
82
|
+
| 'upAZT'
|
|
83
|
+
| 'sUSDT'
|
|
84
|
+
| 'upEDGE'
|
|
85
|
+
| 'coreUSDC'
|
|
86
|
+
| 'upcUSDO'
|
|
87
|
+
| 'shiftETH'
|
|
88
|
+
| 'upsUSDe'
|
|
89
|
+
| 'upLBTC'
|
|
90
|
+
| 'upAVAX'
|
|
91
|
+
| 'TACrsEth'
|
|
92
|
+
| 'mUSD'
|
|
93
|
+
| 'earnAUSD'
|
|
94
|
+
| 'AlpineUSDCFlagship'
|
|
95
|
+
| 'AlpineCoinshiftUSDC'
|
|
96
|
+
| 'upBTC'
|
|
97
|
+
| 'UpStrBTC'
|
|
98
|
+
| 'maxiUSR'
|
|
99
|
+
| 'upGAMMAusdc'
|
|
100
|
+
| 'xHYPE'
|
|
101
|
+
| 'wildUSD';
|
|
61
102
|
export declare const VAULT_SYMBOLS: Record<IAddress, VaultSymbols>;
|
|
62
103
|
export declare const VAULT_SYMBOLS_REVERSE: Record<VaultSymbols, IAddress>;
|
|
63
104
|
export declare const isBadVault: (address?: string) => boolean;
|
|
64
|
-
export declare function getVaultSymbol(
|
|
105
|
+
export declare function getVaultSymbol(
|
|
106
|
+
vault: IAddress,
|
|
107
|
+
provider: IContractRunner,
|
|
108
|
+
): Promise<string>;
|
|
65
109
|
export {};
|
|
@@ -339,7 +339,7 @@ async function getVaultAllocations(vault, options) {
|
|
|
339
339
|
async function getVaultAvailableRedemptions({ vault, wallet, options, }) {
|
|
340
340
|
try {
|
|
341
341
|
const provider = (0, core_1.createProvider)(options.rpcUrl);
|
|
342
|
-
const tokenizedVault = (await (0, core_1.fetchTokenizedVault)(vault, options?.headers))?.[0];
|
|
342
|
+
const tokenizedVault = (await (0, core_1.fetchTokenizedVault)(vault, options?.headers, false, false))?.[0];
|
|
343
343
|
if (!tokenizedVault) {
|
|
344
344
|
return {
|
|
345
345
|
...{
|
|
@@ -655,7 +655,7 @@ async function getVaultRedemptionHistory({ vault, wallet, options, }) {
|
|
|
655
655
|
}
|
|
656
656
|
async function getVaultPositions({ vault, wallet, solanaWallet, options, }) {
|
|
657
657
|
try {
|
|
658
|
-
const tokenizedVaults = await (0, core_1.fetchTokenizedVault)(vault ? vault : undefined, options?.headers);
|
|
658
|
+
const tokenizedVaults = await (0, core_1.fetchTokenizedVault)(vault ? vault : undefined, options?.headers, false, false);
|
|
659
659
|
if (!tokenizedVaults || tokenizedVaults.length === 0) {
|
|
660
660
|
return [];
|
|
661
661
|
}
|
|
@@ -1263,7 +1263,8 @@ async function getVaultUserLifetimePnl({ vault, wallet, options, }) {
|
|
|
1263
1263
|
if (historyItem.type === 'deposit') {
|
|
1264
1264
|
totalDepositedRaw += amount;
|
|
1265
1265
|
}
|
|
1266
|
-
else if (historyItem.type === 'withdraw-request'
|
|
1266
|
+
else if (historyItem.type === 'withdraw-request' ||
|
|
1267
|
+
(historyItem.type === 'withdraw-processed' && historyItem.isInstant)) {
|
|
1267
1268
|
totalWithdrawalsRequestedRaw += amount;
|
|
1268
1269
|
}
|
|
1269
1270
|
}
|