@augustdigital/sdk 4.7.3-alpha → 4.7.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/__tests__/adapter.e2e.test.d.ts +1 -0
- package/lib/__tests__/adapter.e2e.test.js +94 -0
- package/lib/__tests__/adapter.e2e.test.js.map +1 -0
- package/lib/adapters/evm/index.d.ts +1 -1
- package/lib/adapters/evm/index.js +2 -2
- package/lib/adapters/evm/index.js.map +1 -1
- package/lib/adapters/solana/index.d.ts +7 -39
- package/lib/adapters/solana/types.d.ts +12 -0
- package/lib/adapters/solana/utils.d.ts +4 -20
- package/lib/adapters/solana/utils.js +25 -2
- package/lib/adapters/solana/utils.js.map +1 -1
- package/lib/core/auth/verify.js +2 -2
- package/lib/core/auth/verify.js.map +1 -1
- package/lib/core/base.class.d.ts +1 -0
- package/lib/core/base.class.js.map +1 -1
- package/lib/core/constants/adapters.d.ts +88 -0
- package/lib/core/constants/adapters.js +160 -0
- package/lib/core/constants/adapters.js.map +1 -0
- package/lib/core/constants/core.d.ts +71 -0
- package/lib/core/constants/core.js +75 -0
- package/lib/core/constants/core.js.map +1 -0
- package/lib/core/constants/vaults.d.ts +19 -0
- package/lib/core/constants/vaults.js +163 -0
- package/lib/core/constants/vaults.js.map +1 -0
- package/lib/core/constants/web3.d.ts +30 -0
- package/lib/core/constants/web3.js +112 -0
- package/lib/core/constants/web3.js.map +1 -0
- package/lib/core/constants.d.ts +88 -0
- package/lib/core/constants.js +148 -0
- package/lib/core/constants.js.map +1 -0
- package/lib/core/constants.vaults.d.ts +1 -1
- package/lib/core/constants.vaults.js +0 -8
- package/lib/core/constants.vaults.js.map +1 -1
- package/lib/core/constants.web3.js +0 -12
- package/lib/core/constants.web3.js.map +1 -1
- package/lib/core/core.helpers.d.ts +23 -0
- package/lib/core/core.helpers.js +210 -0
- package/lib/core/core.helpers.js.map +1 -0
- package/lib/core/fetcher.d.ts +3 -1
- package/lib/core/fetcher.js +44 -29
- package/lib/core/fetcher.js.map +1 -1
- package/lib/core/helpers/adapters.d.ts +4 -0
- package/lib/core/helpers/adapters.js +28 -0
- package/lib/core/helpers/adapters.js.map +1 -0
- package/lib/core/helpers/core.d.ts +23 -0
- package/lib/core/helpers/core.js +210 -0
- package/lib/core/helpers/core.js.map +1 -0
- package/lib/core/helpers/signer.d.ts +5 -0
- package/lib/core/helpers/signer.js +54 -0
- package/lib/core/helpers/signer.js.map +1 -0
- package/lib/core/helpers/vaults.d.ts +16 -0
- package/lib/core/helpers/vaults.js +145 -0
- package/lib/core/helpers/vaults.js.map +1 -0
- package/lib/core/helpers/web3.d.ts +29 -0
- package/lib/core/helpers/web3.js +391 -0
- package/lib/core/helpers/web3.js.map +1 -0
- package/lib/core/helpers.web3.d.ts +2 -2
- package/lib/core/helpers.web3.js +20 -36
- package/lib/core/helpers.web3.js.map +1 -1
- package/lib/core/index.d.ts +9 -9
- package/lib/core/index.js +9 -9
- package/lib/core/logger/slack.js +3 -3
- package/lib/core/logger/slack.js.map +1 -1
- package/lib/core/read.actions.d.ts +3 -0
- package/lib/core/read.actions.js +39 -0
- package/lib/core/read.actions.js.map +1 -0
- package/lib/core/vault.utils.d.ts +4 -0
- package/lib/core/vault.utils.js +35 -0
- package/lib/core/vault.utils.js.map +1 -0
- package/lib/core/web3.helpers.d.ts +29 -0
- package/lib/core/web3.helpers.js +365 -0
- package/lib/core/web3.helpers.js.map +1 -0
- package/lib/core/write.actions.d.ts +9 -0
- package/lib/core/write.actions.js +51 -0
- package/lib/core/write.actions.js.map +1 -0
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib/modules/vaults/adapter.helpers.js +4 -4
- package/lib/modules/vaults/adapter.helpers.js.map +1 -1
- package/lib/modules/vaults/constants.d.ts +63 -0
- package/lib/modules/vaults/constants.js +186 -0
- package/lib/modules/vaults/constants.js.map +1 -0
- package/lib/modules/vaults/getters.js +33 -7
- package/lib/modules/vaults/getters.js.map +1 -1
- package/lib/modules/vaults/main.js +2 -5
- package/lib/modules/vaults/main.js.map +1 -1
- package/lib/modules/vaults/utils.js +6 -6
- package/lib/modules/vaults/utils.js.map +1 -1
- package/lib/modules/vaults/vault.actions.d.ts +10 -0
- package/lib/modules/vaults/vault.actions.js +95 -0
- package/lib/modules/vaults/vault.actions.js.map +1 -0
- package/lib/services/debank/utils.js +4 -4
- package/lib/services/debank/utils.js.map +1 -1
- package/lib/services/octavfi/fetcher.d.ts +2 -0
- package/lib/services/octavfi/fetcher.js +73 -0
- package/lib/services/octavfi/fetcher.js.map +1 -0
- package/lib/services/octavfi/index.d.ts +3 -0
- package/lib/services/octavfi/index.js +20 -0
- package/lib/services/octavfi/index.js.map +1 -0
- package/lib/services/octavfi/types.d.ts +34 -0
- package/lib/services/octavfi/types.js +3 -0
- package/lib/services/octavfi/types.js.map +1 -0
- package/lib/services/octavfi/utils.d.ts +3 -0
- package/lib/services/octavfi/utils.js +178 -0
- package/lib/services/octavfi/utils.js.map +1 -0
- package/package.json +12 -12
- package/lib/abis/TokenizedVaultV2WithDepositWithPermit.d.ts +0 -78
- package/lib/abis/TokenizedVaultV2WithDepositWithPermit.js +0 -1878
- package/lib/abis/TokenizedVaultV2WithDepositWithPermit.js.map +0 -1
- package/lib/verify.d.ts +0 -2
- package/lib/verify.js +0 -33
- package/lib/verify.js.map +0 -1
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
export declare const TokenizedVaultV2WithDepositWithPermit: ({
|
|
2
|
-
type: string;
|
|
3
|
-
inputs: any[];
|
|
4
|
-
stateMutability: string;
|
|
5
|
-
name?: undefined;
|
|
6
|
-
outputs?: undefined;
|
|
7
|
-
anonymous?: undefined;
|
|
8
|
-
} | {
|
|
9
|
-
type: string;
|
|
10
|
-
name: string;
|
|
11
|
-
inputs: {
|
|
12
|
-
name: string;
|
|
13
|
-
type: string;
|
|
14
|
-
internalType: string;
|
|
15
|
-
}[];
|
|
16
|
-
outputs: {
|
|
17
|
-
name: string;
|
|
18
|
-
type: string;
|
|
19
|
-
internalType: string;
|
|
20
|
-
}[];
|
|
21
|
-
stateMutability: string;
|
|
22
|
-
anonymous?: undefined;
|
|
23
|
-
} | {
|
|
24
|
-
type: string;
|
|
25
|
-
name: string;
|
|
26
|
-
inputs: {
|
|
27
|
-
name: string;
|
|
28
|
-
type: string;
|
|
29
|
-
internalType: string;
|
|
30
|
-
components: {
|
|
31
|
-
name: string;
|
|
32
|
-
type: string;
|
|
33
|
-
internalType: string;
|
|
34
|
-
}[];
|
|
35
|
-
}[];
|
|
36
|
-
outputs: any[];
|
|
37
|
-
stateMutability: string;
|
|
38
|
-
anonymous?: undefined;
|
|
39
|
-
} | {
|
|
40
|
-
type: string;
|
|
41
|
-
name: string;
|
|
42
|
-
inputs: any[];
|
|
43
|
-
outputs: {
|
|
44
|
-
name: string;
|
|
45
|
-
type: string;
|
|
46
|
-
internalType: string;
|
|
47
|
-
components: {
|
|
48
|
-
name: string;
|
|
49
|
-
type: string;
|
|
50
|
-
internalType: string;
|
|
51
|
-
}[];
|
|
52
|
-
}[];
|
|
53
|
-
stateMutability: string;
|
|
54
|
-
anonymous?: undefined;
|
|
55
|
-
} | {
|
|
56
|
-
type: string;
|
|
57
|
-
name: string;
|
|
58
|
-
inputs: {
|
|
59
|
-
name: string;
|
|
60
|
-
type: string;
|
|
61
|
-
indexed: boolean;
|
|
62
|
-
internalType: string;
|
|
63
|
-
}[];
|
|
64
|
-
anonymous: boolean;
|
|
65
|
-
stateMutability?: undefined;
|
|
66
|
-
outputs?: undefined;
|
|
67
|
-
} | {
|
|
68
|
-
type: string;
|
|
69
|
-
name: string;
|
|
70
|
-
inputs: {
|
|
71
|
-
name: string;
|
|
72
|
-
type: string;
|
|
73
|
-
internalType: string;
|
|
74
|
-
}[];
|
|
75
|
-
stateMutability?: undefined;
|
|
76
|
-
outputs?: undefined;
|
|
77
|
-
anonymous?: undefined;
|
|
78
|
-
})[];
|