forked from GzGod/Grass-new
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.8345b44c.js
2573 lines (2549 loc) · 149 KB
/
app.8345b44c.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(function() {
var e = {
86205: function(e, t, n) {
"use strict";
n.d(t, {
c: function() {
return y
},
i: function() {
return c
}
});
var a = n(98569),
i = n(48649);
const s = n(53272);
a.A.defaults.baseURL = s.baseOneURL;
const o = a.A.create({
timeout: 3e4
});
function r(e, t = {}) {
return o({
url: e,
method: "GET",
headers: {},
params: t
})
}
function l(e, t = {}) {
return o({
url: e,
method: "POST",
headers: {
"Content-Type": "application/json"
},
data: t
})
}
function u(e) {
return o({
url: e,
method: "DELETE"
})
}
function p(e, t = {}) {
return o({
url: e,
method: "PUT",
params: t
})
}
o.interceptors.response.use((e => 200 != e.status ? (console.log(i["default"]), Promise.reject(e)) : (401 == e.data.code && localStorage.clear(), Promise.resolve(e.data))), (e => {
if (e.response) switch (e.response.status) {
case 401:
console.log(401);
break;
case 403:
console.log(403);
break;
case 404:
console.log(404);
break;
case 500:
console.log(500);
break
}
return Promise.reject(e.response)
}));
var d = {
get: r,
put: p,
post: l,
deletes: u
};
function c(e) {
return d.get(`https://unpkg.com/obsswap-tokenlist/tokenlist/${e["chainID"]}/tokenlist.json`, e)
}
function y(e) {
return d.get("https://unpkg.com/obsswap-tokenlist/noticelist.json", e)
}
},
50223: function(e, t, n) {
"use strict";
n.d(t, {
A$: function() {
return r
},
Y2: function() {
return l
},
id: function() {
return u
},
uf: function() {
return o
},
x9: function() {
return s
}
});
var a = n(21441);
const i = n(53272),
s = [7234, 233],
o = [{
chainId: 7234,
chainName: "Genesis Testnet"
}, {
chainId: 233,
chainName: "Pioneer Testnet"
}],
r = {
233: i.pioneerScan,
7234: i.genesisScan
},
l = (0, a.xHY)({
id: 233,
caipNetworkId: "eip155:233",
chainNamespace: "eip155",
name: "Pioneer Testnet",
nativeCurrency: {
decimals: 18,
name: "Pioneer InitVerse",
symbol: "INI"
},
rpcUrls: {
default: {
http: ["http://rpc-testnet.iniscan.com"]
}
},
blockExplorers: {
default: {
name: "InitVersePioneerScan",
url: "https://testnet.iniscan.com",
apiUrl: "https://explorer-testnet-api.iniscan.com/api"
}
}
}),
u = (0, a.xHY)({
id: 7234,
caipNetworkId: "eip155:7234",
chainNamespace: "eip155",
name: "Genesis Testnet",
nativeCurrency: {
decimals: 18,
name: "Genesis InitVerse",
symbol: "INI"
},
rpcUrls: {
default: {
http: ["http://rpc-testnet.inichain.com"]
}
},
blockExplorers: {
default: {
name: "InitVerseGenesisScan",
url: "https://genesis-testnet.iniscan.com",
apiUrl: "https://explorer-testnet-api.inichain.com/api"
}
}
})
},
87275: function(e, t, n) {
"use strict";
n.d(t, {
F2: function() {
return h
},
MY: function() {
return f
}
});
var a = n(72708),
i = n(44602),
s = n(56127),
o = (n(21441), n(50223));
n(53272);
const r = "aa306f83ba439ae0e361109c10045480",
l = new s.k,
u = {
name: "Obsswap",
description: "InitVerse test chain swap",
url: "https://test.obsswap.org",
icons: ["https://avatars.mywebsite.com/"]
};
let p = null;
function d() {
return p || (p = (0, i.sX)({
adapters: [l],
metadata: u,
networks: [o.id, o.Y2],
projectId: r,
defaultNetwork: o.id,
allWallets: "SHOW",
allowUnsupportedChain: !1,
chainImages: {
7234: "https://www.clownwallet.com/res/ini.png",
233: "https://www.clownwallet.com/res/ini.png"
},
features: {
swaps: !1,
onramp: !1,
send: !1,
history: !1,
email: !1,
socials: !1,
analytics: !0
},
themeVariables: {
"--w3m-z-index": 1e6
}
}), p)
}
let c = null;
function y(e) {
if (c && !e) return c;
const t = d(),
n = t.getIsConnectedState(),
i = t.getChainId();
if (n && o.x9.includes(i)) {
const e = t.getWalletProvider();
c = new a.Ay$(e)
}
return c
}
function m() {
c = null
}
const h = () => {
const e = d(),
t = e.getChainId();
return t && o.x9.includes(t) ? t : null
},
f = () => `https://raw.githubusercontent.com/verse-extend/obsswap-tokenlist/main/assets/${h()}/`;
t.Ay = {
disconnectWallet: m,
getWeb3ModalProvider: y,
getInitGlobalWeb3Modal: d
}
},
57652: function(e, t, n) {
"use strict";
n.r(t);
const a = {
message: {
mallHeader: {
Trade: "Swap",
Meta: "Meta",
Explore: "Market",
Earn: "Liquidity",
Win: "Info",
connect: "Connect to Wallet",
connectTitle: "Connect to a wallet",
connected: "Connected",
disconnect: "Disconnect",
Address: "Address",
Balance: "Balance",
learnMore: "Learn more about wallets",
notWallet: "Haven’t got a crypto wallet yet?",
Cooperate: "Cooperate",
Guide: "Guide"
},
mallFooter: {
desc: "Earlier this year, a mysterious force coming from another galaxy summoned the most influential people on planet Earth to a secret party. Acquiring one of them will give you access to an ever-growing community of investors and entrepreneurs.",
company: "C O M P A N Y",
help: "H E L P",
connect: "C O N N E C T",
emailUs: "Email Us",
fileDownload: "File download",
guide: "Guide"
},
home: {
title: "Discover the Potential of Your Assets In Ouroboros Swap",
startBigSwap: "Start Big 5swap",
liquidityProviders: "FOR LIQUIDITY PROVIDERS",
liquidityProvidersText1: "Earn Passive Income with Your Crypto Assets",
liquidityProvidersText2: "Earn fees and rewards by depositing your tokens into our pools.",
lowerSlippage: "LOWER SLIPPAGE",
lowerSlippageText1: "Amplified Liquidity Pools",
lowerSlippageText2: "We can amplify liquidity pools to provide much higher capital efficiency and better slippage for you. Deposit less tokens and still achieve better liquidity and volume.",
higherReturns: "HIGHER RETURNS",
higherReturnsText1: "Dynamic Fees",
higherReturnsText2: "We adjust trading fees dynamically based on market conditions to give you the best returns.",
bonusRewards: "BONUS REWARDS",
bonusRewardsText1: "Rainmaker Yield Farming",
bonusRewardsText2: "Deposit your tokens and farm attractive rewards. We collaborate with projects to get you the best rewards.",
forTraders: "FOR TRADERS",
forTradersText1: "Swap your tokens at the best rates. No limits",
forTradersText2: "Through our dynamic trade routing technology, we aggregate liquidity from multiple exchanges, including Obsswap, and select the best trade route for you.",
forTradersText3: "No KYC or sign-ups required",
forTradersText4: "No extra deposit or withdrawal fees",
forTradersText5: "Supports permissionless listing",
partners: "Partners",
partnersText: "Creating the future of digital finance with Big ObsSwap",
contactUs: "Contact us",
contactUsText: "Establish strategic partnership with us"
},
trade: {
swap: "Swap",
swapFrom: "Swap from",
swapTo: "Swap to",
balance: "Balance",
selectToken: "Select a Token",
enterAmount: "Enter an Amount",
price: "Price",
priceAmount: "{price} {symbolA} pre 1{symbolB}",
minimumReceived: "Minimum received",
maximumSold: "Maximum sold",
priceImpact: "Price Impact",
liquidityProviderFee: "Liquidity Provider Fee",
minimumReceivedPrompt: "Your transaction will recent if there is a large,unfavorable price movement before it is confirmed.",
priceImpactPrompt: "The difference between the market price and estimated price due to trade size.",
liquidityProviderFeePrompt: "A portion of each trade({fee}) goes to liquidity providers as a protocol incentive.",
connectWallet: "Connect Wallet",
approve: "Approve",
insufficientBalance: "Insufficient balance",
insufficientLiquidity: "Insufficient liquidity",
transactionSettings: "Transaction Settings",
slippageTolerance: "Slippage Tolerance",
slippageDealine: "Slippage Dealine",
minutes: "minutes",
interfaceSetting: "Interface Setting",
toggleExpertMode: "Toggle Expert Mode",
disableMultihops: "Disable Multihops",
slippageTolerancePrompt: "Your transaction will revert if the price changes unfavorably by more than this percentage.",
slippageDealinePrompt: "Your transaction will revert if it is left confirming for longer than this time.",
toggleExpertModePrompt: "Bypasses confirmation modals and allows high slippage trades. Use at your own risk.",
disableMultihopsPrompt: "Restricts swaps to direct pairs only.",
tips1: "Enter a valid slippage percentage",
tips2: "Your transaction may fail",
tips3: "Your transaction may be frontrun",
searchPlaceholder: "Search name or paste address",
import: "Import",
manage: "Manage",
importToken: "Import Token",
importTokenText1: "Risk warning!",
importTokenText2: "Anyone can create a token,including creating fake version of existing tokens that claim to represent projects. If you purchase this token, you may not be able to sell it back",
iUnderstand: "I understand",
confirmSwap: "Confirm Swap",
from: "from",
to: "to",
confirmSwapText: "Output is estimated.You will receive at least {toInput} {symbol} or the transaction will revert",
pendingTransaction: "Pending Transaction",
pendingTransactionText: "Confirm this transaction in your wallet",
pendingAddToken: "Add Big5-LP to Metamask",
transactionSubmitted: "Transaction Submitted",
transactionFailed: "Transaction Rejected",
viewOnBscScan: "View On IniverseScan",
swapping: "Swapping",
adding: "Adding",
removing: "Removing",
for: "for",
and: "and"
},
win: {
title: "1000+ games coming soon",
stayTuned: "STAY TUNED",
big5wap: "Big 5wap"
},
earn: {
liquidityProviderRewards: "Liquidity provider rewards",
yourLiquidity: "Your Liquidity",
createPair: "Create a Pair",
addLiquidity: "Add Liquidity",
noLiquidityFound: "No liquidity found.",
Earned: "Earned",
APR: "APR",
Liquidity: "Liquidity",
Add: "Add",
Remove: "Remove",
YourTotalPoolTokens: "Your total pool tokens",
Pooled: "Pooled",
YourPoolShare: "Your pool share",
addLiquidityTips: "Tip:when you add liquidity,you will receive pool tokens representing your position.These tokens automatically earn fees proportional to your share of the pool,and can be redeemed at any time.",
Input: "Input",
PriceAndPoolShare: "Price and pool share",
ShareOfPool: "Share of Pool",
Supply: "Supply",
removeLiquidity: "Remove Liquidity",
removeLiquidityTips: "Tip:Removing pool tokens converse your position back into underlying tokens at the current rate,proportional to your share of the pool.Accrued fees are included in the amount you receive.",
Amount: "Amount",
MAX: "MAX",
add: "Add",
remove: "Remove",
Confirm: "Confirm",
YouWillReceive: "You will Receive",
WillReceiveTips: "Output is estimated.If the price changes by more than {slippage}% your transaction will revert.",
Token: "Token",
Burned: "Burned",
Deposited: "Deposited",
liquidityProviderRewardsPrompt: "liquidity providers earn a 0.3% fee on all trades proportional to their share of the pool.Fees are added to the pool,accrue in real time and can be claimed by withdrawing your liquidity."
},
alertMsg: {
MetaMaskPlugin: "Please make sure your browser has installed the MetaMask plug-in",
copySuccess: "Successful recovery",
castCompletion: "casting completed",
checkCreatorMsg: "Please go to the laboratory to check",
bindSuperAddressMsg: "Please go to the laboratory to bind the superior",
castFailureMsg: "casting failed",
harvestLPALADMsg: "The number of ALAD to be extracted is 0",
harvestLPMsg: "The number of LP to be extracted is 0",
contentLPEmpty: "Please enter the amount of pledged LP",
insufficientBalance: "Insufficient balance",
stayTuned: "Stay tuned"
}
}
};
t["default"] = a
},
41137: function(e, t, n) {
"use strict";
n.r(t);
const a = {
message: {
mallHeader: {
Trade: "交易",
Meta: "元宇宙",
Win: "行情",
Earn: "赚取",
connect: "连接钱包",
connectTitle: "连接钱包",
connected: "已连接",
disconnect: "断开",
Address: "地址",
Balance: "余额",
learnMore: "了解有关钱包的更多信息",
notWallet: "还没有加密钱包?",
Cooperate: "合作",
Guide: "指南"
},
mallFooter: {
desc: "今年早些时候,来自另一个星系的神秘力量召集了地球上最有影响力的人参加一个秘密聚会。收购其中一个将使您能够接触到不断增长的投资者和企业家社区。",
company: "关 于 我 们",
help: "帮 助",
connect: "联 系 我 们",
emailUs: "邮件联系",
fileDownload: "下载文件",
guide: "指南"
},
home: {
title: '在 <span style="background-image: linear-gradient(80deg, #85ffc4 -5%, #5cc6ff 44%, #bc85ff 99%);-webkit-background-clip: text; -webkit-text-fill-color: transparent;">Big 5swap</span> 中\n发现您资产的<span style="background-image: linear-gradient(80deg, #85ffc4 -5%, #5cc6ff 44%, #bc85ff 99%);-webkit-background-clip: text; -webkit-text-fill-color: transparent;">潜力</span>',
startBigSwap: "开启 Big 5swap 之旅",
liquidityProviders: "流动性提供者",
liquidityProvidersText1: "用您的加密资产赚取更多收益",
liquidityProvidersText2: "通过将您的代币存入我们的池中来赚取费用和奖励。",
lowerSlippage: "低滑点",
lowerSlippageText1: "放大的流动性池",
lowerSlippageText2: "我们可以放大流动性池,为您提供更高的资金效率和更好的滑点。存入更少的代币,仍然可以实现更好的流动性和交易量。",
higherReturns: "更高的回报率",
higherReturnsText1: "动态费用",
higherReturnsText2: "我们根据市场情况动态调整交易费用,给您带来最佳回报。",
bonusRewards: "额外奖励",
bonusRewardsText1: "Rainmaker 流动性挖矿",
bonusRewardsText2: "存入您的代币并获取有吸引力的奖励。我们与项目方合作,让用户得到最好的奖励。",
forTraders: "交易者",
forTradersText1: "以最好的价格兌換您的代币。没有限制",
forTradersText2: "通过我们的动态交易路由技术,我们从多个DEX(包括KyberSwap)汇总流动性,并为您提供最佳的交易路由。",
forTradersText3: "无需 KYC 或注册",
forTradersText4: "没有额外的存款或取款费用",
forTradersText5: "未经许可列出您的令牌",
partners: "合作伙伴",
partnersText: "Big 5Swap创造数字金融的未来",
contactUs: "联系我们",
contactUsText: "与我们建立战略合作伙伴关系"
},
trade: {
swap: "交换",
swapFrom: "从",
swapTo: "至",
balance: "余额",
selectToken: "选择代币",
enterAmount: "输入数量",
price: "价格",
priceAmount: "{price} {symbolA} pre 1{symbolB}",
minimumReceived: "最小获得量",
maximumSold: "最大销售量",
priceImpact: "价格影响",
liquidityProviderFee: "流动性供应商费用",
minimumReceivedPrompt: "如果在确认之前价格出现较大的不利变动,您的交易将被撤回。",
priceImpactPrompt: "市场价格与估计价格之间的差异由交易规模引起。",
liquidityProviderFeePrompt: "每笔交易的一部分({fee})作为协议激励提供给流动性提供者。",
connectWallet: "连接钱包",
approve: "授权",
insufficientBalance: "余额不足",
insufficientLiquidity: "此交易流动性不足",
transactionSettings: "交易设置",
slippageTolerance: "滑点容差",
slippageDealine: "交易截止期限",
minutes: "分钟",
interfaceSetting: "界面设置",
toggleExpertMode: "专家模式",
disableMultihops: "禁止多跳",
slippageTolerancePrompt: "如果兑换率变动超过此百分比,则将还原该交易。",
slippageDealinePrompt: "如果您的交易待处理超过此时间期限,则将还原该交易。",
toggleExpertModePrompt: "允许高度影响价格的交易,并跳过确认步骤。需自行承认使用风险。",
disableMultihopsPrompt: "将交易限制为仅限直接币对。",
tips1: "输入有效的滑点百分比",
tips2: "你的交易可能会失败",
tips3: "你的交易可能会被超前",
searchPlaceholder: "搜索名称或粘贴地址",
import: "导入",
manage: "管理",
importToken: "导入代币",
importTokenText1: "风险提示!",
importTokenText2: "任何人都可以创建代币,包括创建现有令牌的假版本声称代表项目。如果您购买此代币,你可能无法卖回",
iUnderstand: "我明白",
confirmSwap: "确认交换",
from: "从",
to: "至",
confirmSwapText: "估计您将收到 {toInput} {symbol} 或交易将恢复",
pendingTransaction: "等待确认中",
pendingTransactionText: "在您的钱包中确认此交易",
pendingAddToken: "将Big5-LP添加到Metamask",
transactionSubmitted: "交易已提交",
transactionFailed: "交易被拒绝",
viewOnBscScan: "在 IniverseScan 上查看 ",
swapping: "用",
adding: "供应",
removing: "移除",
for: "换",
and: "和"
},
win: {
title: "1000 多款游戏即将推出",
stayTuned: "敬请关注",
big5wap: "Big 5wap"
},
earn: {
liquidityProviderRewards: "流动性提供者奖励",
yourLiquidity: "您的流动性",
createPair: "创建",
addLiquidity: "添加流动性",
noLiquidityFound: "未发现添加的流动性。",
Earned: "已赚取",
APR: "年化率",
Liquidity: "流动性",
Add: "添加流动性",
Remove: "移除流动性",
YourTotalPoolTokens: "您的总池代币",
Pooled: "存入",
YourPoolShare: "您的池份额",
addLiquidityTips: "提示:当您注入流动资金时,您将收到代表您份额的流动池代币。这些代币将根据您在池中所占份额,自动赚取和累计相称的手续费,并且可以随时赎回流动池币对。",
Input: "输入",
PriceAndPoolShare: "价格和池份额",
ShareOfPool: "份额占比",
Supply: "供应",
removeLiquidity: "移除流动性",
removeLiquidityTips: "提示:当您注入流动资金时,您将收到代表您份额的流动池代币。这些代币将根据您在池中所占份额,自动赚取和累计相称的手续费,并且可以随时赎回流动池币对。",
Amount: "百分比",
MAX: "MAX",
add: "添加",
remove: "移除",
Confirm: "确认",
YouWillReceive: "您将收到",
WillReceiveTips: "如果价格变动超过{slippage}%,你的交易将恢复正常。",
Token: "代币",
Burned: "燃烧",
Deposited: "存入",
liquidityProviderRewardsPrompt: "流动性提供者在所有交易中收取 0.3% 的费用,费用与其在池中的份额成正比。费用会添加到池中,实时产生,并且可以通过提取您的流动性来索取。"
},
alertMsg: {
MetaMaskPlugin: "请确认你的浏览器安装了小狐狸钱包插件",
copySuccess: "复制成功",
castCompletion: "铸造完成",
checkCreatorMsg: "请前往实验室查看",
bindSuperAddressMsg: "请先前往实验室绑定上级",
castFailureMsg: "铸造失败",
harvestLPALADMsg: "待提取的ALAD数量为0",
harvestLPMsg: "可提取的LP数量为0",
contentLPEmpty: "请输入质押的LP数量",
insufficientBalance: "余额不足",
stayTuned: "敬请期待"
}
}
};
t["default"] = a
},
49699: function(e, t, n) {
"use strict";
var a = n(48649),
i = function() {
var e = this,
t = e._self._c;
return t("div", {
attrs: {
id: "app"
}
}, [t("div", {
staticClass: "header"
}, [t("zoon-header")], 1), t("div", {
staticClass: "content"
}, [t("router-view")], 1), t("bottom-bar", {
directives: [{
name: "show",
rawName: "v-show",
value: e.screenWidth < 960,
expression: "screenWidth<960"
}],
staticClass: "bottom",
attrs: {
selected: e.selected,
tabBars: e.tabBars
}
})], 1)
},
s = [],
o = (n(75231), n(21977), n(26980), n(87275)),
r = n(50651),
l = {
data() {
return {
selected: 0,
timer: null,
tabBars: [{
name: "/swap",
isShowRedDot: !1,
badge: "",
text: this.$t("message.mallHeader.Trade"),
iconPath: n(59254),
selectedIconPath: n(63781)
}, {
name: "/liquidity",
isShowRedDot: !1,
badge: "",
text: this.$t("message.mallHeader.Earn"),
iconPath: n(13498),
selectedIconPath: n(25585)
}, {
name: "/Explore",
isShowRedDot: !1,
badge: "",
text: this.$t("message.mallHeader.Explore"),
iconPath: n(25886),
selectedIconPath: n(92317)
}]
}
},
created() {
this.isConnectWallet && this.addNetworkBlockNumber()
},
mounted() {
this.$store.dispatch("wallet/setScreenWidth", document.body.clientWidth), window.onresize = () => (() => {
this.$store.dispatch("wallet/setScreenWidth", document.body.clientWidth)
})()
},
computed: {
...(0, r.L8)(["isConnectWallet", "walletAddress", "gasPrice", "slippage", "deadline", "transactions", "block", "screenWidth"])
},
watch: {
"$i18n.locale"(e, t) {
this.tabBars = [{
name: "/swap",
isShowRedDot: !1,
badge: "",
text: this.$t("message.mallHeader.Trade"),
iconPath: n(59254),
selectedIconPath: n(63781)
}, {
name: "/liquidity",
isShowRedDot: !1,
badge: "",
text: this.$t("message.mallHeader.Earn"),
iconPath: n(13498),
selectedIconPath: n(25585)
}, {
name: "/Explore",
isShowRedDot: !1,
badge: "",
text: this.$t("message.mallHeader.Explore"),
iconPath: n(25886),
selectedIconPath: n(92317)
}]
},
isConnectWallet(e, t) {
e ? this.addNetworkBlockNumber() : this.timer && (clearInterval(this.timer), this.timer = null)
},
block() {
this.handleUpdateTransactions()
}
},
methods: {
async addNetworkBlockNumber() {
const e = await o.Ay.getWeb3ModalProvider(!1).eth.getBlockNumber();
await this.$store.dispatch("wallet/setBlock", e), this.timer = setInterval((async () => {
const e = await o.Ay.getWeb3ModalProvider(!1).eth.getBlockNumber();
await this.$store.dispatch("wallet/setBlock", e)
}), 6e3)
},
handleUpdateTransactions() {
if (!this.walletAddress) return;
const e = Object.values(this.transactions),
t = e.filter((e => !e.receipt && e.from.toLowerCase() == this.walletAddress.toLowerCase()));
t.forEach(((e, t) => {
const n = o.Ay.getWeb3ModalProvider(!1).eth,
a = async e => {
try {
const t = await n.getTransactionReceipt(e.hash);
t && (this.$store.dispatch("wallet/setTransactionsReceipt", {
hash: e.hash,
receipt: t
}), document.documentElement.clientWidth < 400 ? this.$message({
type: "success",
title: e.title,
message: e.message,
hash: t.hash
}) : this.$message({
position: "top-right",
type: "success",
title: e.title,
message: e.message,
hash: t.hash
}))
} catch (t) {
console.log("get transactionReceipt error =", t)
}
};
a(e)
}))
}
},
beforeDestroy() {
window.clearInterval(this.timer)
},
destroyed() {
window.onresize = null
}
},
u = l,
p = n(50876),
d = (0, p.A)(u, i, s, !1, null, "30973024", null),
c = d.exports,
y = (n(2795), n(82666));
const m = [{
path: "/home",
name: "home",
alias: "/",
hidden: !0,
component: () => Promise.all([n.e(881), n.e(595)]).then(n.bind(n, 83595)),
meta: {
title: "home",
scrollToTop: !0
}
}, {
path: "/swap",
name: "swap",
hidden: !0,
component: () => Promise.all([n.e(881), n.e(313), n.e(594)]).then(n.bind(n, 59594)),
meta: {
title: "swap",
scrollToTop: !0
}
}, {
path: "/liquidity",
name: "liquidity",
hidden: !0,
component: () => Promise.all([n.e(881), n.e(313), n.e(983)]).then(n.bind(n, 42983)),
meta: {
title: "liquidity",
scrollToTop: !0
}
}];
a["default"].use(y.Ay);
const h = new y.Ay({
mode: "history",
scrollBehavior(e, t, n) {
if (n) return n; {
const t = {};
return e.matched.some((e => e.meta.scrollToTop)) && (t.x = 0, t.y = 0), t
}
},
routes: m
});
const f = y.Ay.prototype.push,
T = y.Ay.prototype.replace;
y.Ay.prototype.push = function(e, t, n) {
return t || n ? f.call(this, e, t, n) : f.call(this, e).catch((e => e))
}, y.Ay.prototype.replace = function(e, t, n) {
return t || n ? T.call(this, e, t, n) : T.call(this, e).catch((e => e))
};
var g = h;
const v = {
walletAddress: e => e.wallet.walletAddress,
connectWalletType: e => e.wallet.connectWalletType,
isConnectWallet: e => e.wallet.isConnectWallet,
currentNetworkID: e => e.wallet.currentNetworkID,
net: e => e.wallet.net,
gasPrice: e => e.wallet.gasPrice,
slippage: e => e.wallet.slippage,
deadline: e => e.wallet.deadline,
multipath: e => e.wallet.multipath,
transactions: e => e.wallet.transactions,
block: e => e.wallet.block,
screenWidth: e => e.wallet.screenWidth
};
var b = v,
w = n(2642);
const S = {
walletAddress: "",
connectWalletType: "",
isConnectWallet: !1,
currentNetworkID: 7234,
net: 0,
gasPrice: 1e10,
slippage: .5,
deadline: 20,
multipath: !1,
transactions: {},
block: 0,
screenWidth: 1920
},
C = {
SET_WALLETADDRESS(e, t) {
e.walletAddress = t
},
SET_CONNECTWALLETTYPE(e, t) {
e.connectWalletType = t
},
SET_CONNECTWALLET(e, t) {
e.isConnectWallet = t
},
SET_CURRENTNETWORKID(e, t) {
e.currentNetworkID = t
},
SETBLOCK: (e, t) => {
e.block = t
},
DELETETRANSACTIONS: e => {
e.transactions = {}
},
SETTRANSACTIONS: (e, t) => {
let n = JSON.parse(JSON.stringify(e.transactions, w.gn));
n[t.hash] = t, e.transactions = n
},
SETTRANSACTIONSRECEIPT: (e, t) => {
let n = JSON.parse(JSON.stringify(e.transactions, w.gn));
n[t.hash].receipt = t.receipt, e.transactions = n
},
SETNET: (e, t) => {
e.net = t
},
SET_GASPRICE(e, t) {
e.gasPrice = t
},
SET_SLIPPAGE(e, t) {
e.slippage = t
},
SET_DEADLINE(e, t) {
e.deadline = t
},
SET_MULTIPATH(e, t) {
e.multipath = t
},
SET_SCREENWIDTH(e, t) {
e.screenWidth = t
}
},
k = {
setWalletAddress({
commit: e
}, t) {
e("SET_WALLETADDRESS", t)
},
setConnectWalletType({
commit: e
}, t) {
e("SET_CONNECTWALLETTYPE", t)
},
setConnectWallet({
commit: e
}, t) {
e("SET_CONNECTWALLET", t)
},
setCurrentNetworkID({
commit: e
}, t) {
e("SET_CURRENTNETWORKID", t)
},
setBlock({
commit: e
}, t) {
e("SETBLOCK", t)
},
deleteTransactions({
commit: e
}, t) {
e("DELETETRANSACTIONS", t)
},
setTransactions({
commit: e
}, t) {
e("SETTRANSACTIONS", t)
},
setTransactionsReceipt({
commit: e
}, t) {
e("SETTRANSACTIONSRECEIPT", t)
},
setNet({
commit: e
}, t) {
e("SETNET", t)
},
setGasPrice({
commit: e
}, t) {
e("SET_GASPRICE", t)
},
setSlippage({
commit: e
}, t) {
e("SET_SLIPPAGE", t)
},
setDeadline({
commit: e
}, t) {
e("SET_DEADLINE", t)
},
setMultipath({
commit: e
}, t) {
e("SET_MULTIPATH", t)
},
setScreenWidth({
commit: e
}, t) {
e("SET_SCREENWIDTH", t)
}
};
var M = {
namespaced: !0,
state: S,
mutations: C,
actions: k
};
a["default"].use(r.Ay);
const x = new r.Ay.Store({
modules: {
wallet: M
},
getters: b
});
var A = x,
E = n(57877),
P = n.n(E),
I = n(80245),
N = n(57652),
_ = n(41137),
W = {
en: N["default"],
zh: _["default"]
};
a["default"].use(I.A);
const L = new I.A({
locale: sessionStorage.getItem("lang") || "en",
messages: W,
silentTranslationWarn: !0
});
var D = L,
O = n(61093),
R = n.n(O),
B = function() {
var e = this,
t = e._self._c;
return t("div", {
staticClass: "header"
}, [t("div", {
staticClass: "content"
}, [t("a", {
staticClass: "navLeft"
}, [t("img", {
attrs: {
src: n(77710),
alt: "logo"
},
on: {
click: function(t) {
return e.handleChangeNavItemMethod(-1)
}
}
})]), t("div", {
staticClass: "navMiddle"
}, [t("div", {
ref: "navMiddleRef",
staticClass: "navMiddleRight"
}, [t("div", {
style: 0 === e.topNavKey ? {
color: "var(--white)",
fontSize: "16px"
} : {
color: "#777"
},
on: {
click: function(t) {