@merkl/api 0.17.31 → 0.17.33

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 (32) hide show
  1. package/dist/database/api/.generated/drizzle/schema.d.ts +17 -0
  2. package/dist/database/api/.generated/drizzle/schema.js +1 -0
  3. package/dist/database/api/.generated/drizzle/schema.ts +1 -0
  4. package/dist/database/api/.generated/edge.js +4 -3
  5. package/dist/database/api/.generated/index-browser.js +1 -0
  6. package/dist/database/api/.generated/index.d.ts +58 -1
  7. package/dist/database/api/.generated/index.js +4 -3
  8. package/dist/database/api/.generated/package.json +1 -1
  9. package/dist/database/api/.generated/schema.prisma +1 -0
  10. package/dist/database/api/.generated/wasm.js +1 -0
  11. package/dist/src/eden/index.d.ts +100 -0
  12. package/dist/src/index.d.ts +20 -0
  13. package/dist/src/modules/v4/campaign/campaign.controller.d.ts +2 -0
  14. package/dist/src/modules/v4/campaign/campaign.repository.d.ts +3 -0
  15. package/dist/src/modules/v4/campaign/campaign.service.d.ts +4 -0
  16. package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +4 -0
  17. package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +13 -0
  18. package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +12 -0
  19. package/dist/src/modules/v4/opportunity/opportunity.service.js +5 -1
  20. package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
  21. package/dist/src/modules/v4/reward/reward.service.d.ts +11 -0
  22. package/dist/src/modules/v4/router.d.ts +20 -0
  23. package/dist/src/modules/v4/token/token.controller.d.ts +10 -0
  24. package/dist/src/modules/v4/token/token.controller.js +1 -1
  25. package/dist/src/modules/v4/token/token.model.d.ts +2 -0
  26. package/dist/src/modules/v4/token/token.model.js +2 -0
  27. package/dist/src/modules/v4/token/token.repository.d.ts +3 -0
  28. package/dist/src/modules/v4/token/token.service.d.ts +12 -1
  29. package/dist/src/modules/v4/token/token.service.js +19 -7
  30. package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
  31. package/dist/tsconfig.package.tsbuildinfo +1 -1
  32. package/package.json +1 -1
@@ -125,6 +125,7 @@ declare const eden: {
125
125
  decimals: number;
126
126
  verified: boolean;
127
127
  isTest: boolean;
128
+ isNative: boolean;
128
129
  } & {
129
130
  price?: number | null | undefined;
130
131
  })[];
@@ -524,6 +525,7 @@ declare const eden: {
524
525
  displaySymbol: string;
525
526
  verified: boolean;
526
527
  isTest: boolean;
528
+ isNative: boolean;
527
529
  price: number | null;
528
530
  };
529
531
  amount: bigint;
@@ -548,6 +550,7 @@ declare const eden: {
548
550
  decimals: number;
549
551
  verified: boolean;
550
552
  isTest: boolean;
553
+ isNative: boolean;
551
554
  } & {
552
555
  price?: number | null | undefined;
553
556
  };
@@ -608,6 +611,7 @@ declare const eden: {
608
611
  decimals: number;
609
612
  verified: boolean;
610
613
  isTest: boolean;
614
+ isNative: boolean;
611
615
  } & {
612
616
  price?: number | null | undefined;
613
617
  })[];
@@ -959,6 +963,7 @@ declare const eden: {
959
963
  decimals: number;
960
964
  verified: boolean;
961
965
  isTest: boolean;
966
+ isNative: boolean;
962
967
  } & {
963
968
  price?: number | null | undefined;
964
969
  };
@@ -1183,6 +1188,7 @@ declare const eden: {
1183
1188
  decimals: number;
1184
1189
  verified: boolean;
1185
1190
  isTest: boolean;
1191
+ isNative: boolean;
1186
1192
  } & {
1187
1193
  price?: number | null | undefined;
1188
1194
  };
@@ -1465,6 +1471,7 @@ declare const eden: {
1465
1471
  decimals: number;
1466
1472
  verified: boolean;
1467
1473
  isTest: boolean;
1474
+ isNative: boolean;
1468
1475
  price?: number | null | undefined;
1469
1476
  } | undefined;
1470
1477
  }>>;
@@ -1489,6 +1496,7 @@ declare const eden: {
1489
1496
  decimals: number;
1490
1497
  verified: boolean;
1491
1498
  isTest: boolean;
1499
+ isNative: boolean;
1492
1500
  price?: number | null | undefined;
1493
1501
  } | undefined;
1494
1502
  }>>;
@@ -1497,6 +1505,7 @@ declare const eden: {
1497
1505
  name?: string | undefined;
1498
1506
  icon?: string | undefined;
1499
1507
  displaySymbol?: string | undefined;
1508
+ verified?: boolean | undefined;
1500
1509
  isTest?: boolean | undefined;
1501
1510
  }, options: {
1502
1511
  headers: {
@@ -1516,6 +1525,7 @@ declare const eden: {
1516
1525
  displaySymbol: string;
1517
1526
  verified: boolean;
1518
1527
  isTest: boolean;
1528
+ isNative: boolean;
1519
1529
  price: number | null;
1520
1530
  };
1521
1531
  }>>;
@@ -1540,6 +1550,7 @@ declare const eden: {
1540
1550
  displaySymbol: string;
1541
1551
  verified: boolean;
1542
1552
  isTest: boolean;
1553
+ isNative: boolean;
1543
1554
  price: number | null;
1544
1555
  }[];
1545
1556
  }>>;
@@ -1566,6 +1577,7 @@ declare const eden: {
1566
1577
  decimals: number;
1567
1578
  verified: boolean;
1568
1579
  isTest: boolean;
1580
+ isNative: boolean;
1569
1581
  } & {
1570
1582
  price?: number | null | undefined;
1571
1583
  } & {
@@ -1584,6 +1596,7 @@ declare const eden: {
1584
1596
  address?: string | undefined;
1585
1597
  displaySymbol?: string | undefined;
1586
1598
  verified?: boolean | undefined;
1599
+ isNative?: boolean | undefined;
1587
1600
  test?: boolean | undefined;
1588
1601
  };
1589
1602
  fetch?: RequestInit | undefined;
@@ -1598,6 +1611,7 @@ declare const eden: {
1598
1611
  decimals: number;
1599
1612
  verified: boolean;
1600
1613
  isTest: boolean;
1614
+ isNative: boolean;
1601
1615
  } & {
1602
1616
  price?: number | null | undefined;
1603
1617
  })[];
@@ -1625,6 +1639,7 @@ declare const eden: {
1625
1639
  decimals: number;
1626
1640
  verified: boolean;
1627
1641
  isTest: boolean;
1642
+ isNative: boolean;
1628
1643
  price?: number | null | undefined;
1629
1644
  } | undefined;
1630
1645
  }>>;
@@ -1640,6 +1655,7 @@ declare const eden: {
1640
1655
  address?: string | undefined;
1641
1656
  displaySymbol?: string | undefined;
1642
1657
  verified?: boolean | undefined;
1658
+ isNative?: boolean | undefined;
1643
1659
  test?: boolean | undefined;
1644
1660
  };
1645
1661
  fetch?: RequestInit | undefined;
@@ -2289,6 +2305,7 @@ declare const eden: {
2289
2305
  displaySymbol: string;
2290
2306
  verified: boolean;
2291
2307
  isTest: boolean;
2308
+ isNative: boolean;
2292
2309
  price: number | null;
2293
2310
  };
2294
2311
  breakdowns: {
@@ -2310,6 +2327,7 @@ declare const eden: {
2310
2327
  displaySymbol: string;
2311
2328
  verified: boolean;
2312
2329
  isTest: boolean;
2330
+ isNative: boolean;
2313
2331
  price: number | null;
2314
2332
  }[];
2315
2333
  Protocols: {
@@ -2391,6 +2409,7 @@ declare const eden: {
2391
2409
  displaySymbol: string;
2392
2410
  verified: boolean;
2393
2411
  isTest: boolean;
2412
+ isNative: boolean;
2394
2413
  price: number | null;
2395
2414
  };
2396
2415
  breakdowns: {
@@ -2412,6 +2431,7 @@ declare const eden: {
2412
2431
  displaySymbol: string;
2413
2432
  verified: boolean;
2414
2433
  isTest: boolean;
2434
+ isNative: boolean;
2415
2435
  price: number | null;
2416
2436
  }[];
2417
2437
  Protocols: {
@@ -3522,6 +3542,7 @@ declare const eden: {
3522
3542
  decimals: number;
3523
3543
  verified: boolean;
3524
3544
  isTest: boolean;
3545
+ isNative: boolean;
3525
3546
  } & {
3526
3547
  price?: number | null | undefined;
3527
3548
  })[];
@@ -3921,6 +3942,7 @@ declare const eden: {
3921
3942
  displaySymbol: string;
3922
3943
  verified: boolean;
3923
3944
  isTest: boolean;
3945
+ isNative: boolean;
3924
3946
  price: number | null;
3925
3947
  };
3926
3948
  amount: bigint;
@@ -3945,6 +3967,7 @@ declare const eden: {
3945
3967
  decimals: number;
3946
3968
  verified: boolean;
3947
3969
  isTest: boolean;
3970
+ isNative: boolean;
3948
3971
  } & {
3949
3972
  price?: number | null | undefined;
3950
3973
  };
@@ -4005,6 +4028,7 @@ declare const eden: {
4005
4028
  decimals: number;
4006
4029
  verified: boolean;
4007
4030
  isTest: boolean;
4031
+ isNative: boolean;
4008
4032
  } & {
4009
4033
  price?: number | null | undefined;
4010
4034
  })[];
@@ -4356,6 +4380,7 @@ declare const eden: {
4356
4380
  decimals: number;
4357
4381
  verified: boolean;
4358
4382
  isTest: boolean;
4383
+ isNative: boolean;
4359
4384
  } & {
4360
4385
  price?: number | null | undefined;
4361
4386
  };
@@ -4580,6 +4605,7 @@ declare const eden: {
4580
4605
  decimals: number;
4581
4606
  verified: boolean;
4582
4607
  isTest: boolean;
4608
+ isNative: boolean;
4583
4609
  } & {
4584
4610
  price?: number | null | undefined;
4585
4611
  };
@@ -4862,6 +4888,7 @@ declare const eden: {
4862
4888
  decimals: number;
4863
4889
  verified: boolean;
4864
4890
  isTest: boolean;
4891
+ isNative: boolean;
4865
4892
  price?: number | null | undefined;
4866
4893
  } | undefined;
4867
4894
  }>>;
@@ -4886,6 +4913,7 @@ declare const eden: {
4886
4913
  decimals: number;
4887
4914
  verified: boolean;
4888
4915
  isTest: boolean;
4916
+ isNative: boolean;
4889
4917
  price?: number | null | undefined;
4890
4918
  } | undefined;
4891
4919
  }>>;
@@ -4894,6 +4922,7 @@ declare const eden: {
4894
4922
  name?: string | undefined;
4895
4923
  icon?: string | undefined;
4896
4924
  displaySymbol?: string | undefined;
4925
+ verified?: boolean | undefined;
4897
4926
  isTest?: boolean | undefined;
4898
4927
  }, options: {
4899
4928
  headers: {
@@ -4913,6 +4942,7 @@ declare const eden: {
4913
4942
  displaySymbol: string;
4914
4943
  verified: boolean;
4915
4944
  isTest: boolean;
4945
+ isNative: boolean;
4916
4946
  price: number | null;
4917
4947
  };
4918
4948
  }>>;
@@ -4937,6 +4967,7 @@ declare const eden: {
4937
4967
  displaySymbol: string;
4938
4968
  verified: boolean;
4939
4969
  isTest: boolean;
4970
+ isNative: boolean;
4940
4971
  price: number | null;
4941
4972
  }[];
4942
4973
  }>>;
@@ -4963,6 +4994,7 @@ declare const eden: {
4963
4994
  decimals: number;
4964
4995
  verified: boolean;
4965
4996
  isTest: boolean;
4997
+ isNative: boolean;
4966
4998
  } & {
4967
4999
  price?: number | null | undefined;
4968
5000
  } & {
@@ -4981,6 +5013,7 @@ declare const eden: {
4981
5013
  address?: string | undefined;
4982
5014
  displaySymbol?: string | undefined;
4983
5015
  verified?: boolean | undefined;
5016
+ isNative?: boolean | undefined;
4984
5017
  test?: boolean | undefined;
4985
5018
  };
4986
5019
  fetch?: RequestInit | undefined;
@@ -4995,6 +5028,7 @@ declare const eden: {
4995
5028
  decimals: number;
4996
5029
  verified: boolean;
4997
5030
  isTest: boolean;
5031
+ isNative: boolean;
4998
5032
  } & {
4999
5033
  price?: number | null | undefined;
5000
5034
  })[];
@@ -5022,6 +5056,7 @@ declare const eden: {
5022
5056
  decimals: number;
5023
5057
  verified: boolean;
5024
5058
  isTest: boolean;
5059
+ isNative: boolean;
5025
5060
  price?: number | null | undefined;
5026
5061
  } | undefined;
5027
5062
  }>>;
@@ -5037,6 +5072,7 @@ declare const eden: {
5037
5072
  address?: string | undefined;
5038
5073
  displaySymbol?: string | undefined;
5039
5074
  verified?: boolean | undefined;
5075
+ isNative?: boolean | undefined;
5040
5076
  test?: boolean | undefined;
5041
5077
  };
5042
5078
  fetch?: RequestInit | undefined;
@@ -5686,6 +5722,7 @@ declare const eden: {
5686
5722
  displaySymbol: string;
5687
5723
  verified: boolean;
5688
5724
  isTest: boolean;
5725
+ isNative: boolean;
5689
5726
  price: number | null;
5690
5727
  };
5691
5728
  breakdowns: {
@@ -5707,6 +5744,7 @@ declare const eden: {
5707
5744
  displaySymbol: string;
5708
5745
  verified: boolean;
5709
5746
  isTest: boolean;
5747
+ isNative: boolean;
5710
5748
  price: number | null;
5711
5749
  }[];
5712
5750
  Protocols: {
@@ -5788,6 +5826,7 @@ declare const eden: {
5788
5826
  displaySymbol: string;
5789
5827
  verified: boolean;
5790
5828
  isTest: boolean;
5829
+ isNative: boolean;
5791
5830
  price: number | null;
5792
5831
  };
5793
5832
  breakdowns: {
@@ -5809,6 +5848,7 @@ declare const eden: {
5809
5848
  displaySymbol: string;
5810
5849
  verified: boolean;
5811
5850
  isTest: boolean;
5851
+ isNative: boolean;
5812
5852
  price: number | null;
5813
5853
  }[];
5814
5854
  Protocols: {
@@ -7696,6 +7736,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7696
7736
  decimals: number;
7697
7737
  verified: boolean;
7698
7738
  isTest: boolean;
7739
+ isNative: boolean;
7699
7740
  } & {
7700
7741
  price?: number | null | undefined;
7701
7742
  })[];
@@ -7779,6 +7820,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7779
7820
  displaySymbol: string;
7780
7821
  verified: boolean;
7781
7822
  isTest: boolean;
7823
+ isNative: boolean;
7782
7824
  price: number | null;
7783
7825
  };
7784
7826
  amount: bigint;
@@ -7803,6 +7845,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7803
7845
  decimals: number;
7804
7846
  verified: boolean;
7805
7847
  isTest: boolean;
7848
+ isNative: boolean;
7806
7849
  } & {
7807
7850
  price?: number | null | undefined;
7808
7851
  };
@@ -7863,6 +7906,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
7863
7906
  decimals: number;
7864
7907
  verified: boolean;
7865
7908
  isTest: boolean;
7909
+ isNative: boolean;
7866
7910
  } & {
7867
7911
  price?: number | null | undefined;
7868
7912
  })[];
@@ -8731,6 +8775,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8731
8775
  decimals: number;
8732
8776
  verified: boolean;
8733
8777
  isTest: boolean;
8778
+ isNative: boolean;
8734
8779
  } & {
8735
8780
  price?: number | null | undefined;
8736
8781
  };
@@ -8811,6 +8856,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
8811
8856
  decimals: number;
8812
8857
  verified: boolean;
8813
8858
  isTest: boolean;
8859
+ isNative: boolean;
8814
8860
  } & {
8815
8861
  price?: number | null | undefined;
8816
8862
  };
@@ -9157,6 +9203,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9157
9203
  decimals: number;
9158
9204
  verified: boolean;
9159
9205
  isTest: boolean;
9206
+ isNative: boolean;
9160
9207
  price?: number | null | undefined;
9161
9208
  } | undefined;
9162
9209
  };
@@ -9188,6 +9235,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9188
9235
  decimals: number;
9189
9236
  verified: boolean;
9190
9237
  isTest: boolean;
9238
+ isNative: boolean;
9191
9239
  price?: number | null | undefined;
9192
9240
  } | undefined;
9193
9241
  };
@@ -9219,6 +9267,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9219
9267
  displaySymbol: string;
9220
9268
  verified: boolean;
9221
9269
  isTest: boolean;
9270
+ isNative: boolean;
9222
9271
  price: number | null;
9223
9272
  }[];
9224
9273
  };
@@ -9249,6 +9298,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9249
9298
  decimals: number;
9250
9299
  verified: boolean;
9251
9300
  isTest: boolean;
9301
+ isNative: boolean;
9252
9302
  } & {
9253
9303
  price?: number | null | undefined;
9254
9304
  } & {
@@ -9270,6 +9320,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9270
9320
  address?: string | undefined;
9271
9321
  displaySymbol?: string | undefined;
9272
9322
  verified?: boolean | undefined;
9323
+ isNative?: boolean | undefined;
9273
9324
  test?: boolean | undefined;
9274
9325
  };
9275
9326
  headers: unknown;
@@ -9284,6 +9335,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9284
9335
  decimals: number;
9285
9336
  verified: boolean;
9286
9337
  isTest: boolean;
9338
+ isNative: boolean;
9287
9339
  } & {
9288
9340
  price?: number | null | undefined;
9289
9341
  })[];
@@ -9303,6 +9355,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9303
9355
  address?: string | undefined;
9304
9356
  displaySymbol?: string | undefined;
9305
9357
  verified?: boolean | undefined;
9358
+ isNative?: boolean | undefined;
9306
9359
  test?: boolean | undefined;
9307
9360
  };
9308
9361
  headers: unknown;
@@ -9337,6 +9390,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9337
9390
  decimals: number;
9338
9391
  verified: boolean;
9339
9392
  isTest: boolean;
9393
+ isNative: boolean;
9340
9394
  price?: number | null | undefined;
9341
9395
  } | undefined;
9342
9396
  };
@@ -9349,6 +9403,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9349
9403
  name?: string | undefined;
9350
9404
  icon?: string | undefined;
9351
9405
  displaySymbol?: string | undefined;
9406
+ verified?: boolean | undefined;
9352
9407
  isTest?: boolean | undefined;
9353
9408
  };
9354
9409
  params: {
@@ -9370,6 +9425,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
9370
9425
  displaySymbol: string;
9371
9426
  verified: boolean;
9372
9427
  isTest: boolean;
9428
+ isNative: boolean;
9373
9429
  price: number | null;
9374
9430
  };
9375
9431
  };
@@ -10266,6 +10322,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
10266
10322
  displaySymbol: string;
10267
10323
  verified: boolean;
10268
10324
  isTest: boolean;
10325
+ isNative: boolean;
10269
10326
  price: number | null;
10270
10327
  };
10271
10328
  breakdowns: {
@@ -10287,6 +10344,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
10287
10344
  displaySymbol: string;
10288
10345
  verified: boolean;
10289
10346
  isTest: boolean;
10347
+ isNative: boolean;
10290
10348
  price: number | null;
10291
10349
  }[];
10292
10350
  Protocols: {
@@ -10379,6 +10437,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
10379
10437
  displaySymbol: string;
10380
10438
  verified: boolean;
10381
10439
  isTest: boolean;
10440
+ isNative: boolean;
10382
10441
  price: number | null;
10383
10442
  };
10384
10443
  breakdowns: {
@@ -10400,6 +10459,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
10400
10459
  displaySymbol: string;
10401
10460
  verified: boolean;
10402
10461
  isTest: boolean;
10462
+ isNative: boolean;
10403
10463
  price: number | null;
10404
10464
  }[];
10405
10465
  Protocols: {
@@ -12599,6 +12659,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12599
12659
  decimals: number;
12600
12660
  verified: boolean;
12601
12661
  isTest: boolean;
12662
+ isNative: boolean;
12602
12663
  } & {
12603
12664
  price?: number | null | undefined;
12604
12665
  })[];
@@ -12998,6 +13059,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
12998
13059
  displaySymbol: string;
12999
13060
  verified: boolean;
13000
13061
  isTest: boolean;
13062
+ isNative: boolean;
13001
13063
  price: number | null;
13002
13064
  };
13003
13065
  amount: bigint;
@@ -13022,6 +13084,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13022
13084
  decimals: number;
13023
13085
  verified: boolean;
13024
13086
  isTest: boolean;
13087
+ isNative: boolean;
13025
13088
  } & {
13026
13089
  price?: number | null | undefined;
13027
13090
  };
@@ -13082,6 +13145,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13082
13145
  decimals: number;
13083
13146
  verified: boolean;
13084
13147
  isTest: boolean;
13148
+ isNative: boolean;
13085
13149
  } & {
13086
13150
  price?: number | null | undefined;
13087
13151
  })[];
@@ -13433,6 +13497,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13433
13497
  decimals: number;
13434
13498
  verified: boolean;
13435
13499
  isTest: boolean;
13500
+ isNative: boolean;
13436
13501
  } & {
13437
13502
  price?: number | null | undefined;
13438
13503
  };
@@ -13657,6 +13722,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13657
13722
  decimals: number;
13658
13723
  verified: boolean;
13659
13724
  isTest: boolean;
13725
+ isNative: boolean;
13660
13726
  } & {
13661
13727
  price?: number | null | undefined;
13662
13728
  };
@@ -13939,6 +14005,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13939
14005
  decimals: number;
13940
14006
  verified: boolean;
13941
14007
  isTest: boolean;
14008
+ isNative: boolean;
13942
14009
  price?: number | null | undefined;
13943
14010
  } | undefined;
13944
14011
  }>>;
@@ -13963,6 +14030,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13963
14030
  decimals: number;
13964
14031
  verified: boolean;
13965
14032
  isTest: boolean;
14033
+ isNative: boolean;
13966
14034
  price?: number | null | undefined;
13967
14035
  } | undefined;
13968
14036
  }>>;
@@ -13971,6 +14039,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13971
14039
  name?: string | undefined;
13972
14040
  icon?: string | undefined;
13973
14041
  displaySymbol?: string | undefined;
14042
+ verified?: boolean | undefined;
13974
14043
  isTest?: boolean | undefined;
13975
14044
  }, options: {
13976
14045
  headers: {
@@ -13990,6 +14059,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
13990
14059
  displaySymbol: string;
13991
14060
  verified: boolean;
13992
14061
  isTest: boolean;
14062
+ isNative: boolean;
13993
14063
  price: number | null;
13994
14064
  };
13995
14065
  }>>;
@@ -14014,6 +14084,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14014
14084
  displaySymbol: string;
14015
14085
  verified: boolean;
14016
14086
  isTest: boolean;
14087
+ isNative: boolean;
14017
14088
  price: number | null;
14018
14089
  }[];
14019
14090
  }>>;
@@ -14040,6 +14111,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14040
14111
  decimals: number;
14041
14112
  verified: boolean;
14042
14113
  isTest: boolean;
14114
+ isNative: boolean;
14043
14115
  } & {
14044
14116
  price?: number | null | undefined;
14045
14117
  } & {
@@ -14058,6 +14130,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14058
14130
  address?: string | undefined;
14059
14131
  displaySymbol?: string | undefined;
14060
14132
  verified?: boolean | undefined;
14133
+ isNative?: boolean | undefined;
14061
14134
  test?: boolean | undefined;
14062
14135
  };
14063
14136
  fetch?: RequestInit | undefined;
@@ -14072,6 +14145,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14072
14145
  decimals: number;
14073
14146
  verified: boolean;
14074
14147
  isTest: boolean;
14148
+ isNative: boolean;
14075
14149
  } & {
14076
14150
  price?: number | null | undefined;
14077
14151
  })[];
@@ -14099,6 +14173,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14099
14173
  decimals: number;
14100
14174
  verified: boolean;
14101
14175
  isTest: boolean;
14176
+ isNative: boolean;
14102
14177
  price?: number | null | undefined;
14103
14178
  } | undefined;
14104
14179
  }>>;
@@ -14114,6 +14189,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14114
14189
  address?: string | undefined;
14115
14190
  displaySymbol?: string | undefined;
14116
14191
  verified?: boolean | undefined;
14192
+ isNative?: boolean | undefined;
14117
14193
  test?: boolean | undefined;
14118
14194
  };
14119
14195
  fetch?: RequestInit | undefined;
@@ -14763,6 +14839,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14763
14839
  displaySymbol: string;
14764
14840
  verified: boolean;
14765
14841
  isTest: boolean;
14842
+ isNative: boolean;
14766
14843
  price: number | null;
14767
14844
  };
14768
14845
  breakdowns: {
@@ -14784,6 +14861,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14784
14861
  displaySymbol: string;
14785
14862
  verified: boolean;
14786
14863
  isTest: boolean;
14864
+ isNative: boolean;
14787
14865
  price: number | null;
14788
14866
  }[];
14789
14867
  Protocols: {
@@ -14865,6 +14943,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14865
14943
  displaySymbol: string;
14866
14944
  verified: boolean;
14867
14945
  isTest: boolean;
14946
+ isNative: boolean;
14868
14947
  price: number | null;
14869
14948
  };
14870
14949
  breakdowns: {
@@ -14886,6 +14965,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
14886
14965
  displaySymbol: string;
14887
14966
  verified: boolean;
14888
14967
  isTest: boolean;
14968
+ isNative: boolean;
14889
14969
  price: number | null;
14890
14970
  }[];
14891
14971
  Protocols: {
@@ -15996,6 +16076,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
15996
16076
  decimals: number;
15997
16077
  verified: boolean;
15998
16078
  isTest: boolean;
16079
+ isNative: boolean;
15999
16080
  } & {
16000
16081
  price?: number | null | undefined;
16001
16082
  })[];
@@ -16395,6 +16476,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
16395
16476
  displaySymbol: string;
16396
16477
  verified: boolean;
16397
16478
  isTest: boolean;
16479
+ isNative: boolean;
16398
16480
  price: number | null;
16399
16481
  };
16400
16482
  amount: bigint;
@@ -16419,6 +16501,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
16419
16501
  decimals: number;
16420
16502
  verified: boolean;
16421
16503
  isTest: boolean;
16504
+ isNative: boolean;
16422
16505
  } & {
16423
16506
  price?: number | null | undefined;
16424
16507
  };
@@ -16479,6 +16562,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
16479
16562
  decimals: number;
16480
16563
  verified: boolean;
16481
16564
  isTest: boolean;
16565
+ isNative: boolean;
16482
16566
  } & {
16483
16567
  price?: number | null | undefined;
16484
16568
  })[];
@@ -16830,6 +16914,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
16830
16914
  decimals: number;
16831
16915
  verified: boolean;
16832
16916
  isTest: boolean;
16917
+ isNative: boolean;
16833
16918
  } & {
16834
16919
  price?: number | null | undefined;
16835
16920
  };
@@ -17054,6 +17139,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17054
17139
  decimals: number;
17055
17140
  verified: boolean;
17056
17141
  isTest: boolean;
17142
+ isNative: boolean;
17057
17143
  } & {
17058
17144
  price?: number | null | undefined;
17059
17145
  };
@@ -17336,6 +17422,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17336
17422
  decimals: number;
17337
17423
  verified: boolean;
17338
17424
  isTest: boolean;
17425
+ isNative: boolean;
17339
17426
  price?: number | null | undefined;
17340
17427
  } | undefined;
17341
17428
  }>>;
@@ -17360,6 +17447,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17360
17447
  decimals: number;
17361
17448
  verified: boolean;
17362
17449
  isTest: boolean;
17450
+ isNative: boolean;
17363
17451
  price?: number | null | undefined;
17364
17452
  } | undefined;
17365
17453
  }>>;
@@ -17368,6 +17456,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17368
17456
  name?: string | undefined;
17369
17457
  icon?: string | undefined;
17370
17458
  displaySymbol?: string | undefined;
17459
+ verified?: boolean | undefined;
17371
17460
  isTest?: boolean | undefined;
17372
17461
  }, options: {
17373
17462
  headers: {
@@ -17387,6 +17476,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17387
17476
  displaySymbol: string;
17388
17477
  verified: boolean;
17389
17478
  isTest: boolean;
17479
+ isNative: boolean;
17390
17480
  price: number | null;
17391
17481
  };
17392
17482
  }>>;
@@ -17411,6 +17501,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17411
17501
  displaySymbol: string;
17412
17502
  verified: boolean;
17413
17503
  isTest: boolean;
17504
+ isNative: boolean;
17414
17505
  price: number | null;
17415
17506
  }[];
17416
17507
  }>>;
@@ -17437,6 +17528,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17437
17528
  decimals: number;
17438
17529
  verified: boolean;
17439
17530
  isTest: boolean;
17531
+ isNative: boolean;
17440
17532
  } & {
17441
17533
  price?: number | null | undefined;
17442
17534
  } & {
@@ -17455,6 +17547,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17455
17547
  address?: string | undefined;
17456
17548
  displaySymbol?: string | undefined;
17457
17549
  verified?: boolean | undefined;
17550
+ isNative?: boolean | undefined;
17458
17551
  test?: boolean | undefined;
17459
17552
  };
17460
17553
  fetch?: RequestInit | undefined;
@@ -17469,6 +17562,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17469
17562
  decimals: number;
17470
17563
  verified: boolean;
17471
17564
  isTest: boolean;
17565
+ isNative: boolean;
17472
17566
  } & {
17473
17567
  price?: number | null | undefined;
17474
17568
  })[];
@@ -17496,6 +17590,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17496
17590
  decimals: number;
17497
17591
  verified: boolean;
17498
17592
  isTest: boolean;
17593
+ isNative: boolean;
17499
17594
  price?: number | null | undefined;
17500
17595
  } | undefined;
17501
17596
  }>>;
@@ -17511,6 +17606,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
17511
17606
  address?: string | undefined;
17512
17607
  displaySymbol?: string | undefined;
17513
17608
  verified?: boolean | undefined;
17609
+ isNative?: boolean | undefined;
17514
17610
  test?: boolean | undefined;
17515
17611
  };
17516
17612
  fetch?: RequestInit | undefined;
@@ -18160,6 +18256,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18160
18256
  displaySymbol: string;
18161
18257
  verified: boolean;
18162
18258
  isTest: boolean;
18259
+ isNative: boolean;
18163
18260
  price: number | null;
18164
18261
  };
18165
18262
  breakdowns: {
@@ -18181,6 +18278,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18181
18278
  displaySymbol: string;
18182
18279
  verified: boolean;
18183
18280
  isTest: boolean;
18281
+ isNative: boolean;
18184
18282
  price: number | null;
18185
18283
  }[];
18186
18284
  Protocols: {
@@ -18262,6 +18360,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18262
18360
  displaySymbol: string;
18263
18361
  verified: boolean;
18264
18362
  isTest: boolean;
18363
+ isNative: boolean;
18265
18364
  price: number | null;
18266
18365
  };
18267
18366
  breakdowns: {
@@ -18283,6 +18382,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", fa
18283
18382
  displaySymbol: string;
18284
18383
  verified: boolean;
18285
18384
  isTest: boolean;
18385
+ isNative: boolean;
18286
18386
  price: number | null;
18287
18387
  }[];
18288
18388
  Protocols: {