-
Notifications
You must be signed in to change notification settings - Fork 4
/
terms.toml
1063 lines (858 loc) · 15.4 KB
/
terms.toml
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
[[terms]]
term = "3Box"
tags = []
translation = "3Box"
[[terms]]
term = "51% attack"
tags = []
translation = "51% 攻擊"
[[terms]]
term = "Account"
tags = []
translation = "帳戶"
[[terms]]
term = "Address"
tags = []
translation = "地址"
[[terms]]
term = "Application Binary Interface"
tags = []
translation = "應用程式二元介面"
acronym = "ABI"
[[terms]]
term = "Application Specific Integrated Circuit"
tags = []
translation = "特殊應用積體電路"
acronym = "ASIC"
[[terms]]
term = "Attacker"
tags = []
translation = "攻擊者"
[[terms]]
term = "Attestation"
tags = []
translation = "見證"
[[terms]]
term = "Back-run, Backrun, Backrunning"
tags = ["mev"]
translation = "尾隨交易"
[[terms]]
term = "Backend"
tags = []
translation = "後端"
[[terms]]
term = "Balance"
tags = []
translation = "餘額"
[[terms]]
term = "Base fee"
tags = []
translation = "基本費用"
[[terms]]
term = "Beacon Chain"
tags = []
translation = "信標鏈"
[[terms]]
term = "Beam"
tags = []
translation = "光束同步"
[[terms]]
term = "Big-endian"
tags = []
translation = "大端序"
[[terms]]
term = "Bitcoin"
tags = []
translation = "比特幣"
[[terms]]
term = "Bitcoin Improvement Proposals"
tags = []
translation = "比特幣改進提案"
acronym = "BIPs"
context = "[連結](https://github.com/bitcoin/bips)"
[[terms]]
term = "Block"
tags = []
translation = "區塊"
[[terms]]
term = "Block explorers"
tags = []
translation = "區塊瀏覽器"
[[terms]]
term = "Blockchain"
tags = []
translation = "區塊鏈"
[[terms]]
term = "Bootstrap Nodes"
tags = []
translation = "啟動節點"
[[terms]]
term = "Bounty"
tags = []
translation = "懸賞"
[[terms]]
term = "Builder"
tags = ["mev"]
translation = "區塊建造者"
[[terms]]
term = "Bundle"
tags = ["mev"]
translation = "交易同捆包"
[[terms]]
term = "Byte"
tags = []
translation = "位元組"
[[terms]]
term = "Bytecode"
tags = []
translation = "位元組碼"
[[terms]]
term = "Byzantium fork"
tags = []
translation = "拜占庭升級"
[[terms]]
term = "Centralized exchanges"
tags = []
translation = "中央化交易所"
acronym = "CEX"
[[terms]]
term = "Chaumian Blinding"
tags = []
translation = "喬姆盲簽"
[[terms]]
term = "Clients"
tags = []
translation = "客戶端"
[[terms]]
term = "Collateral"
tags = []
translation = "抵押品"
[[terms]]
term = "Collectible"
tags = []
translation = "收藏集"
[[terms]]
term = "Committee"
tags = []
translation = "委員會"
[[terms]]
term = "Common Weakness Enumeration"
tags = []
translation = "通用缺陷列表"
acronym = "CWE"
[[terms]]
term = "Compiling"
tags = []
translation = "編譯"
[[terms]]
term = "Composability"
tags = []
translation = "可組合性"
[[terms]]
term = "Composable"
tags = []
translation = "可組合"
[[terms]]
term = "Consensus"
tags = []
translation = "共識"
[[terms]]
term = "Consensus mechanism"
tags = []
translation = "共識機制"
[[terms]]
term = "Consensus rules"
tags = []
translation = "共識規則"
[[terms]]
term = "Consistency"
tags = []
translation = "一致性"
[[terms]]
term = "Constant Product AMM"
tags = []
translation = "恆定乘積造市者"
[[terms]]
term = "Constantinople fork"
tags = []
translation = "君士坦丁堡升級"
[[terms]]
term = "Contract account"
tags = []
translation = "合約帳戶"
[[terms]]
term = "Contract creation transaction"
tags = []
translation = "合約創建交易"
[[terms]]
term = "Crosslink"
tags = []
translation = "交聯"
[[terms]]
term = "Cryptocurrency"
tags = []
translation = "密碼學貨幣"
[[terms]]
term = "Cryptoeconomics"
tags = []
translation = "密碼經濟學"
[[terms]]
term = "Dai"
tags = []
translation = "Dai"
[[terms]]
term = "Decentralized application"
tags = []
translation = "去中心化應用程式"
acronym = "DApp"
[[terms]]
term = "Decentralized autonomous organization"
tags = []
translation = "去中央化自治組織"
acronym = "DAO"
[[terms]]
term = "Decentralized exchange"
tags = []
translation = "去中央化交易所"
acronym = "DEX"
[[terms]]
term = "Decentralized finance"
tags = []
translation = "去中央化金融"
acronym = "DeFi"
[[terms]]
term = "Deploy"
tags = []
translation = "部署"
[[terms]]
term = "Devcon"
tags = []
translation = "Devcon"
[[terms]]
term = "Difficulty"
tags = []
translation = "挖礦難度"
[[terms]]
term = "Difficulty bomb"
tags = []
translation = "難度炸彈"
[[terms]]
term = "Digital signature"
tags = []
translation = "數位簽章"
[[terms]]
term = "Elliptic curve digital signature algorithm"
tags = []
translation = "橢圓曲線簽章演算法"
acronym = "ECDSA"
[[terms]]
term = "Epoch"
tags = []
translation = "時期"
[[terms]]
term = "Escrow"
tags = []
translation = "代管"
[[terms]]
term = "Ethash"
tags = []
translation = "Ethash"
[[terms]]
term = "Ethereum"
tags = []
translation = "以太坊"
[[terms]]
term = "Ethereum Foundation"
tags = []
translation = "以太坊基金會"
acronym = "EF"
[[terms]]
term = "Ethereum Improvement Proposals"
tags = []
translation = "以太坊改進提案"
acronym = "EIPs"
[[terms]]
term = "Ethereum Name Service"
tags = []
translation = "以太坊域名服務"
acronym = "ENS"
[[terms]]
term = "Ethereum Request for Comments"
tags = []
translation = "以太坊開發者公開徵求意見"
acronym = "ERC"
[[terms]]
term = "Ethereum Virtual Machine"
tags = []
translation = "以太坊虛擬機"
acronym = "EVM"
[[terms]]
term = "Events"
tags = []
translation = "事件"
[[terms]]
term = "EVM assembly language"
tags = []
translation = "EVM 組合語言"
[[terms]]
term = "Externally owned account"
tags = []
translation = "外部帳戶"
acronym = "EOA"
[[terms]]
term = "Fallback function"
tags = []
translation = "預設函式"
[[terms]]
term = "Fiat currency"
tags = []
translation = "法定貨幣"
[[terms]]
term = "Finality"
tags = []
translation = "最終性"
[[terms]]
term = "Finalized Checkpoint"
tags = []
translation = "定案的檢查點"
[[terms]]
term = "Fork"
tags = []
translation = "分叉"
[[terms]]
term = "Fraud proof"
tags = []
translation = "詐欺證明"
[[terms]]
term = "Front-run, Frontrun, Frontrunning"
tags = ["mev"]
translation = "搶跑交易、搶先交易"
[[terms]]
term = "Front-running"
tags = []
translation = "預先交易"
[[terms]]
term = "Frontier"
tags = []
translation = "前沿"
[[terms]]
term = "Full Node"
tags = ["protocol"]
translation = "全節點"
[[terms]]
term = "Gas"
tags = []
translation = "Gas"
[[terms]]
term = "Gas limit"
tags = []
translation = "燃料限制"
[[terms]]
term = "Genesis"
tags = []
translation = "創世區塊"
[[terms]]
term = "Geth"
tags = []
translation = "Geth"
[[terms]]
term = "Governance"
tags = []
translation = "治理"
[[terms]]
term = "Greedy Heaviest-Observed Sub-Tree"
tags = []
translation = "GHOST 演算法"
acronym = "GHOST"
[[terms]]
term = "Gwei"
tags = []
translation = "Gwei"
[[terms]]
term = "Hard fork"
tags = []
translation = "硬分叉"
[[terms]]
term = "Hash"
tags = []
translation = "雜湊值"
[[terms]]
term = "HD wallet"
tags = []
translation = "HD 錢包"
[[terms]]
term = "Hexadecimal literals"
tags = []
translation = "十六進位值"
[[terms]]
term = "Homestead"
tags = []
translation = "家園"
[[terms]]
term = "Ice Age"
tags = []
translation = "冰河期"
[[terms]]
term = "Impermanent Loss"
tags = ["defi"]
translation = "無常損失"
[[terms]]
term = "Internal transaction"
tags = []
translation = "內部交易"
[[terms]]
term = "Interoperability"
tags = []
translation = "互通性"
[[terms]]
term = "Justified Checkpoint"
tags = []
translation = "準定案的檢查點"
[[terms]]
term = "Keccak-256"
tags = []
translation = "Keccak-256"
[[terms]]
term = "Key derivation function"
tags = []
translation = "金鑰衍生函數"
acronym = "KDF"
[[terms]]
term = "Keystore file"
tags = []
translation = "密鑰存儲檔案"
[[terms]]
term = "Last-in-first-out"
tags = []
translation = "後進先出法"
[[terms]]
term = "Launchpad"
tags = []
translation = "啟動面板"
[[terms]]
term = "Layer"
tags = []
translation = "分層"
[[terms]]
term = "Layer 2"
tags = []
translation = "第二層"
[[terms]]
term = "Ledger"
tags = []
translation = "帳本"
[[terms]]
term = "Lending pool"
tags = ["defi"]
translation = "借貸池"
[[terms]]
term = "Liveness"
tags = []
translation = "活躍性"
[[terms]]
term = "Mainnet"
tags = []
translation = "主網"
[[terms]]
term = "Malicious"
tags = []
translation = "惡意"
[[terms]]
term = "Merkle Patricia tree"
tags = []
translation = "字首雜湊樹"
acronym = "MPT"
[[terms]]
term = "Merkle Tree"
tags = []
translation = "雜湊樹"
[[terms]]
term = "Message"
tags = []
translation = "訊息"
[[terms]]
term = "Message call"
tags = []
translation = "訊息呼叫"
[[terms]]
term = "Metropolis"
tags = []
translation = "大都會"
[[terms]]
term = "MEV Searcher"
tags = ["mev"]
translation = "尋利者"
[[terms]]
term = "Miner"
tags = []
translation = "礦工"
[[terms]]
term = "Mining"
tags = []
translation = "挖礦"
[[terms]]
term = "Modular"
tags = []
translation = "模組化"
[[terms]]
term = "Network"
tags = []
translation = "網路"
[[terms]]
term = "Node"
tags = []
translation = "節點"
[[terms]]
term = "Non-fungible token"
tags = []
translation = "非同質性代幣"
acronym = "NFT"
[[terms]]
term = "Nonce"
tags = []
translation = "Nonce"
[[terms]]
term = "Nullifier"
tags = ["zk"]
translation = "註銷碼"
[[terms]]
term = "Off-chain"
tags = []
translation = "鏈外"
[[terms]]
term = "Offer"
tags = []
translation = "報價"
[[terms]]
term = "Ommer"
tags = []
translation = "Ommer"
[[terms]]
term = "Opcodes"
tags = []
translation = "操作碼"
[[terms]]
term = "Optimistic rollup"
tags = []
translation = "樂觀卷疊"
[[terms]]
term = "Oracle"
tags = []
translation = "預言機"
[[terms]]
term = "Plasma"
tags = []
translation = "Plasma"
[[terms]]
term = "Prediction market"
tags = []
translation = "預測市場"
[[terms]]
term = "Private key"
tags = []
translation = "私鑰"
[[terms]]
term = "Proof of Authority"
tags = []
translation = "權威證明"
acronym = "PoA"
[[terms]]
term = "Proof of Stake"
tags = ["protocol"]
translation = "權益證明"
acronym = "PoS"
[[terms]]
term = "Proof of work"
tags = ["protocol"]
translation = "工作量證明"
acronym = "PoW"
[[terms]]
term = "Proposer"
tags = ["protocol"]
translation = "區塊發佈者"
[[terms]]
term = "Prysm"
tags = []
translation = "Prysm"
[[terms]]
term = "Public key"
tags = []
translation = "公鑰"
[[terms]]
term = "RanDAO"
tags = []
translation = "RanDAO"
[[terms]]
term = "Re-entrancy"
tags = []
translation = "重入"
[[terms]]
term = "Receipt"
tags = []
translation = "收據"
[[terms]]
term = "Recursive Length Prefix"
tags = []
translation = "遞迴長度前綴"
acronym = "RLP"
[[terms]]
term = "Redundancy"
tags = []
translation = "冗餘"
[[terms]]
term = "Rollup"
tags = []
translation = "Rollup"
[[terms]]
term = "RPC"
tags = []
translation = "RPC"
[[terms]]
term = "Sandwich Attack"
tags = ["mev"]
translation = "三明治夾擊"
[[terms]]
term = "Scalable Transparent Arguments of Knowledge"
tags = []
translation = "可擴展透明知識證明"
acronym = "STARK"
context = "來自[論文](https://eprint.iacr.org/2018/046)"
[[terms]]
term = "Scaling"
tags = []
translation = "擴展"
[[terms]]
term = "Scaling, Scalability"
tags = []
translation = "擴展, 可擴展性"
[[terms]]
term = "Secure Hash Algorithm"
tags = []
translation = "安全雜湊演算法"
acronym = "SHA"
[[terms]]
term = "Security token"
tags = []
translation = "證券性質代幣"
[[terms]]
term = "Seed phrase"
tags = []
translation = "種子助記詞"
[[terms]]
term = "Sender"
tags = []
translation = "發送者"
[[terms]]
term = "Serenity"
tags = []
translation = "Serenity"
[[terms]]
term = "Shard chain"
tags = []
translation = "分片鏈"
[[terms]]
term = "Sharding"
tags = []
translation = "分片"
[[terms]]
term = "Short position"
tags = []
translation = "空部位"
[[terms]]
term = "Sidechain"
tags = []
translation = "側鏈"
[[terms]]
term = "Slash, Slashing"
tags = ["protocol"]
translation = "懲罰、罰款"
[[terms]]
term = "Slot"
tags = []
translation = "時隙"
[[terms]]
term = "Smart contract"
tags = []
translation = "智慧合約"
[[terms]]
term = "Solidity"
tags = []
translation = "Solidity"
[[terms]]
term = "Solidity inline assembly"
tags = []
translation = "Solidity 內嵌組合語言"
[[terms]]
term = "Specification"
tags = []
translation = "規格"
[[terms]]
term = "Spurious Dragon"
tags = []
translation = "Spurious Dragon"
[[terms]]
term = "Stablecoin"
tags = []
translation = "穩定幣"
[[terms]]
term = "Stake"
tags = []
translation = "質押"
[[terms]]
term = "Staker"
tags = []
translation = "質押者"
[[terms]]
term = "Staking"
tags = []
translation = "質押"
[[terms]]
term = "Staking pool"
tags = []
translation = "質押池"
[[terms]]
term = "State channels"
tags = []
translation = "狀態通道"
[[terms]]
term = "State Diff"
tags = []
translation = "狀態差異"
[[terms]]
term = "State machine"
tags = []
translation = "狀態機"
[[terms]]
term = "State pruning"
tags = []
translation = "狀態剪枝"
context = """
當以太坊狀態樹會隨著交易的發生而更動,更動時會產生新的狀態根以及讓樹上某些舊節點失效。狀態剪枝是刪除舊節點以節省硬碟使用的做法。[連結](https://blog.ethereum.org/2015/06/26/state-tree-pruning/)
"""
[[terms]]
term = "Storage"
tags = []
translation = "存儲"
[[terms]]
term = "Strong typing"
tags = []
translation = "強型別"
[[terms]]
term = "Succinct non-interactive argument of knowledge"
tags = []
translation = "簡潔無互動知識證明"
acronym = "SNARK"
[[terms]]
term = "Swap"
tags = []
translation = "交換"
[[terms]]
term = "Swarm"
tags = []
translation = "Swarm"
[[terms]]
term = "Sybil attack"
tags = []
translation = "分身攻擊"
[[terms]]
term = "Tangerine Whistle"
tags = []
translation = "Tangerine Whistle"
[[terms]]
term = "Testnet"
tags = []
translation = "測試網"
[[terms]]
term = "The Merge"
tags = []
translation = "合併"
[[terms]]
term = "Throughput"
tags = []
translation = "吞吐量"
[[terms]]
term = "Timestamp"
tags = []
translation = "時間戳記"
[[terms]]
term = "Token"
tags = []
translation = "代幣"
[[terms]]
term = "Transaction"
tags = []
translation = "交易"
[[terms]]
term = "Transaction fee"
tags = []
translation = "交易手續費"
[[terms]]
term = "Transfers"
tags = []
translation = "傳送"
[[terms]]
term = "Turing complete"
tags = []
translation = "圖靈完備"
[[terms]]
term = "Unspent transaction output"
tags = []
translation = "未花費之交易輸出"
acronym = "UTXO"
[[terms]]
term = "Validate"
tags = []
translation = "驗證"
[[terms]]
term = "Validator"