@cityofzion/bs-neo3 1.2.1 → 1.3.0

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 (45) hide show
  1. package/dist/BSNeo3.d.ts +3 -3
  2. package/dist/BSNeo3.js +8 -8
  3. package/dist/builder/invocation/FlamingoSwapInvocationBuilderNeo3.d.ts +7 -0
  4. package/dist/builder/invocation/FlamingoSwapInvocationBuilderNeo3.js +95 -0
  5. package/dist/builder/invocation/NeonDappKitInvocationBuilderNeo3.d.ts +34 -0
  6. package/dist/builder/invocation/NeonDappKitInvocationBuilderNeo3.js +102 -0
  7. package/dist/constants/FlamingoSwapConstants.d.ts +36 -0
  8. package/dist/constants/FlamingoSwapConstants.js +853 -0
  9. package/dist/{BSNeo3Helper.js → helpers/BSNeo3Helper.js} +2 -2
  10. package/dist/helpers/FlamingoSwapHelper.d.ts +19 -0
  11. package/dist/helpers/FlamingoSwapHelper.js +84 -0
  12. package/dist/index.d.ts +13 -11
  13. package/dist/index.js +13 -11
  14. package/dist/{DoraBDSNeo3.d.ts → services/blockchain-data/DoraBDSNeo3.d.ts} +4 -4
  15. package/dist/{DoraBDSNeo3.js → services/blockchain-data/DoraBDSNeo3.js} +3 -3
  16. package/dist/{RpcBDSNeo3.d.ts → services/blockchain-data/RpcBDSNeo3.d.ts} +2 -2
  17. package/dist/{RpcBDSNeo3.js → services/blockchain-data/RpcBDSNeo3.js} +4 -4
  18. package/dist/{FlamingoEDSNeo3.d.ts → services/exchange-data/FlamingoEDSNeo3.d.ts} +1 -1
  19. package/dist/{FlamingoEDSNeo3.js → services/exchange-data/FlamingoEDSNeo3.js} +1 -1
  20. package/dist/{DoraESNeo3.d.ts → services/explorer/DoraESNeo3.d.ts} +2 -2
  21. package/dist/{DoraESNeo3.js → services/explorer/DoraESNeo3.js} +1 -1
  22. package/dist/{GhostMarketNDSNeo3.d.ts → services/nft-data/GhostMarketNDSNeo3.d.ts} +2 -2
  23. package/dist/{RpcNDSNeo3.d.ts → services/nft-data/RpcNDSNeo3.d.ts} +1 -1
  24. package/dist/services/swap/FlamingoSwapServiceNeo3.d.ts +23 -0
  25. package/dist/services/swap/FlamingoSwapServiceNeo3.js +271 -0
  26. package/dist/services/swap/handlers/FlamingoSwapDetailsHandler.d.ts +24 -0
  27. package/dist/services/swap/handlers/FlamingoSwapDetailsHandler.js +178 -0
  28. package/dist/services/swap/handlers/FlamingoSwapRouteHandler.d.ts +13 -0
  29. package/dist/services/swap/handlers/FlamingoSwapRouteHandler.js +181 -0
  30. package/dist/services/swap/handlers/FlamingoSwapSocketHandler.d.ts +9 -0
  31. package/dist/services/swap/handlers/FlamingoSwapSocketHandler.js +57 -0
  32. package/dist/services/swap/handlers/index.d.ts +3 -0
  33. package/dist/services/swap/handlers/index.js +19 -0
  34. package/package.json +8 -6
  35. package/dist/flamingo-swap/FlamingoSwapControllerService.d.ts +0 -20
  36. package/dist/flamingo-swap/FlamingoSwapControllerService.js +0 -290
  37. package/dist/flamingo-swap/FlamingoSwapHelper.d.ts +0 -48
  38. package/dist/flamingo-swap/FlamingoSwapHelper.js +0 -171
  39. package/dist/flamingo-swap/FlamingoSwapNeonDappKitInvocationBuilder.d.ts +0 -19
  40. package/dist/flamingo-swap/FlamingoSwapNeonDappKitInvocationBuilder.js +0 -208
  41. package/dist/{BSNeo3Helper.d.ts → helpers/BSNeo3Helper.d.ts} +0 -0
  42. package/dist/{NeonDappKitLedgerServiceNeo3.d.ts → services/ledger/NeonDappKitLedgerServiceNeo3.d.ts} +1 -1
  43. package/dist/{NeonDappKitLedgerServiceNeo3.js → services/ledger/NeonDappKitLedgerServiceNeo3.js} +1 -1
  44. package/dist/{GhostMarketNDSNeo3.js → services/nft-data/GhostMarketNDSNeo3.js} +1 -1
  45. /package/dist/{RpcNDSNeo3.js → services/nft-data/RpcNDSNeo3.js} +0 -0
@@ -0,0 +1,853 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ var _a;
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.FlamingoSwapConstants = exports.BLOCKCHAIN_WSS_URL = void 0;
8
+ const bignumber_js_1 = __importDefault(require("bignumber.js"));
9
+ exports.BLOCKCHAIN_WSS_URL = 'wss://rpc10.n3.nspcc.ru:10331/ws';
10
+ class FlamingoSwapConstants {
11
+ }
12
+ exports.FlamingoSwapConstants = FlamingoSwapConstants;
13
+ _a = FlamingoSwapConstants;
14
+ FlamingoSwapConstants.BN_0 = new bignumber_js_1.default(0);
15
+ FlamingoSwapConstants.BN_1 = new bignumber_js_1.default(1);
16
+ FlamingoSwapConstants.BN_997 = new bignumber_js_1.default(997);
17
+ FlamingoSwapConstants.BN_1000 = new bignumber_js_1.default(1000);
18
+ FlamingoSwapConstants.FEE_RATE = new bignumber_js_1.default(0.003);
19
+ FlamingoSwapConstants.GAS_PER_NEO = 0.001;
20
+ FlamingoSwapConstants.TESTNET_FLAMINGO_SWAP_TOKENS = {
21
+ // ============ Neo Assets ============ //
22
+ FLM: {
23
+ symbol: 'FLM',
24
+ decimals: 8,
25
+ hash: '0x5b53998b399d10cd25727269e865acc785ef5c1a',
26
+ name: 'FLM',
27
+ },
28
+ FLUND: {
29
+ symbol: 'FLUND',
30
+ decimals: 8,
31
+ hash: '0x3d0085f442ead25ff3a7507c8eaa27cc8623a6be',
32
+ name: 'FLUND',
33
+ },
34
+ TIPS: {
35
+ symbol: 'TIPS',
36
+ decimals: 8,
37
+ hash: '0xe2cd0c441f37f0daeeee196b5ce23bef4182c43a',
38
+ name: 'TIPS',
39
+ },
40
+ CANDY: {
41
+ symbol: 'CANDY',
42
+ decimals: 9,
43
+ hash: '0x7d4515866a633857c0ca5798aa66856768ae06fe',
44
+ name: 'CANDY',
45
+ },
46
+ DOGER: {
47
+ symbol: 'DOGER',
48
+ decimals: 8,
49
+ hash: '0x7761e3b1939f691feb01d791c4c2307bd195e9e5',
50
+ name: 'DOGER',
51
+ },
52
+ DOGEF: {
53
+ symbol: 'DOGEF',
54
+ decimals: 8,
55
+ hash: '0x1379ebf3c7f42c34bee4c3320d23ce47a8b17ed4',
56
+ name: 'DOGEF',
57
+ },
58
+ NEO: {
59
+ symbol: 'NEO',
60
+ decimals: 0,
61
+ hash: '0xef4073a0f2b305a38ec4050e4d3d28bc40ea63f5',
62
+ name: 'NEO',
63
+ },
64
+ GAS: {
65
+ symbol: 'GAS',
66
+ decimals: 8,
67
+ hash: '0xd2a4cff31913016155e38e474a2c06d08be276cf',
68
+ name: 'GAS',
69
+ },
70
+ bNEO: {
71
+ symbol: 'bNEO',
72
+ decimals: 8,
73
+ hash: '0x85deac50febfd93988d3f391dea54e8289e43e9e',
74
+ name: 'bNEO',
75
+ },
76
+ SWTH: {
77
+ symbol: 'SWTH',
78
+ decimals: 8,
79
+ hash: '0x70aba30ba83c344fa8c8d65939c93ca12e8c7409',
80
+ name: 'SWTH',
81
+ },
82
+ GM: {
83
+ symbol: 'GM',
84
+ decimals: 8,
85
+ hash: '0xc13b05fc0e6fe3cc681e29a574557784b4f79aff',
86
+ name: 'GM',
87
+ },
88
+ fUSDT: {
89
+ symbol: 'fUSDT',
90
+ decimals: 6,
91
+ hash: '0xa2d5f4378c42d118ebc7e1690f9478d3e00aefa1',
92
+ name: 'fUSDT',
93
+ },
94
+ fWETH: {
95
+ symbol: 'fWETH',
96
+ decimals: 18,
97
+ hash: '0xe6d9306f944df543bc0171558d06e39fc548ad08',
98
+ name: 'fWETH',
99
+ },
100
+ fWBTC: {
101
+ symbol: 'fWBTC',
102
+ decimals: 8,
103
+ hash: '0x9b9f7db02c0a2d6aa5ad9be7bba843027bf5b5f2',
104
+ name: 'fWBTC',
105
+ },
106
+ pONT: {
107
+ symbol: 'pONT',
108
+ decimals: 9,
109
+ hash: '0xdaedcb8316bebd0fd278ec9c85766caba3232cfc',
110
+ name: 'pONT',
111
+ },
112
+ pWING: {
113
+ symbol: 'pWING',
114
+ decimals: 9,
115
+ hash: '0x44e38f5602b130bc669074c3f938c607448498b2',
116
+ name: 'pWING',
117
+ },
118
+ fCAKE: {
119
+ symbol: 'fCAKE',
120
+ decimals: 18,
121
+ hash: '0x1667501ddf75e801360d617232c3e9f7958f1962',
122
+ name: 'fCAKE',
123
+ },
124
+ SOM: {
125
+ symbol: 'SOM',
126
+ decimals: 8,
127
+ hash: '0xfc7b372524289bc83f97647011698cb3325e8d9d',
128
+ name: 'SOM',
129
+ },
130
+ FDE: {
131
+ symbol: 'FDE',
132
+ decimals: 8,
133
+ hash: '0x5b769ec16f521711d7246c17ac107f7269bf56da',
134
+ name: 'FDE',
135
+ },
136
+ fBNB: {
137
+ symbol: 'fBNB',
138
+ decimals: 18,
139
+ hash: '0x1883231a31dc912805cc08a281d4c268c4cac345',
140
+ name: 'fBNB',
141
+ },
142
+ // ============ Ethereum Assets ============ //
143
+ WETH: {
144
+ symbol: 'WETH',
145
+ decimals: 18,
146
+ hash: '0xb603cea165119701b58d56d10d2060fbfb3efad8',
147
+ name: 'WETH',
148
+ },
149
+ WBTC: {
150
+ symbol: 'WBTC',
151
+ decimals: 8,
152
+ hash: '0x557563dc4ed3fd256eba55b9622f53331ab97c2f',
153
+ name: 'WBTC',
154
+ },
155
+ USDT: {
156
+ symbol: 'USDT',
157
+ decimals: 6,
158
+ hash: '0xad3f96ae966ad60347f31845b7e4b333104c52fb',
159
+ name: 'USDT',
160
+ },
161
+ xWETH: {
162
+ symbol: 'xWETH',
163
+ decimals: 18,
164
+ hash: '0xd38fc89febb12e5d32faa72e07d486a268b9c63a',
165
+ name: 'xWETH',
166
+ },
167
+ xWBTC: {
168
+ symbol: 'xWBTC',
169
+ decimals: 8,
170
+ hash: '0x447b931cc604a30dc16c49002f35a7aab7888b78',
171
+ name: 'xWBTC',
172
+ },
173
+ xUSDT: {
174
+ symbol: 'xUSDT',
175
+ decimals: 6,
176
+ hash: '0xf15b5430321f4e51f5f534cedada7fbb78fa6680',
177
+ name: 'xUSDT',
178
+ },
179
+ // ============ Ontology Assets ============ //
180
+ ONTd: {
181
+ symbol: 'ONTd',
182
+ decimals: 9,
183
+ hash: '0x869951e3397550e800d5faf579857cdb637a0051',
184
+ name: 'ONTd',
185
+ },
186
+ // ============ BSC Assets ============ //
187
+ CAKE: {
188
+ symbol: 'CAKE',
189
+ decimals: 18,
190
+ hash: '0x778140d3A1e0024Be11e723a8af2C4d521feBA4f',
191
+ name: 'CAKE',
192
+ },
193
+ BNB: {
194
+ symbol: 'BNB',
195
+ decimals: 18,
196
+ hash: '0x0000000000000000000000000000000000000000',
197
+ name: 'BNB',
198
+ },
199
+ xfCAKE: {
200
+ symbol: 'xfCAKE',
201
+ decimals: 18,
202
+ hash: '0x64A647dC1634d164896D7146f7Ad314665DFeB18',
203
+ name: 'xfCAKE',
204
+ },
205
+ bNUDES: {
206
+ symbol: 'bNUDES',
207
+ decimals: 8,
208
+ hash: '0xeA5143686D0edb60dcE657CeDA8367a92a2Bff58',
209
+ name: 'bNUDES',
210
+ },
211
+ FUSD: {
212
+ symbol: 'FUSD',
213
+ decimals: 8,
214
+ hash: '0xcdaddd3e196bb1c1978364dd78b8cec5d4753f58',
215
+ name: 'FUSD',
216
+ },
217
+ };
218
+ FlamingoSwapConstants.MAINNET_FLAMINGO_SWAP_TOKENS = {
219
+ // ============ Neo Assets ============ //
220
+ FLM: {
221
+ symbol: 'FLM',
222
+ decimals: 8,
223
+ hash: '0xf0151f528127558851b39c2cd8aa47da7418ab28',
224
+ name: 'FLM',
225
+ },
226
+ FLUND: {
227
+ symbol: 'FLUND',
228
+ decimals: 8,
229
+ hash: '0xa9603a59e21d29e37ac39cf1b5f5abf5006b22a3',
230
+ name: 'FLUND',
231
+ },
232
+ TIPS: {
233
+ symbol: 'TIPS',
234
+ decimals: 8,
235
+ hash: '0x340720c7107ef5721e44ed2ea8e314cce5c130fa',
236
+ name: 'TIPS',
237
+ },
238
+ NEO: {
239
+ symbol: 'NEO',
240
+ decimals: 0,
241
+ hash: '0xef4073a0f2b305a38ec4050e4d3d28bc40ea63f5',
242
+ name: 'NEO',
243
+ },
244
+ GAS: {
245
+ symbol: 'GAS',
246
+ decimals: 8,
247
+ hash: '0xd2a4cff31913016155e38e474a2c06d08be276cf',
248
+ name: 'GAS',
249
+ },
250
+ bNEO: {
251
+ symbol: 'bNEO',
252
+ decimals: 8,
253
+ hash: '0x48c40d4666f93408be1bef038b6722404d9a4c2a',
254
+ name: 'bNEO',
255
+ },
256
+ FUSD: {
257
+ symbol: 'FUSD',
258
+ decimals: 8,
259
+ hash: '0x1005d400bcc2a56b7352f09e273be3f9933a5fb1',
260
+ name: 'FUSD',
261
+ },
262
+ LRB: {
263
+ symbol: 'LRB',
264
+ decimals: 8,
265
+ hash: '0x8c07b4c9f5bc170a3922eac4f5bb7ef17b0acc8b',
266
+ name: 'LRB',
267
+ },
268
+ USDL: {
269
+ symbol: 'USDL',
270
+ decimals: 8,
271
+ hash: '0xa8c51aa0c177187aeed3db88bdfa908ccbc9b1a5',
272
+ name: 'USDL',
273
+ },
274
+ SOM: {
275
+ symbol: 'SOM',
276
+ decimals: 8,
277
+ hash: '0x2d4c6cf0417209a7eb410160344e224e74f87195',
278
+ name: 'SOM',
279
+ },
280
+ CANDY: {
281
+ symbol: 'CANDY',
282
+ decimals: 9,
283
+ hash: '0x88da18a5bca86ec8206d9b4960a7d0c4355a432f',
284
+ name: 'CANDY',
285
+ },
286
+ DOGER: {
287
+ symbol: 'DOGER',
288
+ decimals: 8,
289
+ hash: '0x322b5a366ca724801a1aa01e669b5f3d7f8c7f6f',
290
+ name: 'DOGER',
291
+ },
292
+ DOGEF: {
293
+ symbol: 'DOGEF',
294
+ decimals: 8,
295
+ hash: '0xa3291b66f70d4687fc0e41977d8acb0699f235ae',
296
+ name: 'DOGEF',
297
+ },
298
+ FDE: {
299
+ symbol: 'FDE',
300
+ decimals: 8,
301
+ hash: '0x9770f4d78a19d1a6fa94b472bcedffcc06b56c49',
302
+ name: 'FDE',
303
+ },
304
+ fUSDT: {
305
+ symbol: 'fUSDT',
306
+ decimals: 6,
307
+ hash: '0xcd48b160c1bbc9d74997b803b9a7ad50a4bef020',
308
+ name: 'fUSDT',
309
+ },
310
+ fWETH: {
311
+ symbol: 'fWETH',
312
+ decimals: 18,
313
+ hash: '0xc14b601252aa5dfa6166cf35fe5ccd2e35f3fdf5',
314
+ name: 'fWETH',
315
+ },
316
+ fWBTC: {
317
+ symbol: 'fWBTC',
318
+ decimals: 8,
319
+ hash: '0xd6abe115ecb75e1fa0b42f5e85934ce8c1ae2893',
320
+ name: 'fWBTC',
321
+ },
322
+ pONT: {
323
+ symbol: 'pONT',
324
+ decimals: 9,
325
+ hash: '0x8122bc2212ec971690a044b37a6f52a9349b702b',
326
+ name: 'pONT',
327
+ },
328
+ pWING: {
329
+ symbol: 'pWING',
330
+ decimals: 9,
331
+ hash: '0xeeccd60ed722111f8400434dac3ba42c14d8beb1',
332
+ name: 'pWING',
333
+ },
334
+ GM: {
335
+ symbol: 'GM',
336
+ decimals: 8,
337
+ hash: '0x9b049f1283515eef1d3f6ac610e1595ed25ca3e9',
338
+ name: 'GM',
339
+ },
340
+ fCAKE: {
341
+ symbol: 'fCAKE',
342
+ decimals: 18,
343
+ hash: '0xe65b462b90516012826f8a9c4c285d8c750e3a77',
344
+ name: 'fCAKE',
345
+ },
346
+ SWTH: {
347
+ symbol: 'SWTH',
348
+ decimals: 8,
349
+ hash: '0x78e1330db47634afdb5ea455302ba2d12b8d549f',
350
+ name: 'SWTH',
351
+ },
352
+ fBNB: {
353
+ symbol: 'fBNB',
354
+ decimals: 18,
355
+ hash: '0xb56f0fba45cc57a948b342186274dfd863996bb3',
356
+ name: 'fBNB',
357
+ },
358
+ // ============ Ethereum Assets ============ //
359
+ WETH: {
360
+ symbol: 'WETH',
361
+ decimals: 18,
362
+ hash: '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2',
363
+ name: 'WETH',
364
+ },
365
+ WBTC: {
366
+ symbol: 'WBTC',
367
+ decimals: 8,
368
+ hash: '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599',
369
+ name: 'WBTC',
370
+ },
371
+ USDT: {
372
+ symbol: 'USDT',
373
+ decimals: 6,
374
+ hash: '0xdac17f958d2ee523a2206206994597c13d831ec7',
375
+ name: 'USDT',
376
+ },
377
+ xWETH: {
378
+ symbol: 'xWETH',
379
+ decimals: 18,
380
+ hash: '0x46b2E0224efb03D43eba88AB5A1995480e6A76b6',
381
+ name: 'xWETH',
382
+ },
383
+ xWBTC: {
384
+ symbol: 'xWBTC',
385
+ decimals: 8,
386
+ hash: '0xebd0e8988ac25a793dc27368f96a5a72e34efcd7',
387
+ name: 'xWBTC',
388
+ },
389
+ xUSDT: {
390
+ symbol: 'xUSDT',
391
+ decimals: 6,
392
+ hash: '0xa93727e8661d4f82cfd50f7d8fd3f38ec8493b84',
393
+ name: 'xUSDT',
394
+ },
395
+ // ============ Ontology Assets ============ //
396
+ ONTd: {
397
+ symbol: 'ONTd',
398
+ decimals: 9,
399
+ hash: '33ae7eae016193ba0fe238b223623bc78faac158',
400
+ name: 'ONTd',
401
+ },
402
+ WING: {
403
+ symbol: 'WING',
404
+ decimals: 9,
405
+ hash: '00c59fcd27a562d6397883eab1f2fff56e58ef80',
406
+ name: 'WING',
407
+ },
408
+ // ============ BSC Assets ============ //
409
+ CAKE: {
410
+ symbol: 'CAKE',
411
+ decimals: 18,
412
+ hash: '0x0E09FaBB73Bd3Ade0a17ECC321fD13a19e81cE82',
413
+ name: 'CAKE',
414
+ },
415
+ xfCAKE: {
416
+ symbol: 'xfCAKE',
417
+ decimals: 18,
418
+ hash: '0xD05923B7E0c86f31A4a6dFA4d5bbF191AbEe6Ab2',
419
+ name: 'xfCAKE',
420
+ },
421
+ };
422
+ FlamingoSwapConstants.FLAMINGO_SWAP_TOKENS = {
423
+ testnet: _a.TESTNET_FLAMINGO_SWAP_TOKENS,
424
+ mainnet: _a.MAINNET_FLAMINGO_SWAP_TOKENS,
425
+ };
426
+ FlamingoSwapConstants.FLAMINGO_SWAP_SCRIPT_HASHES = {
427
+ mainnet: {
428
+ flamingoSwapRouter: '0xf970f4ccecd765b63732b821775dc38c25d74f23',
429
+ flamingoPairWhiteList: '0xfb75a5314069b56e136713d38477f647a13991b4',
430
+ flamingoFactory: '0xca2d20610d7982ebe0bed124ee7e9b2d580a6efc',
431
+ },
432
+ testnet: {
433
+ flamingoSwapRouter: '0x6f0910fa26290f4a423930c8f833395790c71705',
434
+ flamingoPairWhiteList: '0xfb75a5314069b56e136713d38477f647a13991b4',
435
+ flamingoFactory: '0xca2d20610d7982ebe0bed124ee7e9b2d580a6efc',
436
+ },
437
+ };
438
+ FlamingoSwapConstants.TESTNET_FLAMINGO_SWAP_POOLS = {
439
+ 'FLP-FLM-bNEO': {
440
+ symbol: 'FLP-FLM-bNEO',
441
+ decimals: 8,
442
+ hash: '0x35f47f3f697aaadfec954d5936d67f172413de7e',
443
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.bNEO],
444
+ },
445
+ 'FLP-FLM-fUSDT': {
446
+ symbol: 'FLP-FLM-fUSDT',
447
+ decimals: 8,
448
+ hash: '0x5510e648a00fea8966025c8b4b1c618cfa363ad1',
449
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.fUSDT],
450
+ },
451
+ 'FLP-FLM-fWBTC': {
452
+ symbol: 'FLP-FLM-fWBTC',
453
+ decimals: 8,
454
+ hash: '0xd11716dc3fce15790177bd6d4a827e3d00255118',
455
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.fWBTC],
456
+ },
457
+ 'FLP-FLM-fWETH': {
458
+ symbol: 'FLP-FLM-fWETH',
459
+ decimals: 8,
460
+ hash: '0xf9ee43c25f23fd42a1d6d199ef87ebe953bec325',
461
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.fWETH],
462
+ },
463
+ 'FLP-FLM-GAS': {
464
+ symbol: 'FLP-FLM-GAS',
465
+ decimals: 8,
466
+ hash: '0x7deb6406aeef3414ae47ae34fd986d0ca2c92859',
467
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.GAS],
468
+ },
469
+ 'FLP-FLM-BNB': {
470
+ symbol: 'FLP-FLM-BNB',
471
+ decimals: 8,
472
+ hash: '0xa89606941d015c1f5a14939198a0bf56399b560e',
473
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fBNB, _a.FLAMINGO_SWAP_TOKENS.testnet.FLM],
474
+ },
475
+ 'FLP-FLM-pONT': {
476
+ symbol: 'FLP-FLM-pONT',
477
+ decimals: 8,
478
+ hash: '0xfe2984756a526fb1405d69d72676a42a9edf3650',
479
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.pONT],
480
+ },
481
+ 'FLP-FLM-WING': {
482
+ symbol: 'FLP-FLM-WING',
483
+ decimals: 8,
484
+ hash: '0xe9401a22ee998748012b249cae7fd84006889cf1',
485
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.pWING, _a.FLAMINGO_SWAP_TOKENS.testnet.FLM],
486
+ },
487
+ 'FLP-FLM-GM': {
488
+ symbol: 'FLP-FLM-GM',
489
+ decimals: 8,
490
+ hash: '0x635d478af99bef6cc53920836ec539e569907c8b',
491
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.GM],
492
+ },
493
+ 'FLP-FLM-fCAKE': {
494
+ symbol: 'FLP-FLM-fCAKE',
495
+ decimals: 8,
496
+ hash: '0x3f4b2425b704ac587632cab04b8e2db4bcfab911',
497
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fCAKE, _a.FLAMINGO_SWAP_TOKENS.testnet.FLM],
498
+ },
499
+ 'FLP-FLM-SWTH': {
500
+ symbol: 'FLP-FLM-SWTH',
501
+ decimals: 8,
502
+ hash: '0xc7f02273b619ef4b20f81e9ec41becc86f645b3d',
503
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.SWTH],
504
+ },
505
+ 'FLP-bNEO-fUSDT': {
506
+ symbol: 'FLP-bNEO-fUSDT',
507
+ decimals: 8,
508
+ hash: '0x7d835604b4b9e58baabe26f32a43fb977b568fc7',
509
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.fUSDT],
510
+ },
511
+ 'FLP-bNEO-fWBTC': {
512
+ symbol: 'FLP-bNEO-fWBTC',
513
+ decimals: 8,
514
+ hash: '0x8e71d7dab87a6ad6279d0385096307fe17038282',
515
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.fWBTC],
516
+ },
517
+ 'FLP-bNEO-fWETH': {
518
+ symbol: 'FLP-bNEO-fWETH',
519
+ decimals: 8,
520
+ hash: '0xa9cdf0e61bb6d38390b974628e40a10cd22babcf',
521
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.fWETH],
522
+ },
523
+ 'FLP-bNEO-GAS': {
524
+ symbol: 'FLP-bNEO-GAS',
525
+ decimals: 8,
526
+ hash: '0x5a262ceef47ffcb82bfd3d94b916a2573e503e5a',
527
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.GAS],
528
+ },
529
+ 'FLP-bNEO-BNB': {
530
+ symbol: 'FLP-bNEO-BNB',
531
+ decimals: 8,
532
+ hash: '0x1bcd02c98802365aa6722bc552fbdcae4397c17e',
533
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fBNB, _a.FLAMINGO_SWAP_TOKENS.testnet.bNEO],
534
+ },
535
+ 'FLP-bNEO-pONT': {
536
+ symbol: 'FLP-bNEO-pONT',
537
+ decimals: 8,
538
+ hash: '0xcce0827f42ea56cbc9514e4e9e60589dbbc37869',
539
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.pONT],
540
+ },
541
+ 'FLP-bNEO-WING': {
542
+ symbol: 'FLP-bNEO-WING',
543
+ decimals: 8,
544
+ hash: '0x2ad51e9fef7f52fa60070cf3379a5b9170d76249',
545
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.pWING, _a.FLAMINGO_SWAP_TOKENS.testnet.bNEO],
546
+ },
547
+ 'FLP-bNEO-GM': {
548
+ symbol: 'FLP-bNEO-GM',
549
+ decimals: 8,
550
+ hash: '0xa83cc212789b7ec6c0ccffe109bc71413eefe3e1',
551
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.GM],
552
+ },
553
+ 'FLP-bNEO-fCAKE': {
554
+ symbol: 'FLP-bNEO-fCAKE',
555
+ decimals: 8,
556
+ hash: '0x3c7ae4f37c9ebf54536f9ce15cfd4359f6ea6ba1',
557
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fCAKE, _a.FLAMINGO_SWAP_TOKENS.testnet.bNEO],
558
+ },
559
+ 'FLP-bNEO-SWTH': {
560
+ symbol: 'FLP-bNEO-SWTH',
561
+ decimals: 8,
562
+ hash: '0x13e2a229e27f2aa567ad9fd5a1958a32691d18fc',
563
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.SWTH, _a.FLAMINGO_SWAP_TOKENS.testnet.bNEO],
564
+ },
565
+ 'FLP-fWBTC-fUSDT': {
566
+ symbol: 'FLP-fWBTC-fUSDT',
567
+ decimals: 8,
568
+ hash: '0x7d71812d091d564d9604388787a65ec8e4d42a69',
569
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fWBTC, _a.FLAMINGO_SWAP_TOKENS.testnet.fUSDT],
570
+ },
571
+ 'FRP-FLM-FDE': {
572
+ symbol: 'FRP-FLM-FDE',
573
+ decimals: 8,
574
+ hash: '0x4d30c0ab3d908126133813fb40cb153caf78d17d',
575
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.FDE],
576
+ },
577
+ 'FRP-bNEO-FDE': {
578
+ symbol: 'FRP-bNEO-FDE',
579
+ decimals: 8,
580
+ hash: '0xaa4a2c7e9f5ddd2e6bfafc36d4b74e9ee171c6ae',
581
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FDE, _a.FLAMINGO_SWAP_TOKENS.testnet.bNEO],
582
+ },
583
+ 'FLP-FLM-FUSD': {
584
+ symbol: 'FLP-FLM-FUSD',
585
+ decimals: 8,
586
+ hash: '0x5d64cf72fa1d72aa6983218c2b286b136e05657e',
587
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.FLM, _a.FLAMINGO_SWAP_TOKENS.testnet.FUSD],
588
+ },
589
+ 'FLP-fWBTC-FUSD': {
590
+ symbol: 'FLP-fWBTC-FUSD',
591
+ decimals: 8,
592
+ hash: '0x839a33a0326700d8dbd8621f95044fee29c3a643',
593
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fWBTC, _a.FLAMINGO_SWAP_TOKENS.testnet.FUSD],
594
+ },
595
+ 'FLP-bNEO-FUSD': {
596
+ symbol: 'FLP-bNEO-FUSD',
597
+ decimals: 8,
598
+ hash: '0x9ed3e179fb8f68d255bae6708c42fc66e32df566',
599
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.testnet.FUSD],
600
+ },
601
+ 'FLP-fUSDT-FUSD': {
602
+ symbol: 'FLP-fUSDT-FUSD',
603
+ decimals: 8,
604
+ hash: '0x654d926c89aea73815131668904f08b2d5d1ac95',
605
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.testnet.fUSDT, _a.FLAMINGO_SWAP_TOKENS.testnet.FUSD],
606
+ },
607
+ };
608
+ FlamingoSwapConstants.MAINNET_FLAMINGO_SWAP_POOLS = {
609
+ 'FLP-FLM-bNEO': {
610
+ symbol: 'FLP-FLM-bNEO',
611
+ decimals: 8,
612
+ hash: '0x4d5a85b0c83777df72cfb665a933970e4e20c0ec',
613
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
614
+ },
615
+ 'FLP-FLM-fUSDT': {
616
+ symbol: 'FLP-FLM-fUSDT',
617
+ decimals: 8,
618
+ hash: '0x59aa80468a120fe79aa5601de07746275c9ed76a',
619
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.fUSDT, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
620
+ },
621
+ 'FLP-FLM-fWBTC': {
622
+ symbol: 'FLP-FLM-fWBTC',
623
+ decimals: 8,
624
+ hash: '0x6bcbf09a7193c968d608178a45785967f0721c42',
625
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.fWBTC, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
626
+ },
627
+ 'FLP-FLM-fWETH': {
628
+ symbol: 'FLP-FLM-fWETH',
629
+ decimals: 8,
630
+ hash: '0x1404929a660620869c9cb46ff228ee9d7147959d',
631
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.fWETH, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
632
+ },
633
+ 'FLP-FLM-GAS': {
634
+ symbol: 'FLP-FLM-GAS',
635
+ decimals: 8,
636
+ hash: '0x171d791c0301c332cfe95c6371ee32965e34b606',
637
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.GAS, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
638
+ },
639
+ 'FLP-FLM-fBNB': {
640
+ symbol: 'FLP-FLM-fBNB',
641
+ decimals: 8,
642
+ hash: '0x186998775b3dfb81eb878030cb49cc1eeeed5bfc',
643
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.fBNB, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
644
+ },
645
+ 'FLP-FLM-pONT': {
646
+ symbol: 'FLP-FLM-pONT',
647
+ decimals: 8,
648
+ hash: '0x1b3f740240af479f07e44ee3ee78df4c6cb4b1fb',
649
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.pONT, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
650
+ },
651
+ 'FLP-FLM-WING': {
652
+ symbol: 'FLP-FLM-WING',
653
+ decimals: 8,
654
+ hash: '0x576f42660a266141f03972f96992f2c1c10253a0',
655
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.pWING, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
656
+ },
657
+ 'FLP-FLM-GM': {
658
+ symbol: 'FLP-FLM-GM',
659
+ decimals: 8,
660
+ hash: '0xf23221a92c29beffbea6e46c681c8380d9794579',
661
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.GM, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
662
+ },
663
+ 'FLP-FLM-fCAKE': {
664
+ symbol: 'FLP-FLM-fCAKE',
665
+ decimals: 8,
666
+ hash: '0x236a6679dc26b5f11fae7c3b30784509216dd4b0',
667
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.fCAKE, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
668
+ },
669
+ 'FLP-FLM-SWTH': {
670
+ symbol: 'FLP-FLM-SWTH',
671
+ decimals: 8,
672
+ hash: '0xd8788aab4f7d84384f1808f9aaacd5dc4ea94317',
673
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.SWTH, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
674
+ },
675
+ 'FLP-bNEO-fUSDT': {
676
+ symbol: 'FLP-bNEO-fUSDT',
677
+ decimals: 8,
678
+ hash: '0x545dee8354823d1bdf4ac524e4092f7405025247',
679
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.fUSDT],
680
+ },
681
+ 'FLP-bNEO-fWBTC': {
682
+ symbol: 'FLP-bNEO-fWBTC',
683
+ decimals: 8,
684
+ hash: '0xc777a8032c1d9d7b885c7357d4c93e7a39f93942',
685
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.fWBTC],
686
+ },
687
+ 'FLP-bNEO-fWETH': {
688
+ symbol: 'FLP-bNEO-fWETH',
689
+ decimals: 8,
690
+ hash: '0xedcbe55b04bcc7dad69cfe243bf3d26dc106a1d4',
691
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.fWETH],
692
+ },
693
+ 'FLP-bNEO-GAS': {
694
+ symbol: 'FLP-bNEO-GAS',
695
+ decimals: 8,
696
+ hash: '0x3244fcadcccff190c329f7b3083e4da2af60fbce',
697
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.GAS],
698
+ },
699
+ 'FLP-bNEO-fBNB': {
700
+ symbol: 'FLP-bNEO-fBNB',
701
+ decimals: 8,
702
+ hash: '0xa1cd71d503bc8a7666c015f3e943deb2fc4c37e0',
703
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.fBNB],
704
+ },
705
+ 'FLP-bNEO-pONT': {
706
+ symbol: 'FLP-bNEO-pONT',
707
+ decimals: 8,
708
+ hash: '0x267f98a017f3905ffc996555632c77eae701d1ca',
709
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.pONT],
710
+ },
711
+ 'FLP-bNEO-WING': {
712
+ symbol: 'FLP-bNEO-WING',
713
+ decimals: 8,
714
+ hash: '0xff3cf71518e7f5a72b3862fa13fe9555c5899930',
715
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.pWING],
716
+ },
717
+ 'FLP-bNEO-GM': {
718
+ symbol: 'FLP-bNEO-GM',
719
+ decimals: 8,
720
+ hash: '0xc658095f498dd3e00292c29ac1e85fe9ff206f28',
721
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.GM],
722
+ },
723
+ 'FLP-bNEO-fCAKE': {
724
+ symbol: 'FLP-bNEO-fCAKE',
725
+ decimals: 8,
726
+ hash: '0xf3a258c98f437cc40d2b9f75f87790df8a9ab646',
727
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.fCAKE],
728
+ },
729
+ 'FLP-bNEO-SWTH': {
730
+ symbol: 'FLP-bNEO-SWTH',
731
+ decimals: 8,
732
+ hash: '0x48d8b2b02b960aa8845a3f90d2c590d4e61a425c',
733
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.SWTH],
734
+ },
735
+ 'FLP-fWBTC-fUSDT': {
736
+ symbol: 'FLP-fWBTC-fUSDT',
737
+ decimals: 8,
738
+ hash: '0x45d182227b5d753c7f358594b631838b92caf409',
739
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.fUSDT, _a.FLAMINGO_SWAP_TOKENS.mainnet.fWBTC],
740
+ },
741
+ 'FRP-FLM-FDE': {
742
+ symbol: 'FRP-FLM-FDE',
743
+ decimals: 8,
744
+ hash: '0x9f193ba476c934dd8847df26684063b2987b7508',
745
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.FDE, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
746
+ },
747
+ 'FRP-FLM-TIPS': {
748
+ symbol: 'FRP-FLM-TIPS',
749
+ decimals: 8,
750
+ hash: '0x35de27f4d7bc356c9a4b734cabb38cc63657233f',
751
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.TIPS, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
752
+ },
753
+ 'FRP-FLM-CANDY': {
754
+ symbol: 'FRP-FLM-CANDY',
755
+ decimals: 8,
756
+ hash: '0xf9956798ca7e8274f7ab4f1f6d6c06f55a0a9bd3',
757
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.CANDY, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
758
+ },
759
+ 'FRP-FLM-DOGEF': {
760
+ symbol: 'FRP-FLM-DOGEF',
761
+ decimals: 8,
762
+ hash: '0x5d8545d1780190e1bf7605713c901b197bcfaf11',
763
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.DOGEF, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
764
+ },
765
+ 'FRP-FLM-DOGER': {
766
+ symbol: 'FRP-FLM-DOGER',
767
+ decimals: 8,
768
+ hash: '0xb3fb4160534d8c366c06d31fc8df7bc2b3428785',
769
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.DOGER, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
770
+ },
771
+ 'FRP-FLM-SOM': {
772
+ symbol: 'FRP-FLM-SOM',
773
+ decimals: 8,
774
+ hash: '0x360dc86df056598a492f26baec4db38fcef65477',
775
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.SOM, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
776
+ },
777
+ 'FRP-bNEO-FDE': {
778
+ symbol: 'FRP-bNEO-FDE',
779
+ decimals: 8,
780
+ hash: '0x77994db5591ff4869d72fa31ffe3ace8d6435e6d',
781
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.FDE],
782
+ },
783
+ 'FRP-bNEO-TIPS': {
784
+ symbol: 'FRP-bNEO-TIPS',
785
+ decimals: 8,
786
+ hash: '0x85a2053d65dcbda9208e2a7cfa65a9db09a1cf11',
787
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.TIPS, _a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO],
788
+ },
789
+ 'FRP-bNEO-CANDY': {
790
+ symbol: 'FRP-bNEO-CANDY',
791
+ decimals: 8,
792
+ hash: '0x29ea009d2bfecd5f65994ed54277348fb89d3e44',
793
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.CANDY],
794
+ },
795
+ 'FRP-bNEO-DOGEF': {
796
+ symbol: 'FRP-bNEO-DOGEF',
797
+ decimals: 8,
798
+ hash: '0xdfe7973be3335a1df558e9509fb4296997364406',
799
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO, _a.FLAMINGO_SWAP_TOKENS.mainnet.DOGEF],
800
+ },
801
+ 'FRP-bNEO-DOGER': {
802
+ symbol: 'FRP-bNEO-DOGER',
803
+ decimals: 8,
804
+ hash: '0xdfaac72e7051e6cc218a9b77f228f0758f39a990',
805
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.DOGER, _a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO],
806
+ },
807
+ 'FRP-bNEO-SOM': {
808
+ symbol: 'FRP-bNEO-SOM',
809
+ decimals: 8,
810
+ hash: '0x5faf5e07e2dc09d1315cf6a49699be3feb0377d0',
811
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.SOM, _a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO],
812
+ },
813
+ 'FRP-FLM-LRB': {
814
+ symbol: 'FRP-FLM-LRB',
815
+ decimals: 8,
816
+ hash: '0x1f86bab6d548a3bd4e9292be0937c074da78ab77',
817
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.LRB, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
818
+ },
819
+ 'FRP-FLM-USDL': {
820
+ symbol: 'FRP-FLM-USDL',
821
+ decimals: 8,
822
+ hash: '0x33a1e91d8187d6f62b5b2c9847b450c90d770b32',
823
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.USDL, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
824
+ },
825
+ 'FLP-FLM-FUSD': {
826
+ symbol: 'FLP-FLM-FUSD',
827
+ decimals: 8,
828
+ hash: '0xaeae872ace15f87c117213c92c00944af789aed2',
829
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.FUSD, _a.FLAMINGO_SWAP_TOKENS.mainnet.FLM],
830
+ },
831
+ 'FLP-bNEO-FUSD': {
832
+ symbol: 'FLP-bNEO-FUSD',
833
+ decimals: 8,
834
+ hash: '0x3269ece5dc33adf17ed14be7780693f3c8b102d1',
835
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.FUSD, _a.FLAMINGO_SWAP_TOKENS.mainnet.bNEO],
836
+ },
837
+ 'FLP-fWBTC-FUSD': {
838
+ symbol: 'FLP-fWBTC-FUSD',
839
+ decimals: 8,
840
+ hash: '0xa71cb8d2ef7de0e97f28378faa401d1133452632',
841
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.FUSD, _a.FLAMINGO_SWAP_TOKENS.mainnet.fWBTC],
842
+ },
843
+ 'FLP-fUSDT-FUSD': {
844
+ symbol: 'FLP-fUSDT-FUSD',
845
+ decimals: 8,
846
+ hash: '0x20c0cdd773fe704721669870c7b33b8688aa132c',
847
+ tokens: [_a.FLAMINGO_SWAP_TOKENS.mainnet.FUSD, _a.FLAMINGO_SWAP_TOKENS.mainnet.fUSDT],
848
+ },
849
+ };
850
+ FlamingoSwapConstants.FLAMINGO_SWAP_POOLS = {
851
+ testnet: _a.TESTNET_FLAMINGO_SWAP_POOLS,
852
+ mainnet: _a.MAINNET_FLAMINGO_SWAP_POOLS,
853
+ };