@merkl/contracts 1.38.17 → 1.38.18

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.
Files changed (43) hide show
  1. package/dist/src/RoycoAccountant.d.ts +110 -0
  2. package/dist/src/RoycoAccountant.js +2 -0
  3. package/dist/src/RoycoAccountant.js.map +1 -0
  4. package/dist/src/RoycoFactory.d.ts +1087 -0
  5. package/dist/src/RoycoFactory.js +2 -0
  6. package/dist/src/RoycoFactory.js.map +1 -0
  7. package/dist/src/RoycoVaultTranche.d.ts +74 -0
  8. package/dist/src/RoycoVaultTranche.js +2 -0
  9. package/dist/src/RoycoVaultTranche.js.map +1 -0
  10. package/dist/src/RoycoYDM.d.ts +110 -0
  11. package/dist/src/RoycoYDM.js +2 -0
  12. package/dist/src/RoycoYDM.js.map +1 -0
  13. package/dist/src/factories/RoycoAccountant__factory.d.ts +103 -0
  14. package/dist/src/factories/RoycoAccountant__factory.js +136 -0
  15. package/dist/src/factories/RoycoAccountant__factory.js.map +1 -0
  16. package/dist/src/factories/RoycoFactory__factory.d.ts +1613 -0
  17. package/dist/src/factories/RoycoFactory__factory.js +2098 -0
  18. package/dist/src/factories/RoycoFactory__factory.js.map +1 -0
  19. package/dist/src/factories/RoycoVaultTranche__factory.d.ts +36 -0
  20. package/dist/src/factories/RoycoVaultTranche__factory.js +52 -0
  21. package/dist/src/factories/RoycoVaultTranche__factory.js.map +1 -0
  22. package/dist/src/factories/RoycoYDM__factory.d.ts +107 -0
  23. package/dist/src/factories/RoycoYDM__factory.js +142 -0
  24. package/dist/src/factories/RoycoYDM__factory.js.map +1 -0
  25. package/dist/src/factories/index.d.ts +4 -0
  26. package/dist/src/factories/index.js +4 -0
  27. package/dist/src/factories/index.js.map +1 -1
  28. package/dist/src/index.d.ts +8 -0
  29. package/dist/src/index.js +4 -0
  30. package/dist/src/index.js.map +1 -1
  31. package/dist/src/interfaces/RoycoAccountantInterface.d.ts +7 -0
  32. package/dist/src/interfaces/RoycoAccountantInterface.js +7 -0
  33. package/dist/src/interfaces/RoycoAccountantInterface.js.map +1 -0
  34. package/dist/src/interfaces/RoycoFactoryInterface.d.ts +7 -0
  35. package/dist/src/interfaces/RoycoFactoryInterface.js +7 -0
  36. package/dist/src/interfaces/RoycoFactoryInterface.js.map +1 -0
  37. package/dist/src/interfaces/RoycoVaultTrancheInterface.d.ts +7 -0
  38. package/dist/src/interfaces/RoycoVaultTrancheInterface.js +7 -0
  39. package/dist/src/interfaces/RoycoVaultTrancheInterface.js.map +1 -0
  40. package/dist/src/interfaces/RoycoYDMInterface.d.ts +7 -0
  41. package/dist/src/interfaces/RoycoYDMInterface.js +7 -0
  42. package/dist/src/interfaces/RoycoYDMInterface.js.map +1 -0
  43. package/package.json +1 -1
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=RoycoFactory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RoycoFactory.js","sourceRoot":"","sources":["../../src/RoycoFactory.ts"],"names":[],"mappings":""}
@@ -0,0 +1,74 @@
1
+ import type { BaseContract, BigNumber, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils } from "ethers";
2
+ import type { FunctionFragment, Result } from "@ethersproject/abi";
3
+ import type { Listener, Provider } from "@ethersproject/providers";
4
+ import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent } from "./common";
5
+ export interface RoycoVaultTrancheInterface extends utils.Interface {
6
+ functions: {
7
+ "asset()": FunctionFragment;
8
+ "totalAssets()": FunctionFragment;
9
+ };
10
+ getFunction(nameOrSignatureOrTopic: "asset" | "totalAssets"): FunctionFragment;
11
+ encodeFunctionData(functionFragment: "asset", values?: undefined): string;
12
+ encodeFunctionData(functionFragment: "totalAssets", values?: undefined): string;
13
+ decodeFunctionResult(functionFragment: "asset", data: BytesLike): Result;
14
+ decodeFunctionResult(functionFragment: "totalAssets", data: BytesLike): Result;
15
+ events: {};
16
+ }
17
+ export interface RoycoVaultTranche extends BaseContract {
18
+ connect(signerOrProvider: Signer | Provider | string): this;
19
+ attach(addressOrName: string): this;
20
+ deployed(): Promise<this>;
21
+ interface: RoycoVaultTrancheInterface;
22
+ queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
23
+ listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
24
+ listeners(eventName?: string): Array<Listener>;
25
+ removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
26
+ removeAllListeners(eventName?: string): this;
27
+ off: OnEvent<this>;
28
+ on: OnEvent<this>;
29
+ once: OnEvent<this>;
30
+ removeListener: OnEvent<this>;
31
+ functions: {
32
+ asset(overrides?: CallOverrides): Promise<[string]>;
33
+ totalAssets(overrides?: CallOverrides): Promise<[
34
+ BigNumber,
35
+ BigNumber,
36
+ BigNumber
37
+ ] & {
38
+ stAssets: BigNumber;
39
+ jtAssets: BigNumber;
40
+ nav: BigNumber;
41
+ }>;
42
+ };
43
+ asset(overrides?: CallOverrides): Promise<string>;
44
+ totalAssets(overrides?: CallOverrides): Promise<[
45
+ BigNumber,
46
+ BigNumber,
47
+ BigNumber
48
+ ] & {
49
+ stAssets: BigNumber;
50
+ jtAssets: BigNumber;
51
+ nav: BigNumber;
52
+ }>;
53
+ callStatic: {
54
+ asset(overrides?: CallOverrides): Promise<string>;
55
+ totalAssets(overrides?: CallOverrides): Promise<[
56
+ BigNumber,
57
+ BigNumber,
58
+ BigNumber
59
+ ] & {
60
+ stAssets: BigNumber;
61
+ jtAssets: BigNumber;
62
+ nav: BigNumber;
63
+ }>;
64
+ };
65
+ filters: {};
66
+ estimateGas: {
67
+ asset(overrides?: CallOverrides): Promise<BigNumber>;
68
+ totalAssets(overrides?: CallOverrides): Promise<BigNumber>;
69
+ };
70
+ populateTransaction: {
71
+ asset(overrides?: CallOverrides): Promise<PopulatedTransaction>;
72
+ totalAssets(overrides?: CallOverrides): Promise<PopulatedTransaction>;
73
+ };
74
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=RoycoVaultTranche.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RoycoVaultTranche.js","sourceRoot":"","sources":["../../src/RoycoVaultTranche.ts"],"names":[],"mappings":""}
@@ -0,0 +1,110 @@
1
+ import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils } from "ethers";
2
+ import type { FunctionFragment, Result } from "@ethersproject/abi";
3
+ import type { Listener, Provider } from "@ethersproject/providers";
4
+ import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue } from "./common";
5
+ export type MarketStateStruct = {
6
+ lastMarketState: PromiseOrValue<BigNumberish>;
7
+ fixedTermDurationSeconds: PromiseOrValue<BigNumberish>;
8
+ fixedTermEndTimestamp: PromiseOrValue<BigNumberish>;
9
+ coverageWAD: PromiseOrValue<BigNumberish>;
10
+ betaWAD: PromiseOrValue<BigNumberish>;
11
+ stProtocolFeeWAD: PromiseOrValue<BigNumberish>;
12
+ jtProtocolFeeWAD: PromiseOrValue<BigNumberish>;
13
+ yieldShareProtocolFeeWAD: PromiseOrValue<BigNumberish>;
14
+ liquidationUtilizationWAD: PromiseOrValue<BigNumberish>;
15
+ ydm: PromiseOrValue<string>;
16
+ lastSTRawNAV: PromiseOrValue<BigNumberish>;
17
+ lastJTRawNAV: PromiseOrValue<BigNumberish>;
18
+ lastSTEffectiveNAV: PromiseOrValue<BigNumberish>;
19
+ lastJTEffectiveNAV: PromiseOrValue<BigNumberish>;
20
+ lastSTImpermanentLoss: PromiseOrValue<BigNumberish>;
21
+ lastJTImpermanentLoss: PromiseOrValue<BigNumberish>;
22
+ twJTYieldShareAccruedWAD: PromiseOrValue<BigNumberish>;
23
+ lastAccrualTimestamp: PromiseOrValue<BigNumberish>;
24
+ lastDistributionTimestamp: PromiseOrValue<BigNumberish>;
25
+ stNAVDustTolerance: PromiseOrValue<BigNumberish>;
26
+ jtNAVDustTolerance: PromiseOrValue<BigNumberish>;
27
+ };
28
+ export type MarketStateStructOutput = [
29
+ number,
30
+ number,
31
+ number,
32
+ BigNumber,
33
+ BigNumber,
34
+ BigNumber,
35
+ BigNumber,
36
+ BigNumber,
37
+ BigNumber,
38
+ string,
39
+ BigNumber,
40
+ BigNumber,
41
+ BigNumber,
42
+ BigNumber,
43
+ BigNumber,
44
+ BigNumber,
45
+ BigNumber,
46
+ number,
47
+ number,
48
+ BigNumber,
49
+ BigNumber
50
+ ] & {
51
+ lastMarketState: number;
52
+ fixedTermDurationSeconds: number;
53
+ fixedTermEndTimestamp: number;
54
+ coverageWAD: BigNumber;
55
+ betaWAD: BigNumber;
56
+ stProtocolFeeWAD: BigNumber;
57
+ jtProtocolFeeWAD: BigNumber;
58
+ yieldShareProtocolFeeWAD: BigNumber;
59
+ liquidationUtilizationWAD: BigNumber;
60
+ ydm: string;
61
+ lastSTRawNAV: BigNumber;
62
+ lastJTRawNAV: BigNumber;
63
+ lastSTEffectiveNAV: BigNumber;
64
+ lastJTEffectiveNAV: BigNumber;
65
+ lastSTImpermanentLoss: BigNumber;
66
+ lastJTImpermanentLoss: BigNumber;
67
+ twJTYieldShareAccruedWAD: BigNumber;
68
+ lastAccrualTimestamp: number;
69
+ lastDistributionTimestamp: number;
70
+ stNAVDustTolerance: BigNumber;
71
+ jtNAVDustTolerance: BigNumber;
72
+ };
73
+ export interface RoycoYDMInterface extends utils.Interface {
74
+ functions: {
75
+ "previewJTYieldShare((uint8,uint24,uint32,uint64,uint96,uint64,uint64,uint64,uint256,address,uint256,uint256,uint256,uint256,uint256,uint256,uint192,uint32,uint32,uint256,uint256))": FunctionFragment;
76
+ };
77
+ getFunction(nameOrSignatureOrTopic: "previewJTYieldShare"): FunctionFragment;
78
+ encodeFunctionData(functionFragment: "previewJTYieldShare", values: [MarketStateStruct]): string;
79
+ decodeFunctionResult(functionFragment: "previewJTYieldShare", data: BytesLike): Result;
80
+ events: {};
81
+ }
82
+ export interface RoycoYDM extends BaseContract {
83
+ connect(signerOrProvider: Signer | Provider | string): this;
84
+ attach(addressOrName: string): this;
85
+ deployed(): Promise<this>;
86
+ interface: RoycoYDMInterface;
87
+ queryFilter<TEvent extends TypedEvent>(event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TEvent>>;
88
+ listeners<TEvent extends TypedEvent>(eventFilter?: TypedEventFilter<TEvent>): Array<TypedListener<TEvent>>;
89
+ listeners(eventName?: string): Array<Listener>;
90
+ removeAllListeners<TEvent extends TypedEvent>(eventFilter: TypedEventFilter<TEvent>): this;
91
+ removeAllListeners(eventName?: string): this;
92
+ off: OnEvent<this>;
93
+ on: OnEvent<this>;
94
+ once: OnEvent<this>;
95
+ removeListener: OnEvent<this>;
96
+ functions: {
97
+ previewJTYieldShare(state: MarketStateStruct, overrides?: CallOverrides): Promise<[BigNumber]>;
98
+ };
99
+ previewJTYieldShare(state: MarketStateStruct, overrides?: CallOverrides): Promise<BigNumber>;
100
+ callStatic: {
101
+ previewJTYieldShare(state: MarketStateStruct, overrides?: CallOverrides): Promise<BigNumber>;
102
+ };
103
+ filters: {};
104
+ estimateGas: {
105
+ previewJTYieldShare(state: MarketStateStruct, overrides?: CallOverrides): Promise<BigNumber>;
106
+ };
107
+ populateTransaction: {
108
+ previewJTYieldShare(state: MarketStateStruct, overrides?: CallOverrides): Promise<PopulatedTransaction>;
109
+ };
110
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=RoycoYDM.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RoycoYDM.js","sourceRoot":"","sources":["../../src/RoycoYDM.ts"],"names":[],"mappings":""}
@@ -0,0 +1,103 @@
1
+ import { Signer } from "ethers";
2
+ import type { Provider } from "@ethersproject/providers";
3
+ import type { RoycoAccountant, RoycoAccountantInterface } from "../RoycoAccountant";
4
+ export declare class RoycoAccountant__factory {
5
+ static readonly abi: readonly [{
6
+ readonly type: "function";
7
+ readonly name: "getState";
8
+ readonly inputs: readonly [];
9
+ readonly outputs: readonly [{
10
+ readonly name: "";
11
+ readonly type: "tuple";
12
+ readonly internalType: "struct MarketState";
13
+ readonly components: readonly [{
14
+ readonly name: "lastMarketState";
15
+ readonly type: "uint8";
16
+ readonly internalType: "uint8";
17
+ }, {
18
+ readonly name: "fixedTermDurationSeconds";
19
+ readonly type: "uint24";
20
+ readonly internalType: "uint24";
21
+ }, {
22
+ readonly name: "fixedTermEndTimestamp";
23
+ readonly type: "uint32";
24
+ readonly internalType: "uint32";
25
+ }, {
26
+ readonly name: "coverageWAD";
27
+ readonly type: "uint64";
28
+ readonly internalType: "uint64";
29
+ }, {
30
+ readonly name: "betaWAD";
31
+ readonly type: "uint96";
32
+ readonly internalType: "uint96";
33
+ }, {
34
+ readonly name: "stProtocolFeeWAD";
35
+ readonly type: "uint64";
36
+ readonly internalType: "uint64";
37
+ }, {
38
+ readonly name: "jtProtocolFeeWAD";
39
+ readonly type: "uint64";
40
+ readonly internalType: "uint64";
41
+ }, {
42
+ readonly name: "yieldShareProtocolFeeWAD";
43
+ readonly type: "uint64";
44
+ readonly internalType: "uint64";
45
+ }, {
46
+ readonly name: "liquidationUtilizationWAD";
47
+ readonly type: "uint256";
48
+ readonly internalType: "uint256";
49
+ }, {
50
+ readonly name: "ydm";
51
+ readonly type: "address";
52
+ readonly internalType: "address";
53
+ }, {
54
+ readonly name: "lastSTRawNAV";
55
+ readonly type: "uint256";
56
+ readonly internalType: "uint256";
57
+ }, {
58
+ readonly name: "lastJTRawNAV";
59
+ readonly type: "uint256";
60
+ readonly internalType: "uint256";
61
+ }, {
62
+ readonly name: "lastSTEffectiveNAV";
63
+ readonly type: "uint256";
64
+ readonly internalType: "uint256";
65
+ }, {
66
+ readonly name: "lastJTEffectiveNAV";
67
+ readonly type: "uint256";
68
+ readonly internalType: "uint256";
69
+ }, {
70
+ readonly name: "lastSTImpermanentLoss";
71
+ readonly type: "uint256";
72
+ readonly internalType: "uint256";
73
+ }, {
74
+ readonly name: "lastJTImpermanentLoss";
75
+ readonly type: "uint256";
76
+ readonly internalType: "uint256";
77
+ }, {
78
+ readonly name: "twJTYieldShareAccruedWAD";
79
+ readonly type: "uint192";
80
+ readonly internalType: "uint192";
81
+ }, {
82
+ readonly name: "lastAccrualTimestamp";
83
+ readonly type: "uint32";
84
+ readonly internalType: "uint32";
85
+ }, {
86
+ readonly name: "lastDistributionTimestamp";
87
+ readonly type: "uint32";
88
+ readonly internalType: "uint32";
89
+ }, {
90
+ readonly name: "stNAVDustTolerance";
91
+ readonly type: "uint256";
92
+ readonly internalType: "uint256";
93
+ }, {
94
+ readonly name: "jtNAVDustTolerance";
95
+ readonly type: "uint256";
96
+ readonly internalType: "uint256";
97
+ }];
98
+ }];
99
+ readonly stateMutability: "view";
100
+ }];
101
+ static createInterface(): RoycoAccountantInterface;
102
+ static connect(address: string, signerOrProvider: Signer | Provider): RoycoAccountant;
103
+ }
@@ -0,0 +1,136 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import { Contract, utils } from "ethers";
5
+ const _abi = [
6
+ {
7
+ type: "function",
8
+ name: "getState",
9
+ inputs: [],
10
+ outputs: [
11
+ {
12
+ name: "",
13
+ type: "tuple",
14
+ internalType: "struct MarketState",
15
+ components: [
16
+ {
17
+ name: "lastMarketState",
18
+ type: "uint8",
19
+ internalType: "uint8",
20
+ },
21
+ {
22
+ name: "fixedTermDurationSeconds",
23
+ type: "uint24",
24
+ internalType: "uint24",
25
+ },
26
+ {
27
+ name: "fixedTermEndTimestamp",
28
+ type: "uint32",
29
+ internalType: "uint32",
30
+ },
31
+ {
32
+ name: "coverageWAD",
33
+ type: "uint64",
34
+ internalType: "uint64",
35
+ },
36
+ {
37
+ name: "betaWAD",
38
+ type: "uint96",
39
+ internalType: "uint96",
40
+ },
41
+ {
42
+ name: "stProtocolFeeWAD",
43
+ type: "uint64",
44
+ internalType: "uint64",
45
+ },
46
+ {
47
+ name: "jtProtocolFeeWAD",
48
+ type: "uint64",
49
+ internalType: "uint64",
50
+ },
51
+ {
52
+ name: "yieldShareProtocolFeeWAD",
53
+ type: "uint64",
54
+ internalType: "uint64",
55
+ },
56
+ {
57
+ name: "liquidationUtilizationWAD",
58
+ type: "uint256",
59
+ internalType: "uint256",
60
+ },
61
+ {
62
+ name: "ydm",
63
+ type: "address",
64
+ internalType: "address",
65
+ },
66
+ {
67
+ name: "lastSTRawNAV",
68
+ type: "uint256",
69
+ internalType: "uint256",
70
+ },
71
+ {
72
+ name: "lastJTRawNAV",
73
+ type: "uint256",
74
+ internalType: "uint256",
75
+ },
76
+ {
77
+ name: "lastSTEffectiveNAV",
78
+ type: "uint256",
79
+ internalType: "uint256",
80
+ },
81
+ {
82
+ name: "lastJTEffectiveNAV",
83
+ type: "uint256",
84
+ internalType: "uint256",
85
+ },
86
+ {
87
+ name: "lastSTImpermanentLoss",
88
+ type: "uint256",
89
+ internalType: "uint256",
90
+ },
91
+ {
92
+ name: "lastJTImpermanentLoss",
93
+ type: "uint256",
94
+ internalType: "uint256",
95
+ },
96
+ {
97
+ name: "twJTYieldShareAccruedWAD",
98
+ type: "uint192",
99
+ internalType: "uint192",
100
+ },
101
+ {
102
+ name: "lastAccrualTimestamp",
103
+ type: "uint32",
104
+ internalType: "uint32",
105
+ },
106
+ {
107
+ name: "lastDistributionTimestamp",
108
+ type: "uint32",
109
+ internalType: "uint32",
110
+ },
111
+ {
112
+ name: "stNAVDustTolerance",
113
+ type: "uint256",
114
+ internalType: "uint256",
115
+ },
116
+ {
117
+ name: "jtNAVDustTolerance",
118
+ type: "uint256",
119
+ internalType: "uint256",
120
+ },
121
+ ],
122
+ },
123
+ ],
124
+ stateMutability: "view",
125
+ },
126
+ ];
127
+ export class RoycoAccountant__factory {
128
+ static abi = _abi;
129
+ static createInterface() {
130
+ return new utils.Interface(_abi);
131
+ }
132
+ static connect(address, signerOrProvider) {
133
+ return new Contract(address, _abi, signerOrProvider);
134
+ }
135
+ }
136
+ //# sourceMappingURL=RoycoAccountant__factory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RoycoAccountant__factory.js","sourceRoot":"","sources":["../../../src/factories/RoycoAccountant__factory.ts"],"names":[],"mappings":"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"}