@nexusmutual/sdk 1.12.0-rc.5 → 1.12.0-rc.7

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/README.md CHANGED
@@ -57,6 +57,8 @@ Use the `uploadIPFSContent` method in `Ipfs` class to upload the content to IPFS
57
57
 
58
58
  The function returns the IPFS hash of the uploaded content.
59
59
 
60
+ For claims submission and assessment IPFS data, use the `get32BytesIPFSHash` method in `Ipfs` class to convert the IPFS hash you get from `uploadIPFSContent` to 32 bytes format. Use the `getIPFSHashFromBytes32` method to convert back to standard IPFS hash.
61
+
60
62
  ### Example
61
63
 
62
64
  ```typescript
@@ -82,15 +84,17 @@ interface NexusSDKConfig {
82
84
  apiUrl?: string;
83
85
  }
84
86
  ```
87
+
85
88
  ```typescript
86
89
  const nexusSDK = new NexusSDK(config: NexusSDKConfig = {}, ipfs?: Ipfs)
87
- ````
90
+ ```
88
91
 
89
92
  ```typescript
90
93
  const quote = new Quote(config: NexusSDKConfig = {}, ipfs?: Ipfs)
91
- ````
94
+ ```
92
95
 
93
96
  ### Params
97
+
94
98
  ```typescript
95
99
  export interface GetQuoteAndBuyCoverInputsParams {
96
100
  /**
@@ -218,21 +222,22 @@ The `ipfsCidOrContent` param must be a valid IPFS Cid or a valid `IPFSContentTyp
218
222
 
219
223
  The following table shows the mapping between product types and their required IPFS content types:
220
224
 
221
- | Product Type | Content Type | Content Structure | Description |
222
- |-------------|--------------|-------------------|-------------|
223
- | ethSlashing | coverValidators | <pre>{ version: '1.0', validators: string[] }</pre> | Array of validator addresses |
224
- | liquidCollectiveEthStaking | coverValidators | <pre>{ version: '1.0', validators: string[] }</pre> | Array of validator addresses |
225
- | stakewiseEthStaking | coverValidators | <pre>{ version: '1.0', validators: string[] }</pre> | Array of validator addresses |
226
- | sherlockQuotaShare | coverQuotaShare | <pre>{ version: '1.0', quotaShare: number }</pre> | Percentage value, 0 to 100 |
227
- | unoReQuotaShare | coverQuotaShare | <pre>{ version: '1.0', quotaShare: number }</pre> | Percentage value, 0 to 100 |
228
- | deFiPass | coverWalletAddress | <pre>{ version: '1.0', walletAddress: string }</pre> | Single wallet address |
229
- | nexusMutual | coverWalletAddresses | <pre>{ version: '1.0', walletAddresses: string }</pre> | Single wallet address |
230
- | nexusMutual | coverWalletAddresses | <pre>{ version: '2.0', walletAddresses: string[] }</pre> | Array of wallet addresses |
231
- | followOn | coverFreeText | <pre>{ version: '1.0', freeText: string }</pre> | Free text description |
232
- | fundPortfolio | coverAumCoverAmountPercentage | <pre>{ version: '1.0', aumCoverAmountPercentage: number }</pre> | Percentage value, 0 to 100 |
233
- | generalisedFundPortfolio | coverAumCoverAmountPercentage | <pre>{ version: '1.0', aumCoverAmountPercentage: number }</pre> | Percentage value, 0 to 100 |
225
+ | Product Type | Content Type | Content Structure | Description |
226
+ | -------------------------- | ----------------------------- | --------------------------------------------------------------- | ---------------------------- |
227
+ | ethSlashing | coverValidators | <pre>{ version: '1.0', validators: string[] }</pre> | Array of validator addresses |
228
+ | liquidCollectiveEthStaking | coverValidators | <pre>{ version: '1.0', validators: string[] }</pre> | Array of validator addresses |
229
+ | stakewiseEthStaking | coverValidators | <pre>{ version: '1.0', validators: string[] }</pre> | Array of validator addresses |
230
+ | sherlockQuotaShare | coverQuotaShare | <pre>{ version: '1.0', quotaShare: number }</pre> | Percentage value, 0 to 100 |
231
+ | unoReQuotaShare | coverQuotaShare | <pre>{ version: '1.0', quotaShare: number }</pre> | Percentage value, 0 to 100 |
232
+ | deFiPass | coverWalletAddress | <pre>{ version: '1.0', walletAddress: string }</pre> | Single wallet address |
233
+ | nexusMutual | coverWalletAddresses | <pre>{ version: '1.0', walletAddresses: string }</pre> | Single wallet address |
234
+ | nexusMutual | coverWalletAddresses | <pre>{ version: '2.0', walletAddresses: string[] }</pre> | Array of wallet addresses |
235
+ | followOn | coverFreeText | <pre>{ version: '1.0', freeText: string }</pre> | Free text description |
236
+ | fundPortfolio | coverAumCoverAmountPercentage | <pre>{ version: '1.0', aumCoverAmountPercentage: number }</pre> | Percentage value, 0 to 100 |
237
+ | generalizedFundPortfolio | coverAumCoverAmountPercentage | <pre>{ version: '1.0', aumCoverAmountPercentage: number }</pre> | Percentage value, 0 to 100 |
234
238
 
235
239
  Note: The following product types do not require IPFS content:
240
+
236
241
  - singleProtocol
237
242
  - custody
238
243
  - yieldToken
@@ -252,6 +257,7 @@ For a complete list of products and product types, see [products.json](https://s
252
257
  IPFS content is validated using [Zod schemas](https://www.npmjs.com/package/zod), if validation fails, the error response will contain a stringified array of Zod validation errors in the `error.message` field. These errors provide detailed information about what went wrong during validation.
253
258
 
254
259
  Example error response:
260
+
255
261
  ```json
256
262
  {
257
263
  "result": undefined,
@@ -261,8 +267,8 @@ Example error response:
261
267
  }
262
268
  ```
263
269
 
264
-
265
270
  Each Zod error object in the array includes:
271
+
266
272
  - `code`: The type of validation error
267
273
  - `message`: A human-readable error message
268
274
  - `path`: The path to the invalid field
@@ -0,0 +1,170 @@
1
+ [
2
+ {
3
+ "inputs": [
4
+ {
5
+ "internalType": "address",
6
+ "name": "_registry",
7
+ "type": "address"
8
+ }
9
+ ],
10
+ "stateMutability": "nonpayable",
11
+ "type": "constructor"
12
+ },
13
+ {
14
+ "inputs": [],
15
+ "name": "OnlyAdvisoryBoard",
16
+ "type": "error"
17
+ },
18
+ {
19
+ "inputs": [],
20
+ "name": "OnlyMember",
21
+ "type": "error"
22
+ },
23
+ {
24
+ "inputs": [
25
+ {
26
+ "internalType": "uint256",
27
+ "name": "currentState",
28
+ "type": "uint256"
29
+ },
30
+ {
31
+ "internalType": "uint256",
32
+ "name": "checks",
33
+ "type": "uint256"
34
+ }
35
+ ],
36
+ "name": "Paused",
37
+ "type": "error"
38
+ },
39
+ {
40
+ "inputs": [
41
+ {
42
+ "internalType": "address",
43
+ "name": "caller",
44
+ "type": "address"
45
+ },
46
+ {
47
+ "internalType": "uint256",
48
+ "name": "callerIndex",
49
+ "type": "uint256"
50
+ },
51
+ {
52
+ "internalType": "uint256",
53
+ "name": "authorizedBitmap",
54
+ "type": "uint256"
55
+ }
56
+ ],
57
+ "name": "Unauthorized",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "address",
64
+ "name": "member",
65
+ "type": "address"
66
+ }
67
+ ],
68
+ "name": "balanceOf",
69
+ "outputs": [
70
+ {
71
+ "internalType": "uint256",
72
+ "name": "",
73
+ "type": "uint256"
74
+ }
75
+ ],
76
+ "stateMutability": "view",
77
+ "type": "function"
78
+ },
79
+ {
80
+ "inputs": [],
81
+ "name": "decimals",
82
+ "outputs": [
83
+ {
84
+ "internalType": "uint8",
85
+ "name": "",
86
+ "type": "uint8"
87
+ }
88
+ ],
89
+ "stateMutability": "view",
90
+ "type": "function"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "governor",
95
+ "outputs": [
96
+ {
97
+ "internalType": "contract IGovernor",
98
+ "name": "",
99
+ "type": "address"
100
+ }
101
+ ],
102
+ "stateMutability": "view",
103
+ "type": "function"
104
+ },
105
+ {
106
+ "inputs": [],
107
+ "name": "name",
108
+ "outputs": [
109
+ {
110
+ "internalType": "string",
111
+ "name": "",
112
+ "type": "string"
113
+ }
114
+ ],
115
+ "stateMutability": "view",
116
+ "type": "function"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "registry",
121
+ "outputs": [
122
+ {
123
+ "internalType": "contract IRegistry",
124
+ "name": "",
125
+ "type": "address"
126
+ }
127
+ ],
128
+ "stateMutability": "view",
129
+ "type": "function"
130
+ },
131
+ {
132
+ "inputs": [],
133
+ "name": "symbol",
134
+ "outputs": [
135
+ {
136
+ "internalType": "string",
137
+ "name": "",
138
+ "type": "string"
139
+ }
140
+ ],
141
+ "stateMutability": "view",
142
+ "type": "function"
143
+ },
144
+ {
145
+ "inputs": [],
146
+ "name": "token",
147
+ "outputs": [
148
+ {
149
+ "internalType": "contract INXMToken",
150
+ "name": "",
151
+ "type": "address"
152
+ }
153
+ ],
154
+ "stateMutability": "view",
155
+ "type": "function"
156
+ },
157
+ {
158
+ "inputs": [],
159
+ "name": "totalSupply",
160
+ "outputs": [
161
+ {
162
+ "internalType": "uint256",
163
+ "name": "",
164
+ "type": "uint256"
165
+ }
166
+ ],
167
+ "stateMutability": "view",
168
+ "type": "function"
169
+ }
170
+ ]
@@ -1,5 +1,5 @@
1
1
  {
2
- "Assessments": "0x6a37626F80Bc388C6724021BbC6e2d692c40bB30",
2
+ "Assessments": "0xcafea55aE10FB1bf21F7aF7a285488C42B59a24A",
3
3
  "cbBTC": "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf",
4
4
  "Chainlink-DAI-ETH": "0x773616E4d11A78F511299002da57A0a94577F1f4",
5
5
  "Chainlink-ENZYME-VAULT": "0xCc72039A141c6e34a779eF93AEF5eB4C82A893c7",
@@ -7,31 +7,32 @@
7
7
  "Chainlink-RETH-ETH": "0x536218f9E9Eb48863970252233c8F271f554C2d0",
8
8
  "Chainlink-STETH-ETH": "0x86392dC19c0b719886221c78AB11eb8Cf5c52812",
9
9
  "Chainlink-CBBTC-USD": "0x2665701293fCbEB223D11A08D826563EDcCE423A",
10
- "Claims": "0xD713533B8cf753a1e2D773E074b59B749f9d8E18",
10
+ "Claims": "0xcafeac11196a5CC352938aEEd545b32d5b9646fa",
11
11
  "Cover": "0xcafeac0fF5dA0A2777d915531bfA6B29d282Ee62",
12
- "CoverBroker": "0xCB2B736652D2dBf7d72e4dB880Cf6B7d99507814",
12
+ "CoverBroker": "0xCBcbcBCbfa2EDa48a41Da0711E1f3D7B42605Cc9",
13
13
  "CoverNFT": "0xcafeaCa76be547F14D0220482667B42D8E7Bc3eb",
14
14
  "CoverProducts": "0xcafead81a2c2508e7344155eB0DA67a3a487AA8d",
15
15
  "CoverViewer": "0xcafea53a6c1774030F4B1C06B4A5743d5AFFF8b9",
16
16
  "DAI": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
17
17
  "Governance": "0x4A5C681dDC32acC6ccA51ac17e9d461e6be87900",
18
- "Governor": "0xd6B7Dc4297A87f71b7414C353e9B39024DcbF262",
18
+ "Governor": "0xcafea6063d4Ec6b045d9676e58897C1f0882Ca32",
19
19
  "LegacyClaimsData": "0xdc2D359F59F6a26162972c3Bd0cFBfd8C9Ef43af",
20
20
  "LegacyQuotationData": "0x1776651F58a17a50098d31ba3C3cD259C1903f7A",
21
21
  "LimitOrders": "0xcafea53852E9f719c424Ec2fe1e7aDd27304210F",
22
22
  "NXMToken": "0xd7c49CEE7E9188cCa6AD8FF264C1DA2e69D4Cf3B",
23
23
  "NXMaster": "0x01BFd82675DBCc7762C84019cA518e701C0cD07e",
24
- "Pool": "0x3dacE99da3EE9dFd6978b67E05D1Adc5B64E7570",
24
+ "Pool": "0xcafea91714e55756C125B509274eDE9Bc91697CB",
25
25
  "Ramm": "0xcafea54f03E1Cc036653444e581A10a43B2487CD",
26
- "Registry": "0xBcE287fe49E3645c66f0ef34f2219beC87Ddb434",
26
+ "Registry": "0xcafea2c575550512582090AA06d0a069E7236b9e",
27
27
  "SafeTracker": "0xcafeaB8B01C74c2239eA9b2B0F6aB2dD409c6c13",
28
28
  "StakingNFT": "0xcafea508a477D94c502c253A58239fb8F948e97f",
29
29
  "StakingPoolFactory": "0xcafeafb97BF8831D95C0FC659b8eB3946B101CB3",
30
30
  "StakingProducts": "0xcafea573fBd815B5f59e8049E71E554bde3477E4",
31
- "StakingViewer": "0xcafea5E8a7a54dd14Bb225b66C7a016dfd7F236b",
32
- "SwapOperator": "0xEe1a1dCc2AEDd0E00DF02Ee13F8cF77793f4A161",
31
+ "StakingViewer": "0xcafea5c7d25a192ba70ECA0E2dB62F835c1cF81F",
32
+ "SwapOperator": "0xcafea501b78175F178b899625F06BC618ef06EB8",
33
33
  "TokenController": "0x5407381b6c251cFd498ccD4A1d877739CB7960B8",
34
34
  "USDC": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
35
+ "VotePower": "0xcafeac90410f069C24a876c208Eb2b3E53424EA5",
35
36
  "wNXM": "0x0d438F3b5175Bebc262bF23753C1E53d03432bDE",
36
37
  "wETH": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
37
38
  }
@@ -4,174 +4,224 @@
4
4
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmQz38DSo6DyrHkRj8uvtGFyx842izVvnx8a3qqF99dctG",
5
5
  "name": "Single Protocol Cover",
6
6
  "gracePeriod": 3024000,
7
- "claimMethod": 0
7
+ "claimMethod": 0,
8
+ "assessmentCooldownPeriod": 86400,
9
+ "payoutRedemptionPeriod": 2592000
8
10
  },
9
11
  {
10
12
  "id": 1,
11
13
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmYhCNjfrNTMq8eyg8i7LbBpTkMCHfix9Sv1jrPb7dYZKd",
12
14
  "name": "Custody",
13
15
  "gracePeriod": 10368000,
14
- "claimMethod": 0
16
+ "claimMethod": 0,
17
+ "assessmentCooldownPeriod": 86400,
18
+ "payoutRedemptionPeriod": 2592000
15
19
  },
16
20
  {
17
21
  "id": 2,
18
22
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmcPdiLNZmBM8pjQcCzLhH8tjPuhphCVKZeP5P4SBiLx3h",
19
23
  "name": "Yield Token",
20
24
  "gracePeriod": 0,
21
- "claimMethod": 1
25
+ "claimMethod": 1,
26
+ "assessmentCooldownPeriod": 86400,
27
+ "payoutRedemptionPeriod": 2592000
22
28
  },
23
29
  {
24
30
  "id": 3,
25
31
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmUTUfdfuZUjtPAiMZ4YRu77SaiyCov7jrSXTgeGeK8qt3",
26
32
  "name": "Sherlock Excess",
27
33
  "gracePeriod": 3024000,
28
- "claimMethod": 0
34
+ "claimMethod": 0,
35
+ "assessmentCooldownPeriod": 86400,
36
+ "payoutRedemptionPeriod": 2592000
29
37
  },
30
38
  {
31
39
  "id": 4,
32
40
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmPmwtwbyKnXBae1dmYD6jmgnewCeZGPMFGepkWMLWaiwC",
33
41
  "name": "Stakewise ETH Staking",
34
42
  "gracePeriod": 3024000,
35
- "claimMethod": 0
43
+ "claimMethod": 0,
44
+ "assessmentCooldownPeriod": 86400,
45
+ "payoutRedemptionPeriod": 2592000
36
46
  },
37
47
  {
38
48
  "id": 5,
39
49
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmUKhLi5ZahnzSxsMC9YQZbwwAKGhkHcoYqHUVgE31cXLe",
40
50
  "name": "Liquid Collective ETH Staking",
41
51
  "gracePeriod": 3024000,
42
- "claimMethod": 0
52
+ "claimMethod": 0,
53
+ "assessmentCooldownPeriod": 86400,
54
+ "payoutRedemptionPeriod": 2592000
43
55
  },
44
56
  {
45
57
  "id": 6,
46
58
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmWepFbtMYSzJt22ddF1CK9PwbrYgiLk9qJjryDrgpGuus",
47
59
  "name": "ETH Slashing",
48
60
  "gracePeriod": 3024000,
49
- "claimMethod": 0
61
+ "claimMethod": 0,
62
+ "assessmentCooldownPeriod": 86400,
63
+ "payoutRedemptionPeriod": 2592000
50
64
  },
51
65
  {
52
66
  "id": 7,
53
67
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmQfYgbBhyC3gJMvan9gbzUaZtd4Xy4gubEYfgTFKycBDZ",
54
68
  "name": "Sherlock Quota Share",
55
69
  "gracePeriod": 3024000,
56
- "claimMethod": 0
70
+ "claimMethod": 0,
71
+ "assessmentCooldownPeriod": 86400,
72
+ "payoutRedemptionPeriod": 2592000
57
73
  },
58
74
  {
59
75
  "id": 8,
60
76
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmQz38DSo6DyrHkRj8uvtGFyx842izVvnx8a3qqF99dctG",
61
77
  "name": "Native Protocol Cover",
62
78
  "gracePeriod": 3024000,
63
- "claimMethod": 0
79
+ "claimMethod": 0,
80
+ "assessmentCooldownPeriod": 86400,
81
+ "payoutRedemptionPeriod": 2592000
64
82
  },
65
83
  {
66
84
  "id": 9,
67
85
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmYvjtM4FoK8woRySpmmcp8zP7Bmc5ucDgQEc4boLzqie8",
68
86
  "name": "The Retail Mutual",
69
87
  "gracePeriod": 36720000,
70
- "claimMethod": 0
88
+ "claimMethod": 0,
89
+ "assessmentCooldownPeriod": 86400,
90
+ "payoutRedemptionPeriod": 2592000
71
91
  },
72
92
  {
73
93
  "id": 10,
74
94
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmWXYjBYjdKoRw6kyUvp5gYKjj2ojPPVxNYKr1gDjMLssY",
75
95
  "name": "UnoRe Quota Share",
76
96
  "gracePeriod": 3024000,
77
- "claimMethod": 0
97
+ "claimMethod": 0,
98
+ "assessmentCooldownPeriod": 86400,
99
+ "payoutRedemptionPeriod": 2592000
78
100
  },
79
101
  {
80
102
  "id": 11,
81
103
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmQz38DSo6DyrHkRj8uvtGFyx842izVvnx8a3qqF99dctG",
82
104
  "name": "Multi Protocol Cover",
83
105
  "gracePeriod": 3024000,
84
- "claimMethod": 0
106
+ "claimMethod": 0,
107
+ "assessmentCooldownPeriod": 86400,
108
+ "payoutRedemptionPeriod": 2592000
85
109
  },
86
110
  {
87
111
  "id": 12,
88
112
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmQx2H9A51SARNc4W8Ta2D2woXv2ebkUGZMC5HZoQW8TUX",
89
113
  "name": "ETH Slashing Umbrella",
90
114
  "gracePeriod": 3024000,
91
- "claimMethod": 0
115
+ "claimMethod": 0,
116
+ "assessmentCooldownPeriod": 86400,
117
+ "payoutRedemptionPeriod": 2592000
92
118
  },
93
119
  {
94
120
  "id": 13,
95
121
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmWRir4JSeSv3oKbHyDRz1xFKXh1d8wgew5Rr4koCMeYYu",
96
122
  "name": "OpenCover Transaction",
97
123
  "gracePeriod": 3024000,
98
- "claimMethod": 0
124
+ "claimMethod": 0,
125
+ "assessmentCooldownPeriod": 86400,
126
+ "payoutRedemptionPeriod": 2592000
99
127
  },
100
128
  {
101
129
  "id": 14,
102
130
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmevgAXtzi7773NaBrzGyW95aKSrt3MBtpQU1SQCPyCbSF",
103
131
  "name": "Fund Portfolio Cover",
104
132
  "gracePeriod": 3024000,
105
- "claimMethod": 0
133
+ "claimMethod": 0,
134
+ "assessmentCooldownPeriod": 86400,
135
+ "payoutRedemptionPeriod": 2592000
106
136
  },
107
137
  {
108
138
  "id": 15,
109
139
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmUtdg2CmNDh1ZkDKE2zwgbc7RF8yWDCCLEwqQ2zt8J7eT",
110
140
  "name": "Sherlock Bug Bounty Cover",
111
141
  "gracePeriod": 3024000,
112
- "claimMethod": 0
142
+ "claimMethod": 0,
143
+ "assessmentCooldownPeriod": 86400,
144
+ "payoutRedemptionPeriod": 2592000
113
145
  },
114
146
  {
115
147
  "id": 16,
116
148
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmQLh2wNDD2b2RGg9rNFbyrQwxqTthrTNaTsHenZnRg6u6",
117
149
  "name": "DeFi Pass",
118
150
  "gracePeriod": 3024000,
119
- "claimMethod": 0
151
+ "claimMethod": 0,
152
+ "assessmentCooldownPeriod": 86400,
153
+ "payoutRedemptionPeriod": 2592000
120
154
  },
121
155
  {
122
156
  "id": 17,
123
157
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmYgZNrGSAQZCGKEGdgvR132KWkLKtSDXmZVGfoGSKfYMG",
124
158
  "name": "Follow On Cover",
125
159
  "gracePeriod": 8640000,
126
- "claimMethod": 0
160
+ "claimMethod": 0,
161
+ "assessmentCooldownPeriod": 86400,
162
+ "payoutRedemptionPeriod": 2592000
127
163
  },
128
164
  {
129
165
  "id": 18,
130
166
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmRzT2MF4aWQs2UJZBTHU8gFnPsEGQWRQ75zwQP4dh514Y",
131
167
  "name": "Immunefi Bug Bounty Cover",
132
168
  "gracePeriod": 3024000,
133
- "claimMethod": 0
169
+ "claimMethod": 0,
170
+ "assessmentCooldownPeriod": 86400,
171
+ "payoutRedemptionPeriod": 2592000
134
172
  },
135
173
  {
136
174
  "id": 19,
137
175
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmYdBBwtdn9Z6j9nX3SkzPjWmvHxjMUbu44sibnQ9QrCHX",
138
176
  "name": "Nexus Mutual Cover",
139
177
  "gracePeriod": 3024000,
140
- "claimMethod": 0
178
+ "claimMethod": 0,
179
+ "assessmentCooldownPeriod": 86400,
180
+ "payoutRedemptionPeriod": 2592000
141
181
  },
142
182
  {
143
183
  "id": 20,
144
184
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmWWsaMfuumQw9JEF5YPbgwv7TP5bKYdgjrhYyMo66pXwa",
145
185
  "name": "Generalized Fund Portfolio Cover",
146
186
  "gracePeriod": 10368000,
147
- "claimMethod": 0
187
+ "claimMethod": 0,
188
+ "assessmentCooldownPeriod": 86400,
189
+ "payoutRedemptionPeriod": 2592000
148
190
  },
149
191
  {
150
192
  "id": 21,
151
193
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmaR79gHuSzU371e7V6EEk1V14ohDm2Hk25FFuRgk9vrfx",
152
194
  "name": "Crypto Cover",
153
195
  "gracePeriod": 10368000,
154
- "claimMethod": 0
196
+ "claimMethod": 0,
197
+ "assessmentCooldownPeriod": 86400,
198
+ "payoutRedemptionPeriod": 2592000
155
199
  },
156
200
  {
157
201
  "id": 22,
158
202
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmUzkWmZhEr9i8eMxPpoz59aZRxZ4uVSbjkD8EnAxrX3VP",
159
203
  "name": "Native Syndicate Cover",
160
204
  "gracePeriod": 3024000,
161
- "claimMethod": 0
205
+ "claimMethod": 0,
206
+ "assessmentCooldownPeriod": 86400,
207
+ "payoutRedemptionPeriod": 2592000
162
208
  },
163
209
  {
164
210
  "id": 23,
165
211
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmR8jRGHA3fsLnBK5dtj27evTDQ3Vyic3zJnCh7dVas3pL",
166
212
  "name": "Spearbit Cantina Cover",
167
213
  "gracePeriod": 3024000,
168
- "claimMethod": 0
214
+ "claimMethod": 0,
215
+ "assessmentCooldownPeriod": 86400,
216
+ "payoutRedemptionPeriod": 2592000
169
217
  },
170
218
  {
171
219
  "id": 24,
172
220
  "coverWordingURL": "https://api.nexusmutual.io/ipfs/QmdwP8CfiEdr2CqeZf7GhzbPAT2SECbKr8FZmx1KwvfHS4",
173
221
  "name": "Leveraged Liquidation Cover",
174
222
  "gracePeriod": 3024000,
175
- "claimMethod": 0
223
+ "claimMethod": 0,
224
+ "assessmentCooldownPeriod": 86400,
225
+ "payoutRedemptionPeriod": 2592000
176
226
  }
177
227
  ]