@merkl/api 0.18.11 → 0.18.13
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/dist/database/api/.generated/drizzle/schema.d.ts +17 -0
- package/dist/database/api/.generated/drizzle/schema.js +1 -0
- package/dist/database/api/.generated/drizzle/schema.ts +1 -0
- package/dist/database/api/.generated/edge.js +4 -3
- package/dist/database/api/.generated/index-browser.js +1 -0
- package/dist/database/api/.generated/index.d.ts +58 -1
- package/dist/database/api/.generated/index.js +4 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -0
- package/dist/database/api/.generated/wasm.js +1 -0
- package/dist/src/eden/index.d.ts +96 -9
- package/dist/src/index.d.ts +20 -3
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +4 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +13 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +12 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +11 -0
- package/dist/src/modules/v4/router.d.ts +18 -0
- package/dist/src/modules/v4/token/token.controller.d.ts +8 -0
- package/dist/src/modules/v4/token/token.repository.d.ts +3 -0
- package/dist/src/modules/v4/token/token.service.d.ts +10 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
- package/dist/src/routes/v3/campaigns.d.ts +2 -3
- package/dist/src/routes/v3/campaigns.js +59 -21
- package/dist/src/routes/v3/router.d.ts +2 -3
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -5
package/dist/src/eden/index.d.ts
CHANGED
@@ -125,6 +125,7 @@ declare const eden: {
|
|
125
125
|
decimals: number;
|
126
126
|
verified: boolean;
|
127
127
|
isTest: boolean;
|
128
|
+
isPoint: boolean;
|
128
129
|
isNative: boolean;
|
129
130
|
} & {
|
130
131
|
price?: number | null | undefined;
|
@@ -525,6 +526,7 @@ declare const eden: {
|
|
525
526
|
displaySymbol: string;
|
526
527
|
verified: boolean;
|
527
528
|
isTest: boolean;
|
529
|
+
isPoint: boolean;
|
528
530
|
isNative: boolean;
|
529
531
|
price: number | null;
|
530
532
|
};
|
@@ -550,6 +552,7 @@ declare const eden: {
|
|
550
552
|
decimals: number;
|
551
553
|
verified: boolean;
|
552
554
|
isTest: boolean;
|
555
|
+
isPoint: boolean;
|
553
556
|
isNative: boolean;
|
554
557
|
} & {
|
555
558
|
price?: number | null | undefined;
|
@@ -611,6 +614,7 @@ declare const eden: {
|
|
611
614
|
decimals: number;
|
612
615
|
verified: boolean;
|
613
616
|
isTest: boolean;
|
617
|
+
isPoint: boolean;
|
614
618
|
isNative: boolean;
|
615
619
|
} & {
|
616
620
|
price?: number | null | undefined;
|
@@ -963,6 +967,7 @@ declare const eden: {
|
|
963
967
|
decimals: number;
|
964
968
|
verified: boolean;
|
965
969
|
isTest: boolean;
|
970
|
+
isPoint: boolean;
|
966
971
|
isNative: boolean;
|
967
972
|
} & {
|
968
973
|
price?: number | null | undefined;
|
@@ -1188,6 +1193,7 @@ declare const eden: {
|
|
1188
1193
|
decimals: number;
|
1189
1194
|
verified: boolean;
|
1190
1195
|
isTest: boolean;
|
1196
|
+
isPoint: boolean;
|
1191
1197
|
isNative: boolean;
|
1192
1198
|
} & {
|
1193
1199
|
price?: number | null | undefined;
|
@@ -1471,6 +1477,7 @@ declare const eden: {
|
|
1471
1477
|
decimals: number;
|
1472
1478
|
verified: boolean;
|
1473
1479
|
isTest: boolean;
|
1480
|
+
isPoint: boolean;
|
1474
1481
|
isNative: boolean;
|
1475
1482
|
price?: number | null | undefined;
|
1476
1483
|
} | undefined;
|
@@ -1496,6 +1503,7 @@ declare const eden: {
|
|
1496
1503
|
decimals: number;
|
1497
1504
|
verified: boolean;
|
1498
1505
|
isTest: boolean;
|
1506
|
+
isPoint: boolean;
|
1499
1507
|
isNative: boolean;
|
1500
1508
|
price?: number | null | undefined;
|
1501
1509
|
} | undefined;
|
@@ -1525,6 +1533,7 @@ declare const eden: {
|
|
1525
1533
|
displaySymbol: string;
|
1526
1534
|
verified: boolean;
|
1527
1535
|
isTest: boolean;
|
1536
|
+
isPoint: boolean;
|
1528
1537
|
isNative: boolean;
|
1529
1538
|
price: number | null;
|
1530
1539
|
};
|
@@ -1550,6 +1559,7 @@ declare const eden: {
|
|
1550
1559
|
displaySymbol: string;
|
1551
1560
|
verified: boolean;
|
1552
1561
|
isTest: boolean;
|
1562
|
+
isPoint: boolean;
|
1553
1563
|
isNative: boolean;
|
1554
1564
|
price: number | null;
|
1555
1565
|
}[];
|
@@ -1577,6 +1587,7 @@ declare const eden: {
|
|
1577
1587
|
decimals: number;
|
1578
1588
|
verified: boolean;
|
1579
1589
|
isTest: boolean;
|
1590
|
+
isPoint: boolean;
|
1580
1591
|
isNative: boolean;
|
1581
1592
|
} & {
|
1582
1593
|
price?: number | null | undefined;
|
@@ -1612,6 +1623,7 @@ declare const eden: {
|
|
1612
1623
|
decimals: number;
|
1613
1624
|
verified: boolean;
|
1614
1625
|
isTest: boolean;
|
1626
|
+
isPoint: boolean;
|
1615
1627
|
isNative: boolean;
|
1616
1628
|
} & {
|
1617
1629
|
price?: number | null | undefined;
|
@@ -1640,6 +1652,7 @@ declare const eden: {
|
|
1640
1652
|
decimals: number;
|
1641
1653
|
verified: boolean;
|
1642
1654
|
isTest: boolean;
|
1655
|
+
isPoint: boolean;
|
1643
1656
|
isNative: boolean;
|
1644
1657
|
price?: number | null | undefined;
|
1645
1658
|
} | undefined;
|
@@ -1729,6 +1742,7 @@ declare const eden: {
|
|
1729
1742
|
displaySymbol: string;
|
1730
1743
|
verified: boolean;
|
1731
1744
|
isTest: boolean;
|
1745
|
+
isPoint: boolean;
|
1732
1746
|
isNative: boolean;
|
1733
1747
|
price: number | null;
|
1734
1748
|
};
|
@@ -2325,6 +2339,7 @@ declare const eden: {
|
|
2325
2339
|
displaySymbol: string;
|
2326
2340
|
verified: boolean;
|
2327
2341
|
isTest: boolean;
|
2342
|
+
isPoint: boolean;
|
2328
2343
|
isNative: boolean;
|
2329
2344
|
price: number | null;
|
2330
2345
|
};
|
@@ -2347,6 +2362,7 @@ declare const eden: {
|
|
2347
2362
|
displaySymbol: string;
|
2348
2363
|
verified: boolean;
|
2349
2364
|
isTest: boolean;
|
2365
|
+
isPoint: boolean;
|
2350
2366
|
isNative: boolean;
|
2351
2367
|
price: number | null;
|
2352
2368
|
}[];
|
@@ -2429,6 +2445,7 @@ declare const eden: {
|
|
2429
2445
|
displaySymbol: string;
|
2430
2446
|
verified: boolean;
|
2431
2447
|
isTest: boolean;
|
2448
|
+
isPoint: boolean;
|
2432
2449
|
isNative: boolean;
|
2433
2450
|
price: number | null;
|
2434
2451
|
};
|
@@ -2451,6 +2468,7 @@ declare const eden: {
|
|
2451
2468
|
displaySymbol: string;
|
2452
2469
|
verified: boolean;
|
2453
2470
|
isTest: boolean;
|
2471
|
+
isPoint: boolean;
|
2454
2472
|
isNative: boolean;
|
2455
2473
|
price: number | null;
|
2456
2474
|
}[];
|
@@ -3577,6 +3595,7 @@ declare const eden: {
|
|
3577
3595
|
decimals: number;
|
3578
3596
|
verified: boolean;
|
3579
3597
|
isTest: boolean;
|
3598
|
+
isPoint: boolean;
|
3580
3599
|
isNative: boolean;
|
3581
3600
|
} & {
|
3582
3601
|
price?: number | null | undefined;
|
@@ -3977,6 +3996,7 @@ declare const eden: {
|
|
3977
3996
|
displaySymbol: string;
|
3978
3997
|
verified: boolean;
|
3979
3998
|
isTest: boolean;
|
3999
|
+
isPoint: boolean;
|
3980
4000
|
isNative: boolean;
|
3981
4001
|
price: number | null;
|
3982
4002
|
};
|
@@ -4002,6 +4022,7 @@ declare const eden: {
|
|
4002
4022
|
decimals: number;
|
4003
4023
|
verified: boolean;
|
4004
4024
|
isTest: boolean;
|
4025
|
+
isPoint: boolean;
|
4005
4026
|
isNative: boolean;
|
4006
4027
|
} & {
|
4007
4028
|
price?: number | null | undefined;
|
@@ -4063,6 +4084,7 @@ declare const eden: {
|
|
4063
4084
|
decimals: number;
|
4064
4085
|
verified: boolean;
|
4065
4086
|
isTest: boolean;
|
4087
|
+
isPoint: boolean;
|
4066
4088
|
isNative: boolean;
|
4067
4089
|
} & {
|
4068
4090
|
price?: number | null | undefined;
|
@@ -4415,6 +4437,7 @@ declare const eden: {
|
|
4415
4437
|
decimals: number;
|
4416
4438
|
verified: boolean;
|
4417
4439
|
isTest: boolean;
|
4440
|
+
isPoint: boolean;
|
4418
4441
|
isNative: boolean;
|
4419
4442
|
} & {
|
4420
4443
|
price?: number | null | undefined;
|
@@ -4640,6 +4663,7 @@ declare const eden: {
|
|
4640
4663
|
decimals: number;
|
4641
4664
|
verified: boolean;
|
4642
4665
|
isTest: boolean;
|
4666
|
+
isPoint: boolean;
|
4643
4667
|
isNative: boolean;
|
4644
4668
|
} & {
|
4645
4669
|
price?: number | null | undefined;
|
@@ -4923,6 +4947,7 @@ declare const eden: {
|
|
4923
4947
|
decimals: number;
|
4924
4948
|
verified: boolean;
|
4925
4949
|
isTest: boolean;
|
4950
|
+
isPoint: boolean;
|
4926
4951
|
isNative: boolean;
|
4927
4952
|
price?: number | null | undefined;
|
4928
4953
|
} | undefined;
|
@@ -4948,6 +4973,7 @@ declare const eden: {
|
|
4948
4973
|
decimals: number;
|
4949
4974
|
verified: boolean;
|
4950
4975
|
isTest: boolean;
|
4976
|
+
isPoint: boolean;
|
4951
4977
|
isNative: boolean;
|
4952
4978
|
price?: number | null | undefined;
|
4953
4979
|
} | undefined;
|
@@ -4977,6 +5003,7 @@ declare const eden: {
|
|
4977
5003
|
displaySymbol: string;
|
4978
5004
|
verified: boolean;
|
4979
5005
|
isTest: boolean;
|
5006
|
+
isPoint: boolean;
|
4980
5007
|
isNative: boolean;
|
4981
5008
|
price: number | null;
|
4982
5009
|
};
|
@@ -5002,6 +5029,7 @@ declare const eden: {
|
|
5002
5029
|
displaySymbol: string;
|
5003
5030
|
verified: boolean;
|
5004
5031
|
isTest: boolean;
|
5032
|
+
isPoint: boolean;
|
5005
5033
|
isNative: boolean;
|
5006
5034
|
price: number | null;
|
5007
5035
|
}[];
|
@@ -5029,6 +5057,7 @@ declare const eden: {
|
|
5029
5057
|
decimals: number;
|
5030
5058
|
verified: boolean;
|
5031
5059
|
isTest: boolean;
|
5060
|
+
isPoint: boolean;
|
5032
5061
|
isNative: boolean;
|
5033
5062
|
} & {
|
5034
5063
|
price?: number | null | undefined;
|
@@ -5064,6 +5093,7 @@ declare const eden: {
|
|
5064
5093
|
decimals: number;
|
5065
5094
|
verified: boolean;
|
5066
5095
|
isTest: boolean;
|
5096
|
+
isPoint: boolean;
|
5067
5097
|
isNative: boolean;
|
5068
5098
|
} & {
|
5069
5099
|
price?: number | null | undefined;
|
@@ -5092,6 +5122,7 @@ declare const eden: {
|
|
5092
5122
|
decimals: number;
|
5093
5123
|
verified: boolean;
|
5094
5124
|
isTest: boolean;
|
5125
|
+
isPoint: boolean;
|
5095
5126
|
isNative: boolean;
|
5096
5127
|
price?: number | null | undefined;
|
5097
5128
|
} | undefined;
|
@@ -5181,6 +5212,7 @@ declare const eden: {
|
|
5181
5212
|
displaySymbol: string;
|
5182
5213
|
verified: boolean;
|
5183
5214
|
isTest: boolean;
|
5215
|
+
isPoint: boolean;
|
5184
5216
|
isNative: boolean;
|
5185
5217
|
price: number | null;
|
5186
5218
|
};
|
@@ -5777,6 +5809,7 @@ declare const eden: {
|
|
5777
5809
|
displaySymbol: string;
|
5778
5810
|
verified: boolean;
|
5779
5811
|
isTest: boolean;
|
5812
|
+
isPoint: boolean;
|
5780
5813
|
isNative: boolean;
|
5781
5814
|
price: number | null;
|
5782
5815
|
};
|
@@ -5799,6 +5832,7 @@ declare const eden: {
|
|
5799
5832
|
displaySymbol: string;
|
5800
5833
|
verified: boolean;
|
5801
5834
|
isTest: boolean;
|
5835
|
+
isPoint: boolean;
|
5802
5836
|
isNative: boolean;
|
5803
5837
|
price: number | null;
|
5804
5838
|
}[];
|
@@ -5881,6 +5915,7 @@ declare const eden: {
|
|
5881
5915
|
displaySymbol: string;
|
5882
5916
|
verified: boolean;
|
5883
5917
|
isTest: boolean;
|
5918
|
+
isPoint: boolean;
|
5884
5919
|
isNative: boolean;
|
5885
5920
|
price: number | null;
|
5886
5921
|
};
|
@@ -5903,6 +5938,7 @@ declare const eden: {
|
|
5903
5938
|
displaySymbol: string;
|
5904
5939
|
verified: boolean;
|
5905
5940
|
isTest: boolean;
|
5941
|
+
isPoint: boolean;
|
5906
5942
|
isNative: boolean;
|
5907
5943
|
price: number | null;
|
5908
5944
|
}[];
|
@@ -7052,9 +7088,8 @@ declare const eden: {
|
|
7052
7088
|
};
|
7053
7089
|
fetch?: RequestInit | undefined;
|
7054
7090
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
7055
|
-
|
7056
|
-
|
7057
|
-
};
|
7091
|
+
[x: string]: any;
|
7092
|
+
200: any;
|
7058
7093
|
}>>;
|
7059
7094
|
};
|
7060
7095
|
campaignsForMainParameter: {
|
@@ -7812,6 +7847,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7812
7847
|
decimals: number;
|
7813
7848
|
verified: boolean;
|
7814
7849
|
isTest: boolean;
|
7850
|
+
isPoint: boolean;
|
7815
7851
|
isNative: boolean;
|
7816
7852
|
} & {
|
7817
7853
|
price?: number | null | undefined;
|
@@ -7896,6 +7932,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7896
7932
|
displaySymbol: string;
|
7897
7933
|
verified: boolean;
|
7898
7934
|
isTest: boolean;
|
7935
|
+
isPoint: boolean;
|
7899
7936
|
isNative: boolean;
|
7900
7937
|
price: number | null;
|
7901
7938
|
};
|
@@ -7921,6 +7958,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7921
7958
|
decimals: number;
|
7922
7959
|
verified: boolean;
|
7923
7960
|
isTest: boolean;
|
7961
|
+
isPoint: boolean;
|
7924
7962
|
isNative: boolean;
|
7925
7963
|
} & {
|
7926
7964
|
price?: number | null | undefined;
|
@@ -7982,6 +8020,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
7982
8020
|
decimals: number;
|
7983
8021
|
verified: boolean;
|
7984
8022
|
isTest: boolean;
|
8023
|
+
isPoint: boolean;
|
7985
8024
|
isNative: boolean;
|
7986
8025
|
} & {
|
7987
8026
|
price?: number | null | undefined;
|
@@ -8851,6 +8890,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8851
8890
|
decimals: number;
|
8852
8891
|
verified: boolean;
|
8853
8892
|
isTest: boolean;
|
8893
|
+
isPoint: boolean;
|
8854
8894
|
isNative: boolean;
|
8855
8895
|
} & {
|
8856
8896
|
price?: number | null | undefined;
|
@@ -8932,6 +8972,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
8932
8972
|
decimals: number;
|
8933
8973
|
verified: boolean;
|
8934
8974
|
isTest: boolean;
|
8975
|
+
isPoint: boolean;
|
8935
8976
|
isNative: boolean;
|
8936
8977
|
} & {
|
8937
8978
|
price?: number | null | undefined;
|
@@ -9279,6 +9320,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9279
9320
|
decimals: number;
|
9280
9321
|
verified: boolean;
|
9281
9322
|
isTest: boolean;
|
9323
|
+
isPoint: boolean;
|
9282
9324
|
isNative: boolean;
|
9283
9325
|
price?: number | null | undefined;
|
9284
9326
|
} | undefined;
|
@@ -9311,6 +9353,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9311
9353
|
decimals: number;
|
9312
9354
|
verified: boolean;
|
9313
9355
|
isTest: boolean;
|
9356
|
+
isPoint: boolean;
|
9314
9357
|
isNative: boolean;
|
9315
9358
|
price?: number | null | undefined;
|
9316
9359
|
} | undefined;
|
@@ -9343,6 +9386,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9343
9386
|
displaySymbol: string;
|
9344
9387
|
verified: boolean;
|
9345
9388
|
isTest: boolean;
|
9389
|
+
isPoint: boolean;
|
9346
9390
|
isNative: boolean;
|
9347
9391
|
price: number | null;
|
9348
9392
|
}[];
|
@@ -9374,6 +9418,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9374
9418
|
decimals: number;
|
9375
9419
|
verified: boolean;
|
9376
9420
|
isTest: boolean;
|
9421
|
+
isPoint: boolean;
|
9377
9422
|
isNative: boolean;
|
9378
9423
|
} & {
|
9379
9424
|
price?: number | null | undefined;
|
@@ -9412,6 +9457,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9412
9457
|
decimals: number;
|
9413
9458
|
verified: boolean;
|
9414
9459
|
isTest: boolean;
|
9460
|
+
isPoint: boolean;
|
9415
9461
|
isNative: boolean;
|
9416
9462
|
} & {
|
9417
9463
|
price?: number | null | undefined;
|
@@ -9468,6 +9514,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9468
9514
|
decimals: number;
|
9469
9515
|
verified: boolean;
|
9470
9516
|
isTest: boolean;
|
9517
|
+
isPoint: boolean;
|
9471
9518
|
isNative: boolean;
|
9472
9519
|
price?: number | null | undefined;
|
9473
9520
|
} | undefined;
|
@@ -9503,6 +9550,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9503
9550
|
displaySymbol: string;
|
9504
9551
|
verified: boolean;
|
9505
9552
|
isTest: boolean;
|
9553
|
+
isPoint: boolean;
|
9506
9554
|
isNative: boolean;
|
9507
9555
|
price: number | null;
|
9508
9556
|
};
|
@@ -9578,6 +9626,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
9578
9626
|
displaySymbol: string;
|
9579
9627
|
verified: boolean;
|
9580
9628
|
isTest: boolean;
|
9629
|
+
isPoint: boolean;
|
9581
9630
|
isNative: boolean;
|
9582
9631
|
price: number | null;
|
9583
9632
|
};
|
@@ -10418,6 +10467,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10418
10467
|
displaySymbol: string;
|
10419
10468
|
verified: boolean;
|
10420
10469
|
isTest: boolean;
|
10470
|
+
isPoint: boolean;
|
10421
10471
|
isNative: boolean;
|
10422
10472
|
price: number | null;
|
10423
10473
|
};
|
@@ -10440,6 +10490,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10440
10490
|
displaySymbol: string;
|
10441
10491
|
verified: boolean;
|
10442
10492
|
isTest: boolean;
|
10493
|
+
isPoint: boolean;
|
10443
10494
|
isNative: boolean;
|
10444
10495
|
price: number | null;
|
10445
10496
|
}[];
|
@@ -10533,6 +10584,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10533
10584
|
displaySymbol: string;
|
10534
10585
|
verified: boolean;
|
10535
10586
|
isTest: boolean;
|
10587
|
+
isPoint: boolean;
|
10536
10588
|
isNative: boolean;
|
10537
10589
|
price: number | null;
|
10538
10590
|
};
|
@@ -10555,6 +10607,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
10555
10607
|
displaySymbol: string;
|
10556
10608
|
verified: boolean;
|
10557
10609
|
isTest: boolean;
|
10610
|
+
isPoint: boolean;
|
10558
10611
|
isNative: boolean;
|
10559
10612
|
price: number | null;
|
10560
10613
|
}[];
|
@@ -11977,9 +12030,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
11977
12030
|
};
|
11978
12031
|
headers: unknown;
|
11979
12032
|
response: {
|
11980
|
-
|
11981
|
-
|
11982
|
-
};
|
12033
|
+
[x: string]: any;
|
12034
|
+
200: any;
|
11983
12035
|
};
|
11984
12036
|
};
|
11985
12037
|
};
|
@@ -12781,6 +12833,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
12781
12833
|
decimals: number;
|
12782
12834
|
verified: boolean;
|
12783
12835
|
isTest: boolean;
|
12836
|
+
isPoint: boolean;
|
12784
12837
|
isNative: boolean;
|
12785
12838
|
} & {
|
12786
12839
|
price?: number | null | undefined;
|
@@ -13181,6 +13234,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13181
13234
|
displaySymbol: string;
|
13182
13235
|
verified: boolean;
|
13183
13236
|
isTest: boolean;
|
13237
|
+
isPoint: boolean;
|
13184
13238
|
isNative: boolean;
|
13185
13239
|
price: number | null;
|
13186
13240
|
};
|
@@ -13206,6 +13260,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13206
13260
|
decimals: number;
|
13207
13261
|
verified: boolean;
|
13208
13262
|
isTest: boolean;
|
13263
|
+
isPoint: boolean;
|
13209
13264
|
isNative: boolean;
|
13210
13265
|
} & {
|
13211
13266
|
price?: number | null | undefined;
|
@@ -13267,6 +13322,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13267
13322
|
decimals: number;
|
13268
13323
|
verified: boolean;
|
13269
13324
|
isTest: boolean;
|
13325
|
+
isPoint: boolean;
|
13270
13326
|
isNative: boolean;
|
13271
13327
|
} & {
|
13272
13328
|
price?: number | null | undefined;
|
@@ -13619,6 +13675,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13619
13675
|
decimals: number;
|
13620
13676
|
verified: boolean;
|
13621
13677
|
isTest: boolean;
|
13678
|
+
isPoint: boolean;
|
13622
13679
|
isNative: boolean;
|
13623
13680
|
} & {
|
13624
13681
|
price?: number | null | undefined;
|
@@ -13844,6 +13901,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
13844
13901
|
decimals: number;
|
13845
13902
|
verified: boolean;
|
13846
13903
|
isTest: boolean;
|
13904
|
+
isPoint: boolean;
|
13847
13905
|
isNative: boolean;
|
13848
13906
|
} & {
|
13849
13907
|
price?: number | null | undefined;
|
@@ -14127,6 +14185,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14127
14185
|
decimals: number;
|
14128
14186
|
verified: boolean;
|
14129
14187
|
isTest: boolean;
|
14188
|
+
isPoint: boolean;
|
14130
14189
|
isNative: boolean;
|
14131
14190
|
price?: number | null | undefined;
|
14132
14191
|
} | undefined;
|
@@ -14152,6 +14211,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14152
14211
|
decimals: number;
|
14153
14212
|
verified: boolean;
|
14154
14213
|
isTest: boolean;
|
14214
|
+
isPoint: boolean;
|
14155
14215
|
isNative: boolean;
|
14156
14216
|
price?: number | null | undefined;
|
14157
14217
|
} | undefined;
|
@@ -14181,6 +14241,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14181
14241
|
displaySymbol: string;
|
14182
14242
|
verified: boolean;
|
14183
14243
|
isTest: boolean;
|
14244
|
+
isPoint: boolean;
|
14184
14245
|
isNative: boolean;
|
14185
14246
|
price: number | null;
|
14186
14247
|
};
|
@@ -14206,6 +14267,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14206
14267
|
displaySymbol: string;
|
14207
14268
|
verified: boolean;
|
14208
14269
|
isTest: boolean;
|
14270
|
+
isPoint: boolean;
|
14209
14271
|
isNative: boolean;
|
14210
14272
|
price: number | null;
|
14211
14273
|
}[];
|
@@ -14233,6 +14295,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14233
14295
|
decimals: number;
|
14234
14296
|
verified: boolean;
|
14235
14297
|
isTest: boolean;
|
14298
|
+
isPoint: boolean;
|
14236
14299
|
isNative: boolean;
|
14237
14300
|
} & {
|
14238
14301
|
price?: number | null | undefined;
|
@@ -14268,6 +14331,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14268
14331
|
decimals: number;
|
14269
14332
|
verified: boolean;
|
14270
14333
|
isTest: boolean;
|
14334
|
+
isPoint: boolean;
|
14271
14335
|
isNative: boolean;
|
14272
14336
|
} & {
|
14273
14337
|
price?: number | null | undefined;
|
@@ -14296,6 +14360,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14296
14360
|
decimals: number;
|
14297
14361
|
verified: boolean;
|
14298
14362
|
isTest: boolean;
|
14363
|
+
isPoint: boolean;
|
14299
14364
|
isNative: boolean;
|
14300
14365
|
price?: number | null | undefined;
|
14301
14366
|
} | undefined;
|
@@ -14385,6 +14450,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14385
14450
|
displaySymbol: string;
|
14386
14451
|
verified: boolean;
|
14387
14452
|
isTest: boolean;
|
14453
|
+
isPoint: boolean;
|
14388
14454
|
isNative: boolean;
|
14389
14455
|
price: number | null;
|
14390
14456
|
};
|
@@ -14981,6 +15047,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
14981
15047
|
displaySymbol: string;
|
14982
15048
|
verified: boolean;
|
14983
15049
|
isTest: boolean;
|
15050
|
+
isPoint: boolean;
|
14984
15051
|
isNative: boolean;
|
14985
15052
|
price: number | null;
|
14986
15053
|
};
|
@@ -15003,6 +15070,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15003
15070
|
displaySymbol: string;
|
15004
15071
|
verified: boolean;
|
15005
15072
|
isTest: boolean;
|
15073
|
+
isPoint: boolean;
|
15006
15074
|
isNative: boolean;
|
15007
15075
|
price: number | null;
|
15008
15076
|
}[];
|
@@ -15085,6 +15153,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15085
15153
|
displaySymbol: string;
|
15086
15154
|
verified: boolean;
|
15087
15155
|
isTest: boolean;
|
15156
|
+
isPoint: boolean;
|
15088
15157
|
isNative: boolean;
|
15089
15158
|
price: number | null;
|
15090
15159
|
};
|
@@ -15107,6 +15176,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
15107
15176
|
displaySymbol: string;
|
15108
15177
|
verified: boolean;
|
15109
15178
|
isTest: boolean;
|
15179
|
+
isPoint: boolean;
|
15110
15180
|
isNative: boolean;
|
15111
15181
|
price: number | null;
|
15112
15182
|
}[];
|
@@ -16233,6 +16303,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16233
16303
|
decimals: number;
|
16234
16304
|
verified: boolean;
|
16235
16305
|
isTest: boolean;
|
16306
|
+
isPoint: boolean;
|
16236
16307
|
isNative: boolean;
|
16237
16308
|
} & {
|
16238
16309
|
price?: number | null | undefined;
|
@@ -16633,6 +16704,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16633
16704
|
displaySymbol: string;
|
16634
16705
|
verified: boolean;
|
16635
16706
|
isTest: boolean;
|
16707
|
+
isPoint: boolean;
|
16636
16708
|
isNative: boolean;
|
16637
16709
|
price: number | null;
|
16638
16710
|
};
|
@@ -16658,6 +16730,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16658
16730
|
decimals: number;
|
16659
16731
|
verified: boolean;
|
16660
16732
|
isTest: boolean;
|
16733
|
+
isPoint: boolean;
|
16661
16734
|
isNative: boolean;
|
16662
16735
|
} & {
|
16663
16736
|
price?: number | null | undefined;
|
@@ -16719,6 +16792,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
16719
16792
|
decimals: number;
|
16720
16793
|
verified: boolean;
|
16721
16794
|
isTest: boolean;
|
16795
|
+
isPoint: boolean;
|
16722
16796
|
isNative: boolean;
|
16723
16797
|
} & {
|
16724
16798
|
price?: number | null | undefined;
|
@@ -17071,6 +17145,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17071
17145
|
decimals: number;
|
17072
17146
|
verified: boolean;
|
17073
17147
|
isTest: boolean;
|
17148
|
+
isPoint: boolean;
|
17074
17149
|
isNative: boolean;
|
17075
17150
|
} & {
|
17076
17151
|
price?: number | null | undefined;
|
@@ -17296,6 +17371,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17296
17371
|
decimals: number;
|
17297
17372
|
verified: boolean;
|
17298
17373
|
isTest: boolean;
|
17374
|
+
isPoint: boolean;
|
17299
17375
|
isNative: boolean;
|
17300
17376
|
} & {
|
17301
17377
|
price?: number | null | undefined;
|
@@ -17579,6 +17655,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17579
17655
|
decimals: number;
|
17580
17656
|
verified: boolean;
|
17581
17657
|
isTest: boolean;
|
17658
|
+
isPoint: boolean;
|
17582
17659
|
isNative: boolean;
|
17583
17660
|
price?: number | null | undefined;
|
17584
17661
|
} | undefined;
|
@@ -17604,6 +17681,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17604
17681
|
decimals: number;
|
17605
17682
|
verified: boolean;
|
17606
17683
|
isTest: boolean;
|
17684
|
+
isPoint: boolean;
|
17607
17685
|
isNative: boolean;
|
17608
17686
|
price?: number | null | undefined;
|
17609
17687
|
} | undefined;
|
@@ -17633,6 +17711,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17633
17711
|
displaySymbol: string;
|
17634
17712
|
verified: boolean;
|
17635
17713
|
isTest: boolean;
|
17714
|
+
isPoint: boolean;
|
17636
17715
|
isNative: boolean;
|
17637
17716
|
price: number | null;
|
17638
17717
|
};
|
@@ -17658,6 +17737,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17658
17737
|
displaySymbol: string;
|
17659
17738
|
verified: boolean;
|
17660
17739
|
isTest: boolean;
|
17740
|
+
isPoint: boolean;
|
17661
17741
|
isNative: boolean;
|
17662
17742
|
price: number | null;
|
17663
17743
|
}[];
|
@@ -17685,6 +17765,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17685
17765
|
decimals: number;
|
17686
17766
|
verified: boolean;
|
17687
17767
|
isTest: boolean;
|
17768
|
+
isPoint: boolean;
|
17688
17769
|
isNative: boolean;
|
17689
17770
|
} & {
|
17690
17771
|
price?: number | null | undefined;
|
@@ -17720,6 +17801,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17720
17801
|
decimals: number;
|
17721
17802
|
verified: boolean;
|
17722
17803
|
isTest: boolean;
|
17804
|
+
isPoint: boolean;
|
17723
17805
|
isNative: boolean;
|
17724
17806
|
} & {
|
17725
17807
|
price?: number | null | undefined;
|
@@ -17748,6 +17830,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17748
17830
|
decimals: number;
|
17749
17831
|
verified: boolean;
|
17750
17832
|
isTest: boolean;
|
17833
|
+
isPoint: boolean;
|
17751
17834
|
isNative: boolean;
|
17752
17835
|
price?: number | null | undefined;
|
17753
17836
|
} | undefined;
|
@@ -17837,6 +17920,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
17837
17920
|
displaySymbol: string;
|
17838
17921
|
verified: boolean;
|
17839
17922
|
isTest: boolean;
|
17923
|
+
isPoint: boolean;
|
17840
17924
|
isNative: boolean;
|
17841
17925
|
price: number | null;
|
17842
17926
|
};
|
@@ -18433,6 +18517,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
18433
18517
|
displaySymbol: string;
|
18434
18518
|
verified: boolean;
|
18435
18519
|
isTest: boolean;
|
18520
|
+
isPoint: boolean;
|
18436
18521
|
isNative: boolean;
|
18437
18522
|
price: number | null;
|
18438
18523
|
};
|
@@ -18455,6 +18540,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
18455
18540
|
displaySymbol: string;
|
18456
18541
|
verified: boolean;
|
18457
18542
|
isTest: boolean;
|
18543
|
+
isPoint: boolean;
|
18458
18544
|
isNative: boolean;
|
18459
18545
|
price: number | null;
|
18460
18546
|
}[];
|
@@ -18537,6 +18623,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
18537
18623
|
displaySymbol: string;
|
18538
18624
|
verified: boolean;
|
18539
18625
|
isTest: boolean;
|
18626
|
+
isPoint: boolean;
|
18540
18627
|
isNative: boolean;
|
18541
18628
|
price: number | null;
|
18542
18629
|
};
|
@@ -18559,6 +18646,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
18559
18646
|
displaySymbol: string;
|
18560
18647
|
verified: boolean;
|
18561
18648
|
isTest: boolean;
|
18649
|
+
isPoint: boolean;
|
18562
18650
|
isNative: boolean;
|
18563
18651
|
price: number | null;
|
18564
18652
|
}[];
|
@@ -19708,9 +19796,8 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
|
|
19708
19796
|
};
|
19709
19797
|
fetch?: RequestInit | undefined;
|
19710
19798
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
19711
|
-
|
19712
|
-
|
19713
|
-
};
|
19799
|
+
[x: string]: any;
|
19800
|
+
200: any;
|
19714
19801
|
}>>;
|
19715
19802
|
};
|
19716
19803
|
campaignsForMainParameter: {
|