-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
4267 lines (4267 loc) · 168 KB
/
data.js
File metadata and controls
4267 lines (4267 loc) · 168 KB
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
export const data =
{
"id": "bitcoin",
"symbol": "btc",
"name": "Bitcoin",
"block_time_in_minutes": 10,
"categories": [
"Cryptocurrency"
],
"localization": {
"en": "Bitcoin",
"es": "Bitcoin",
"de": "Bitcoin",
"nl": "Bitcoin",
"pt": "Bitcoin",
"fr": "Bitcoin",
"it": "Bitcoin",
"hu": "Bitcoin",
"ro": "Bitcoin",
"sv": "Bitcoin",
"pl": "Bitcoin",
"id": "Bitcoin",
"zh": "比特币",
"zh-tw": "比特幣",
"ja": "ビットコイン",
"ko": "비트코인",
"ru": "биткоина",
"ar": "بيتكوين",
"th": "บิตคอยน์",
"vi": "Bitcoin",
"tr": "Bitcoin"
},
"description": {
"en": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"es": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"de": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"nl": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"pt": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"fr": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"it": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"hu": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"ro": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"sv": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"pl": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"id": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"zh": "",
"zh-tw": "",
"ja": "",
"ko": "비트코인은 2009년 나카모토 사토시가 만든 디지털 통화로, 통화를 발행하고 관리하는 중앙 장치가 존재하지 않는 구조를 가지고 있다. 대신, 비트코인의 거래는 P2P 기반 분산 데이터베이스에 의해 이루어지며, 공개 키 암호 방식 기반으로 거래를 수행한다. 비트코인은 공개성을 가지고 있다. 비트코인은 지갑 파일의 형태로 저장되며, 이 지갑에는 각각의 고유 주소가 부여되며, 그 주소를 기반으로 비트코인의 거래가 이루어진다. 비트코인은 1998년 웨이따이가 사이버펑크 메일링 리스트에 올린 암호통화란 구상을 최초로 구현한 것 중의 하나이다.\r\n\r\n비트코인은 최초로 구현된 가상화폐입니다. 발행 및 유통을 관리하는 중앙권력이나 중간상인 없이, P2P 네트워크 기술을 이용하여 네트워크에 참여하는 사용자들이 주체적으로 화폐를 발행하고 이체내용을 공동으로 관리합니다. 이를 가능하게 한 블록체인 기술을 처음으로 코인에 도입한 것이 바로 비트코인입니다.\r\n\r\n비트코인을 사용하는 개인과 사업자의 수는 꾸준히 증가하고 있으며, 여기에는 식당, 아파트, 법률사무소, 온라인 서비스를 비롯한 소매상들이 포함됩니다. 비트코인은 새로운 사회 현상이지만 아주 빠르게 성장하고 있습니다. 이를 바탕으로 가치 증대는 물론, 매일 수백만 달러의 비트코인이 교환되고 있습니다. \r\n\r\n비트코인은 가상화폐 시장에서 현재 유통시가총액과 코인의 가치가 가장 크고, 거래량 또한 안정적입니다. 이더리움이 빠르게 추격하고 있지만 아직은 가장 견고한 가상화폐라고 볼 수 있습니다. \r\n\r\n코인 특징\r\n1. 중앙주체 없이 사용자들에 의해 거래내용이 관리될 수 있는 비트코인의 운영 시스템은 블록체인 기술에서 기인합니다. 블록체인은 쉽게 말해 다 같이 장부를 공유하고, 항상 서로의 컴퓨터에 있는 장부 파일을 비교함으로써 같은 내용만 인정하는 방식으로 운영됩니다. 따라서 전통적인 금융기관에서 장부에 대한 접근을 튼튼하게 방어하던 것과는 정반대의 작업을 통해 보안을 달성합니다. 장부를 해킹하려면 51%의 장부를 동시에 조작해야 하는데, 이는 사실상 불가능합니다. 왜냐하면, 이를 실행하기 위해서는 컴퓨팅 파워가 어마어마하게 소요되고, 이것이 가능한 슈퍼컴퓨터는 세상에 존재하지 않기 때문입니다. 또한, 장부의 자료들은 줄글로 기록되는 것이 아니라 암호화 해시 함수형태로 블록에 저장되고, 이 블록들은 서로 연결되어 있어서 더 강력한 보안을 제공합니다. \r\n\r\n2. 비트코인은 블록발행보상을 채굴자에게 지급하는 방식으로 신규 코인을 발행합니다. 블록발행보상은 매 21만 블록(약 4년)을 기준으로 발행량이 절반으로 줄어듭니다. 처음에는 50비트코인씩 발행이 되었고, 4년마다 계속 반으로 감소하고 있습니다. 코인의 총량이 2,100만 개에 도달하면 신규 발행은 종료되고, 이후에는 거래 수수료만을 통해 시스템이 지탱될 것입니다. \r\n\r\n핵심 가치\r\n(키워드: 통화로 사용될 수 있는 보편성 및 편의성)\r\n\r\n1. 다양한 알트코인들의 등장에 앞서 비트코인은 가상화폐 시장에서 독보적이었기 때문에, 현재 가장 보편적인 결제수단으로 사용됩니다. 실생활에서 이를 활용할 수 있는 가맹점이 알트코인들보다 압도적으로 많을 뿐만 아니라, 이 또한 증가하고 있습니다. 일례로 일본 업체들이 비트코인 결제 시스템을 도입하면서 곧 비트코인을 오프라인 점포 26만 곳에서 이용할 수 있게 될 것입니다. \r\n\r\n2. 여러 나라에서 비트코인을 정식 결제 수단으로 인정하면서, 실물화폐와 가상화폐를 거래할 때 더는 부가가치세가 부과되지 않게 된다고 합니다. 실제로 일본과 호주에서는 이미 비트코인을 합법적 결제 수단으로 인정하면서 제도권 안으로 들여오고 있고, 미국에서는 비트코인 ETF 승인 노력도 진행되고 있습니다. 각국에 비트코인을 기반으로 한 ATM 기계도 설치되었다고 합니다. ",
"ru": "",
"ar": "",
"th": "",
"vi": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>.",
"tr": "Bitcoin is the first successful internet money based on peer-to-peer technology; whereby no central bank or authority is involved in the transaction and production of the Bitcoin currency. It was created by an anonymous individual/group under the name, Satoshi Nakamoto. The source code is available publicly as an open source project, anybody can look at it and be part of the developmental process.\r\n\r\nBitcoin is changing the way we see money as we speak. The idea was to produce a means of exchange, independent of any central authority, that could be transferred electronically in a secure, verifiable and immutable way. It is a decentralized peer-to-peer internet currency making mobile payment easy, very low transaction fees, protects your identity, and it works anywhere all the time with no central authority or banks.\r\n\r\nBitcoin is design to have only 21 million BTC ever created, thus making it a deflationary currency. Bitcoin uses the <a href=\"https://www.coingecko.com/en?hashing_algorithm=SHA-256\">SHA-256</a> hashing algorithm with an average transaction confirmation time of 10 minutes. Miners today are mining Bitcoin using ASIC chip dedicated to only mining Bitcoin, and the hash rate has shot up to peta hashes.\r\n\r\nBeing the first successful online cryptography currency, Bitcoin has inspired other alternative currencies such as <a href=\"https://www.coingecko.com/en/coins/litecoin\">Litecoin</a>, <a href=\"https://www.coingecko.com/en/coins/peercoin\">Peercoin</a>, <a href=\"https://www.coingecko.com/en/coins/primecoin\">Primecoin</a>, and so on.\r\n\r\nThe cryptocurrency then took off with the innovation of the turing-complete smart contract by <a href=\"https://www.coingecko.com/en/coins/ethereum\">Ethereum</a> which led to the development of other amazing projects such as <a href=\"https://www.coingecko.com/en/coins/eos\">EOS</a>, <a href=\"https://www.coingecko.com/en/coins/tron\">Tron</a>, and even crypto-collectibles such as <a href=\"https://www.coingecko.com/buzz/ethereum-still-king-dapps-cryptokitties-need-1-billion-on-eos\">CryptoKitties</a>."
},
"links": {
"homepage": [
"http://www.bitcoin.org",
"",
""
],
"blockchain_site": [
"https://blockchair.com/bitcoin/",
"https://blockchain.info/",
"https://live.blockcypher.com/btc/",
"https://bitcoinblockexplorers.com/",
"https://btc.tokenview.com/"
],
"official_forum_url": [
"https://bitcointalk.org/",
"",
""
],
"chat_url": [
"",
"",
""
],
"announcement_url": [
"",
""
],
"twitter_screen_name": "btc",
"facebook_username": "bitcoins",
"bitcointalk_thread_identifier": null,
"telegram_channel_identifier": "",
"subreddit_url": "https://www.reddit.com/r/Bitcoin/",
"repos_url": {
"github": [
"https://github.com/bitcoin/bitcoin",
"https://github.com/bitcoin/bips"
],
"bitbucket": []
}
},
"image": {
"thumb": "https://assets.coingecko.com/coins/images/1/thumb/bitcoin.png?1547033579",
"small": "https://assets.coingecko.com/coins/images/1/small/bitcoin.png?1547033579",
"large": "https://assets.coingecko.com/coins/images/1/large/bitcoin.png?1547033579"
},
"country_origin": "",
"genesis_date": "2009-01-03",
"market_cap_rank": 1,
"coingecko_rank": 1,
"coingecko_score": 90.44,
"developer_score": 94.576,
"community_score": 90.451,
"liquidity_score": 99.991,
"public_interest_score": 41.846,
"market_data": {
"current_price": {
"aed": 35287,
"ars": 416524,
"aud": 13911.04,
"bch": 31.151161,
"bdt": 811586,
"bhd": 3621.85,
"bmd": 9607.73,
"bnb": 349.263,
"brl": 36276,
"btc": 1,
"cad": 12659.49,
"chf": 9541.39,
"clp": 6688021,
"cny": 66206,
"czk": 220853,
"dkk": 64471,
"eos": 2251,
"eth": 45.364208,
"eur": 8634.53,
"gbp": 7770.17,
"hkd": 75082,
"huf": 2822731,
"idr": 134694986,
"ils": 33863,
"inr": 661545,
"jpy": 1043535,
"krw": 11370600,
"kwd": 2924.89,
"lkr": 1693124,
"ltc": 106.701,
"mmk": 14510019,
"mxn": 183062,
"myr": 39598,
"nok": 83779,
"nzd": 14493.37,
"php": 491180,
"pkr": 1548964,
"pln": 36888,
"rub": 608798,
"sar": 36034,
"sek": 91332,
"sgd": 13178.51,
"thb": 296566,
"try": 54448,
"twd": 298790,
"uah": 243946,
"usd": 9607.73,
"vef": 2387401179,
"vnd": 223099947,
"xag": 586.16,
"xau": 6.77,
"xdr": 6976.08,
"xlm": 113911,
"xrp": 30922,
"zar": 137524
},
"roi": null,
"ath": {
"aed": 72229,
"ars": 593492,
"aud": 25717,
"bch": 42.242547,
"bdt": 1631248,
"bhd": 7416.37,
"bmd": 19665.39,
"bnb": 143062,
"brl": 64777,
"btc": 1,
"cad": 25303,
"chf": 19484.57,
"clp": 12582805,
"cny": 130006,
"czk": 429834,
"dkk": 124584,
"eos": 2810,
"eth": 624.203,
"eur": 16727.68,
"gbp": 14759.86,
"hkd": 153608,
"huf": 5263109,
"idr": 266681922,
"ils": 69096,
"inr": 1259942,
"jpy": 2214028,
"krw": 21418073,
"kwd": 5939.64,
"lkr": 3024387,
"ltc": 318.98,
"mmk": 26871485,
"mxn": 376059,
"myr": 80224,
"nok": 164805,
"nzd": 28131,
"php": 991988,
"pkr": 2181203,
"pln": 70407,
"rub": 1157051,
"sar": 73750,
"sek": 167278,
"sgd": 26517,
"thb": 639578,
"try": 80284,
"twd": 589706,
"uah": 363965,
"usd": 19665.39,
"vef": 3454441855,
"vnd": 323919147,
"xag": 1225.45,
"xau": 15.67,
"xdr": 13907.05,
"xlm": 132191,
"xrp": 35717,
"zar": 257660
},
"ath_change_percentage": {
"aed": -51.1083,
"ars": -29.76632,
"aud": -45.86557,
"bch": -26.20683,
"bdt": -50.20967,
"bhd": -51.12693,
"bmd": -51.10684,
"bnb": -99.7562,
"brl": -43.95607,
"btc": 0,
"cad": -49.93691,
"chf": -50.98905,
"clp": -46.80881,
"cny": -49.02412,
"czk": -48.57852,
"dkk": -48.20715,
"eos": -19.87217,
"eth": -92.73578,
"eur": -48.34367,
"gbp": -47.31473,
"hkd": -51.08399,
"huf": -46.33376,
"idr": -49.43542,
"ils": -50.94403,
"inr": -47.41828,
"jpy": -52.83917,
"krw": -46.83333,
"kwd": -50.71897,
"lkr": -43.97502,
"ltc": -66.55667,
"mmk": -45.9611,
"mxn": -51.27731,
"myr": -50.60306,
"nok": -49.12762,
"nzd": -48.44032,
"php": -50.45016,
"pkr": -28.93179,
"pln": -47.56711,
"rub": -47.34476,
"sar": -51.10358,
"sek": -45.37203,
"sgd": -50.25799,
"thb": -53.59224,
"try": -32.13237,
"twd": -49.29946,
"uah": -32.92447,
"usd": -51.10684,
"vef": -30.83638,
"vnd": -31.07562,
"xag": -52.07586,
"xau": -56.75471,
"xdr": -49.79965,
"xlm": -13.65554,
"xrp": -13.37377,
"zar": -46.58099
},
"ath_date": {
"aed": "2017-12-16T00:00:00.000Z",
"ars": "2019-06-26T19:55:29.614Z",
"aud": "2017-12-16T00:00:00.000Z",
"bch": "2018-12-15T16:19:57.060Z",
"bdt": "2017-12-16T00:00:00.000Z",
"bhd": "2017-12-16T00:00:00.000Z",
"bmd": "2017-12-16T00:00:00.000Z",
"bnb": "2017-10-19T00:00:00.000Z",
"brl": "2017-12-16T00:00:00.000Z",
"btc": "2018-08-09T06:12:38.151Z",
"cad": "2017-12-16T00:00:00.000Z",
"chf": "2017-12-16T00:00:00.000Z",
"clp": "2017-12-16T00:00:00.000Z",
"cny": "2017-12-16T00:00:00.000Z",
"czk": "2017-12-16T00:00:00.000Z",
"dkk": "2017-12-16T00:00:00.000Z",
"eos": "2019-07-16T17:10:21.120Z",
"eth": "2015-10-20T00:00:00.000Z",
"eur": "2017-12-16T00:00:00.000Z",
"gbp": "2017-12-16T00:00:00.000Z",
"hkd": "2017-12-16T00:00:00.000Z",
"huf": "2017-12-16T00:00:00.000Z",
"idr": "2017-12-16T00:00:00.000Z",
"ils": "2017-12-16T00:00:00.000Z",
"inr": "2017-12-16T00:00:00.000Z",
"jpy": "2017-12-16T00:00:00.000Z",
"krw": "2017-12-16T00:00:00.000Z",
"kwd": "2017-12-16T00:00:00.000Z",
"lkr": "2017-12-16T00:00:00.000Z",
"ltc": "2017-03-05T00:00:00.000Z",
"mmk": "2017-12-16T00:00:00.000Z",
"mxn": "2017-12-16T00:00:00.000Z",
"myr": "2017-12-16T00:00:00.000Z",
"nok": "2017-12-16T00:00:00.000Z",
"nzd": "2017-12-16T00:00:00.000Z",
"php": "2017-12-16T00:00:00.000Z",
"pkr": "2019-06-26T19:55:29.614Z",
"pln": "2017-12-16T00:00:00.000Z",
"rub": "2017-12-16T00:00:00.000Z",
"sar": "2017-12-16T00:00:00.000Z",
"sek": "2017-12-16T00:00:00.000Z",
"sgd": "2017-12-16T00:00:00.000Z",
"thb": "2017-12-16T00:00:00.000Z",
"try": "2019-06-26T19:55:29.614Z",
"twd": "2017-12-16T00:00:00.000Z",
"uah": "2019-06-26T19:55:29.614Z",
"usd": "2017-12-16T00:00:00.000Z",
"vef": "2019-06-26T19:55:29.614Z",
"vnd": "2019-06-26T19:55:29.614Z",
"xag": "2017-12-16T00:00:00.000Z",
"xau": "2017-12-16T00:00:00.000Z",
"xdr": "2017-12-16T00:00:00.000Z",
"xlm": "2019-07-10T14:00:31.466Z",
"xrp": "2019-07-11T16:50:23.889Z",
"zar": "2017-12-16T00:00:00.000Z"
},
"market_cap": {
"aed": 629685222959,
"ars": 7433052259086,
"aud": 248233256574,
"bch": 555872935,
"bdt": 14482453239266,
"bhd": 64630607987,
"bmd": 171446252084,
"bnb": 6232466329,
"brl": 647329613992,
"btc": 17844637,
"cad": 225889009433,
"chf": 170265844638,
"clp": 119345217542488,
"cny": 1181401833858,
"czk": 3941517960739,
"dkk": 1150680722840,
"eos": 40176521644,
"eth": 809524356,
"eur": 154096920050,
"gbp": 138651670093,
"hkd": 1339809598471,
"huf": 50377510228664,
"idr": 2403850904545969,
"ils": 604384385200,
"inr": 11806281826454,
"jpy": 18618991539774,
"krw": 202959787679137,
"kwd": 52193553968,
"lkr": 30213168407439,
"ltc": 1904115277,
"mmk": 258925828862113,
"mxn": 3266897875232,
"myr": 706616070855,
"nok": 1495153104220,
"nzd": 258626156929,
"php": 8765369827787,
"pkr": 27640672257725,
"pln": 658345035689,
"rub": 10864017511159,
"sar": 643009168440,
"sek": 1629628857950,
"sgd": 235181567742,
"thb": 5292160047755,
"try": 972170199385,
"twd": 5331447642205,
"uah": 4353119607784,
"usd": 171446252084,
"vef": 42602274951320304,
"vnd": 3981319481445352,
"xag": 10461072528,
"xau": 120713592,
"xdr": 124485580622,
"xlm": 2032589144988,
"xrp": 552079974831,
"zar": 2454285501919
},
"market_cap_rank": 1,
"total_volume": {
"aed": 103368926880,
"ars": 1220146898096,
"aud": 40750395910,
"bch": 91252884,
"bdt": 2377426524460,
"bhd": 10609702595,
"bmd": 28144462854,
"bnb": 1023116541,
"brl": 106265048397,
"btc": 2929146,
"cad": 37084157457,
"chf": 27950153482,
"clp": 19591603788760,
"cny": 193940679079,
"czk": 646958259274,
"dkk": 188859899922,
"eos": 6594812717,
"eth": 132887977,
"eur": 25293625778,
"gbp": 22761609177,
"hkd": 219941941086,
"huf": 8268786447178,
"idr": 394569748666022,
"ils": 99196566551,
"inr": 1937901062023,
"jpy": 3056886709109,
"krw": 33308549620404,
"kwd": 8568046971,
"lkr": 4959766606742,
"ltc": 312564241,
"mmk": 42505031656897,
"mxn": 536253055985,
"myr": 115997459940,
"nok": 245417183083,
"nzd": 42456259948,
"php": 1438841701744,
"pkr": 4537467947851,
"pln": 108059539348,
"rub": 1783387960956,
"sar": 105555807933,
"sek": 267542699255,
"sgd": 38604577629,
"thb": 868749207136,
"try": 159498554928,
"twd": 875263046053,
"uah": 714604207499,
"usd": 28144462854,
"vef": 6993551216653748,
"vnd": 653539472263348,
"xag": 1717070600,
"xau": 19817642,
"xdr": 20435441178,
"xlm": 333686181277,
"xrp": 90582925740,
"zar": 402857533442
},
"high_24h": {
"aed": 35581,
"ars": 419669,
"aud": 14017.76,
"bch": 31.585469,
"bdt": 818087,
"bhd": 3652.61,
"bmd": 9687.7,
"bnb": 349.074,
"brl": 36571,
"btc": 1,
"cad": 12756.81,
"chf": 9622.79,
"clp": 6735837,
"cny": 66736,
"czk": 222593,
"dkk": 64985,
"eos": 2338,
"eth": 46.229874,
"eur": 8702.18,
"gbp": 7827.67,
"hkd": 75729,
"huf": 2843824,
"idr": 135777173,
"ils": 34110,
"inr": 667533,
"jpy": 1052500,
"krw": 11472274,
"kwd": 2950.22,
"lkr": 1706694,
"ltc": 108.616,
"mmk": 14626980,
"mxn": 184431,
"myr": 39908,
"nok": 84394,
"nzd": 14601.83,
"php": 495015,
"pkr": 1560730,
"pln": 37178,
"rub": 614020,
"sar": 36333,
"sek": 91994,
"sgd": 13280.79,
"thb": 298962,
"try": 54867,
"twd": 301249,
"uah": 245903,
"usd": 9687.7,
"vef": 2407273059,
"vnd": 224868163,
"xag": 591.25,
"xau": 6.82,
"xdr": 7034.15,
"xlm": 118375,
"xrp": 31042,
"zar": 138313
},
"low_24h": {
"aed": 33656,
"ars": 396404,
"aud": 13259.7,
"bch": 30.6826,
"bdt": 773840,
"bhd": 3455.05,
"bmd": 9163.72,
"bnb": 340.842,
"brl": 34593,
"btc": 1,
"cad": 12067.25,
"chf": 9101.38,
"clp": 6370386,
"cny": 63039,
"czk": 210556,
"dkk": 61473,
"eos": 2207,
"eth": 44.964441,
"eur": 8232.28,
"gbp": 7402.64,
"hkd": 71624,
"huf": 2689553,
"idr": 128176287,
"ils": 32265,
"inr": 631197,
"jpy": 995624,
"krw": 10851780,
"kwd": 2790.66,
"lkr": 1614386,
"ltc": 105.632,
"mmk": 13835860,
"mxn": 174256,
"myr": 37750,
"nok": 79849,
"nzd": 13809.11,
"php": 468290,
"pkr": 1476147,
"pln": 35172,
"rub": 579559,
"sar": 34368,
"sek": 87051,
"sgd": 12547.89,
"thb": 282763,
"try": 51806,
"twd": 284955,
"uah": 232603,
"usd": 9163.72,
"vef": 2277072381,
"vnd": 212705859,
"xag": 558.47,
"xau": 6.45,
"xdr": 6653.7,
"xlm": 111451,
"xrp": 30268,
"zar": 130629
},
"price_change_24h": 65.822,
"price_change_percentage_24h": 0.68982,
"price_change_percentage_7d": -9.42485,
"price_change_percentage_14d": -6.58925,
"price_change_percentage_30d": -22.21848,
"price_change_percentage_60d": 11.06328,
"price_change_percentage_200d": 141.26522,
"price_change_percentage_1y": 17.27987,
"market_cap_change_24h": 1193435178,
"market_cap_change_percentage_24h": 0.70098,
"price_change_24h_in_currency": {
"aed": 239.69,
"ars": 4351.67,
"aud": 108.2,
"bch": 0.04401838,
"bdt": 5810.77,
"bhd": 24.21,
"bmd": 65.82,
"bnb": 4.129095,
"brl": 230.4,
"btc": 0,
"cad": 85.64,
"chf": 60.37,
"clp": 54537,
"cny": 559.49,
"czk": 1555.55,
"dkk": 439.55,
"eos": 37.7303,
"eth": -0.0431522264,
"eur": 65.9,
"gbp": 64.56,
"hkd": 476.22,
"huf": 18365.02,
"idr": 1101653,
"ils": 266.34,
"inr": 4489.29,
"jpy": 6568.54,
"krw": 70982,
"kwd": 19.07,
"lkr": 12114.67,
"ltc": -0.1296027091,
"mmk": 103166,
"mxn": 1353.29,
"myr": 294.76,
"nok": 613.66,
"nzd": 114.2,
"php": 4273.62,
"pkr": 15102.59,
"pln": 261.4,
"rub": 4318.76,
"sar": 236.85,
"sek": 660.12,
"sgd": 110.99,
"thb": 2007.91,
"try": 327.59,
"twd": 2075.08,
"uah": 1743.58,
"usd": 65.82,
"vef": 16356021,
"vnd": 1934108,
"xag": 3.8,
"xau": 0.03766496,
"xdr": 47.79,
"xlm": 2414,
"xrp": 321.505,
"zar": 1134.14
},
"price_change_percentage_1h_in_currency": {
"aed": -0.51428,
"ars": -0.49932,
"aud": -0.52535,
"bch": 0.6979,
"bdt": -0.50391,
"bhd": -0.50391,
"bmd": -0.50391,
"bnb": 0.38777,
"brl": -0.50391,
"btc": 0,
"cad": -0.46916,
"chf": -0.51313,
"clp": -0.47408,
"cny": -0.53711,
"czk": -0.48629,
"dkk": -0.5159,
"eos": 0.35687,
"eth": 0.20849,
"eur": -0.50037,
"gbp": -0.49382,
"hkd": -0.50442,
"huf": -0.49816,
"idr": -0.55395,
"ils": -0.4248,
"inr": -0.62229,
"jpy": -0.474,
"krw": -0.61266,
"kwd": -0.50391,
"lkr": -0.50391,
"ltc": 0.43362,
"mmk": -0.50391,
"mxn": -0.5238,
"myr": -0.50391,
"nok": -0.49501,
"nzd": -0.50088,
"php": -0.48865,
"pkr": -0.50391,
"pln": -0.48989,
"rub": -0.58941,
"sar": -0.50391,
"sek": -0.47913,
"sgd": -0.51153,
"thb": -0.49263,
"try": -0.52546,
"twd": -0.50076,
"uah": -0.50391,
"usd": -0.50391,
"vef": -0.50391,
"vnd": -0.49004,
"xag": -0.53629,
"xau": -0.50391,
"xdr": -0.50391,
"xlm": 0.02764,
"xrp": -0.08057,
"zar": -0.44327
},
"price_change_percentage_24h_in_currency": {
"aed": 0.6839,
"ars": 1.05579,
"aud": 0.78386,
"bch": 0.14151,
"bdt": 0.72114,
"bhd": 0.673,
"bmd": 0.68982,
"bnb": 1.19637,
"brl": 0.63918,
"btc": 0,
"cad": 0.68111,
"chf": 0.63672,
"clp": 0.82215,
"cny": 0.85228,
"czk": 0.70933,
"dkk": 0.68645,
"eos": 1.70451,
"eth": -0.09503,
"eur": 0.7691,
"gbp": 0.83782,
"hkd": 0.63831,
"huf": 0.65487,
"idr": 0.82463,
"ils": 0.79277,
"inr": 0.68324,
"jpy": 0.63344,
"krw": 0.62818,
"kwd": 0.6561,
"lkr": 0.72068,
"ltc": -0.12132,
"mmk": 0.71609,
"mxn": 0.74476,
"myr": 0.74996,
"nok": 0.73788,
"nzd": 0.79419,
"php": 0.87771,
"pkr": 0.98461,
"pln": 0.71367,
"rub": 0.71446,
"sar": 0.66164,
"sek": 0.72803,
"sgd": 0.84937,
"thb": 0.68167,
"try": 0.60529,
"twd": 0.69935,
"uah": 0.71989,
"usd": 0.68982,
"vef": 0.68982,
"vnd": 0.87451,
"xag": 0.6531,
"xau": 0.55986,
"xdr": 0.68982,
"xlm": 2.16481,
"xrp": 1.05064,
"zar": 0.83154
},
"price_change_percentage_7d_in_currency": {
"aed": -9.42882,
"ars": -7.47742,
"aud": -7.64257,
"bch": -5.44671,
"bdt": -9.4667,
"bhd": -9.32768,
"bmd": -9.42485,
"bnb": -0.01734,
"brl": -8.74113,
"btc": 0,
"cad": -8.57235,
"chf": -8.47662,
"clp": -8.3976,
"cny": -9.30888,
"czk": -8.55984,
"dkk": -8.66989,
"eos": -7.86994,
"eth": -3.36715,
"eur": -8.68085,
"gbp": -8.34171,
"hkd": -9.3388,
"huf": -8.25406,
"idr": -9.03981,
"ils": -9.80714,
"inr": -9.40426,
"jpy": -8.73672,
"krw": -8.85701,
"kwd": -9.35041,
"lkr": -9.24437,
"ltc": 0.55871,
"mmk": -9.86953,
"mxn": -9.29541,
"myr": -9.20661,
"nok": -7.88005,
"nzd": -7.63631,
"php": -9.37391,
"pkr": -8.70171,
"pln": -8.23799,
"rub": -8.9264,
"sar": -9.4333,
"sek": -8.28038,
"sgd": -8.67254,
"thb": -9.44245,
"try": -9.24167,
"twd": -9.27295,
"uah": -10.67887,
"usd": -9.42485,
"vef": -9.42485,
"vnd": -9.69456,
"xag": -10.38167,
"xau": -9.07102,
"xdr": -9.01824,
"xlm": -2.07166,
"xrp": -3.56401,
"zar": -6.93388
},
"price_change_percentage_14d_in_currency": {
"aed": -6.59231,
"ars": -2.6265,
"aud": -5.06148,
"bch": -14.36586,
"bdt": -6.61642,
"bhd": -6.60139,
"bmd": -6.58925,
"bnb": -2.88658,
"brl": -5.59378,
"btc": 0,
"cad": -5.55784,
"chf": -5.76016,
"clp": -4.3483,
"cny": -6.45214,
"czk": -5.41213,
"dkk": -5.37365,
"eos": -9.7386,
"eth": 0.48362,
"eur": -5.37377,
"gbp": -5.01582,
"hkd": -6.71966,
"huf": -4.99811,
"idr": -6.50612,
"ils": -7.39722,
"inr": -6.18343,
"jpy": -5.89838,
"krw": -6.10756,
"kwd": -6.56194,
"lkr": -6.18717,
"ltc": -6.75649,
"mmk": -6.61969,
"mxn": -6.27759,
"myr": -6.39293,
"nok": -4.56894,
"nzd": -5.64856,
"php": -6.5797,
"pkr": -5.24001,
"pln": -5.31902,
"rub": -6.27093,
"sar": -6.59423,
"sek": -5.21315,
"sgd": -5.65631,
"thb": -6.62707,
"try": -7.59218,
"twd": -6.49321,
"uah": -7.9953,
"usd": -6.58925,
"vef": -6.58925,
"vnd": -6.40766,
"xag": -13.16581,
"xau": -6.82611,
"xdr": -6.18082,
"xlm": -2.10666,
"xrp": -7.45541,
"zar": -4.31572
},
"price_change_percentage_30d_in_currency": {
"aed": -22.22306,
"ars": -20.48336,
"aud": -20.91852,
"bch": 9.63476,
"bdt": -22.30894,
"bhd": -22.22591,
"bmd": -22.21848,
"bnb": -2.61915,
"brl": -23.71362,
"btc": 0,
"cad": -21.81213,
"chf": -20.89656,
"clp": -20.08114,
"cny": -21.9455,
"czk": -20.02541,
"dkk": -20.4755,
"eos": 12.91512,
"eth": 13.81675,
"eur": -20.45654,
"gbp": -20.1417,
"hkd": -22.17616,
"huf": -19.56335,
"idr": -22.62796,
"ils": -23.13768,
"inr": -22.32565,
"jpy": -21.70005,
"krw": -20.39739,
"kwd": -21.95777,
"lkr": -22.40932,
"ltc": 3.339,
"mmk": -22.53051,
"mxn": -22.93145,
"myr": -22.43489,
"nok": -20.49609,
"nzd": -21.12788,
"php": -22.27415,
"pkr": -23.06758,
"pln": -20.00776,
"rub": -22.08051,
"sar": -22.46347,
"sek": -20.35471,
"sgd": -21.13433,
"thb": -21.6205,
"try": -23.89659,
"twd": -21.90221,
"uah": -24.55811,
"usd": -22.21848,
"vef": -22.21848,
"vnd": -22.44868,
"xag": -27.31255,
"xau": -22.78868,
"xdr": -21.49003,
"xlm": 3.10584,
"xrp": 6.20386,
"zar": -20.96053
},
"price_change_percentage_60d_in_currency": {
"aed": 11.0517,
"ars": 8.33936,
"aud": 11.25368,
"bch": 63.26115,
"bdt": 10.94007,
"bhd": 11.05444,
"bmd": 11.06328,
"bnb": 35.69647,
"brl": 5.4974,
"btc": 0,
"cad": 8.29507,
"chf": 9.39563,
"clp": 9.70925,
"cny": 10.68741,
"czk": 9.95469,
"dkk": 11.1365,
"eos": 107.15766,
"eth": 40.96402,
"eur": 11.16991,
"gbp": 13.44455,
"hkd": 10.57371,
"huf": 11.48879,
"idr": 8.12822,
"ils": 8.23948,
"inr": 9.52041,
"jpy": 10.11944,
"krw": 10.09462,
"kwd": 11.09904,
"lkr": 10.93139,
"ltc": 41.67964,
"mmk": 9.246,
"mxn": 10.5584,
"myr": 9.10409,
"nok": 10.74982,
"nzd": 9.14478,
"php": 8.62744,
"pkr": 19.37128,
"pln": 10.60877,
"rub": 8.34497,
"sar": 10.99965,
"sek": 10.56151,
"sgd": 10.33139,
"thb": 7.70486,
"try": 4.50644,
"twd": 9.20277,
"uah": 6.32936,
"usd": 11.06328,
"vef": 11.06328,
"vnd": 9.97838,
"xag": -2.30963,
"xau": 0.11662,
"xdr": 11.77293,
"xlm": 79.18078,
"xrp": 58.79993,
"zar": 8.53891
},
"price_change_percentage_200d_in_currency": {
"aed": 141.24006,
"ars": 180.03081,
"aud": 150.62716,
"bch": 23.48457,
"bdt": 142.75483,
"bhd": 141.27866,
"bmd": 141.26522,
"bnb": -43.39996,
"brl": 147.49914,
"btc": 0,
"cad": 140.6235,
"chf": 146.08181,
"clp": 148.43531,
"cny": 143.8944,
"czk": 149.93302,
"dkk": 150.45863,
"eos": 62.52084,
"eth": 69.44516,
"eur": 150.45799,
"gbp": 149.69424,
"hkd": 140.56643,
"huf": 154.69732,