@perspectivefi/token-list 1.26.55 → 1.26.56
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 +25 -24
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -258,35 +258,36 @@ Protocols define yield multipliers and reward configurations for principal token
|
|
|
258
258
|
|
|
259
259
|
1. **Create Branch**
|
|
260
260
|
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
261
|
+
```bash
|
|
262
|
+
git checkout -b chore/protocol-<PROTOCOL_NAME>-<CHAIN_ID>
|
|
263
|
+
```
|
|
264
264
|
|
|
265
265
|
2. **Edit Protocol List** (`src/protocols/protocolList.json`)
|
|
266
266
|
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
267
|
+
```json
|
|
268
|
+
[
|
|
269
|
+
{
|
|
270
|
+
"ptAddress": "0x6def54ae7e38992a7d1ab60d279483ba7f7b0aeb",
|
|
271
|
+
"chainId": 1,
|
|
272
|
+
"multipliers": [
|
|
273
|
+
{
|
|
274
|
+
"amount": 1.5,
|
|
275
|
+
"name": "Karak XP"
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"amount": 3,
|
|
279
|
+
"name": "Ether.fi Points"
|
|
280
|
+
}
|
|
281
|
+
]
|
|
282
|
+
}
|
|
283
|
+
]
|
|
284
|
+
```
|
|
285
285
|
|
|
286
286
|
3. **Commit Changes**
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
287
|
+
|
|
288
|
+
```bash
|
|
289
|
+
git commit -m "chore: add <PROTOCOL_NAME>, chainId: <CHAIN_ID>"
|
|
290
|
+
```
|
|
290
291
|
|
|
291
292
|
## 🔍 Schema Validation
|
|
292
293
|
|