-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2129 lines (871 loc) · 65.1 KB
/
index.html
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
<!DOCTYPE html>
<html class="theme-next pisces use-motion" lang>
<head><meta name="generator" content="Hexo 3.8.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#222">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css">
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<meta name="keywords" content="Hexo, NexT">
<meta property="og:type" content="website">
<meta property="og:title" content="Hexo">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Hexo">
<meta property="og:locale" content="default">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Hexo">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Pisces',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: 'Author'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/">
<title>Hexo</title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="default">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">Hexo</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle"></p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br>
Home
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br>
Archives
</a>
</li>
</ul>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/12/02/EOS/BOS Oracle/BOS Oracle 2/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/12/02/EOS/BOS Oracle/BOS Oracle 2/" itemprop="url">BOS Oracle(二)用正向激励的方式提供可信数据</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-12-02T15:00:31+08:00">
2019-12-02
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/预言机/" itemprop="url" rel="index">
<span itemprop="name">预言机</span>
</a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="概述"><a href="#概述" class="headerlink" title="概述"></a>概述</h1><p>BOS 的预言机(Oracle)希望能够作为区块链与现实世界的数据桥梁。</p>
<p>中心化预言机服务的设计是基于<strong>可信数据源或者权威数据源</strong>这一假设,这样的假设从理论上来说有很大风险,无法保证这种数据源提供数据的真实性。</p>
<p>BOS 的预言机系统从构建之初所遵循的原则就是:</p>
<figure class="highlight plain"><table><tr><td class="gutter"><pre><span class="line">1</span><br><span class="line">2</span><br></pre></td><td class="code"><pre><span class="line"></span><br><span class="line">不依赖于每一个预言机数据提供者一定会提供真实数据,而是承认其不足进而将其作为博弈的参与方加入到系统中来,以期在博弈中达到整体可信。</span><br></pre></td></tr></table></figure>
<p>BOS 预言机将会使得区块链的价值从其货币属性延伸到了<strong>交易和规则</strong>的构建上,这种延伸将会解决或改进许多现实世界的信任问题,从而扩大区块链的应用边界,并最终让区块链技术可以在交易转账以外场景落地。</p>
<h1 id="参与者博弈完备"><a href="#参与者博弈完备" class="headerlink" title="参与者博弈完备"></a>参与者博弈完备</h1><p><strong>数据提供方:</strong>提供数据,从数据使用者中获取收益,需要抵押押金作为风控的基础</p>
<p><strong>数据使用者:</strong>和提供方约定收益,按照约定支付费用</p>
<p><strong>预言机合约:</strong>用于记录数据提供方和使用者所约定的协议,并提供数据处理和穿透。</p>
<p><strong>仲裁员:</strong>当数据提供方和数据使用者出现争议和提出申诉时,多轮多个仲裁员参与决策,注册并且需要boswps.io竞选,需要抵押押金作为风控的基础</p>
<p>系统会对最终判定的作恶者进行惩罚。整个系统会形成“数据提供者”、“数据使用者”、“仲裁员”三方的博弈平衡,而整个博弈过程和规则制定可以保证公正是极大概率的事件。</p>
<h1 id="正向激励模型"><a href="#正向激励模型" class="headerlink" title="正向激励模型"></a>正向激励模型</h1><p><strong>场景一:</strong></p>
<p>\1. DApp方为了给用户提供可信数据并作出判断,获取问题需求注册服务,并给该服务所需的价格,和所需的抵押金。</p>
<p>\2. 数据提供方提供稳定可靠的服务,使用抵押金作为保证,收取高昂的费用作为维护成本,并提供收益。</p>
<p><strong>场景二:</strong></p>
<p>DApp方提供体育比赛数据,但为了证明DApp方自身不会作假,自身作为提供者和<strong>同时作为使用者</strong>进行注册,当DApp用户有举报问题时进行扣款和抵押。</p>
<p>总之系统的规则对于理性的参与者来说是静态的可预见的,因而诚实公正地进行参与才是其优势策略,对于非理性的参与者系统也能够以极大概率予以惩罚,从而使得整个预言机服务将会正向、健康、高效的运行。</p>
<p>下面我们列出四种通过正向激励,将数据通过可信方式进行数据通信:</p>
<h1 id="1-直接写入数据库"><a href="#1-直接写入数据库" class="headerlink" title="1. 直接写入数据库"></a>1. 直接写入数据库</h1><p><img src="/2019/12/02/EOS/BOS Oracle/BOS Oracle 2/gif;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVQImWNgYGBgAAAABQABh6FO1AAAAABJRU5ErkJggg==" alt="img"></p>
<h4 id="数据提者先行写入数据到链上,使用者读取"><a href="#数据提者先行写入数据到链上,使用者读取" class="headerlink" title="数据提者先行写入数据到链上,使用者读取"></a>数据提者先行写入数据到链上,使用者读取</h4><p><strong>应用场景:</strong></p>
<p>比较适应非标准化的服务,包括特殊证据格式的服务,预言机合约不方便进行穿透的场景</p>
<p><strong>服务特点:</strong></p>
<p>标准化服务,服务便于注册,以确定性数据和常规化的非确定性数据为主,在提供方pushdata的过程中,经过oracle穿透,对使用和消费双方简单方便</p>
<h1 id="2-监听-穿透oracle合约推送"><a href="#2-监听-穿透oracle合约推送" class="headerlink" title="2. 监听+穿透oracle合约推送"></a>2. 监听+穿透oracle合约推送</h1><p><img src="https://mmbiz.qpic.cn/mmbiz_png/ic36Rayaict54e6DpdhkDfPsAHKq2zUiaV8nF3GUgEibicepu4lGsZneSq02JuvR1xChK66bRT10CeLAicIUqZL0m4SQ/640?wx_fmt=png&wxfrom=5&wx_lazy=1&wx_co=1" alt="img"></p>
<h4 id="监听调用事件,链上主动推送数据到使用者"><a href="#监听调用事件,链上主动推送数据到使用者" class="headerlink" title="监听调用事件,链上主动推送数据到使用者"></a>监听调用事件,链上主动推送数据到使用者</h4><p><strong>应用场景:</strong></p>
<p>比较适应非标准化的服务,包括特殊证据格式的服务,预言机合约不方便进行穿透的场景</p>
<p><strong>服务特点:</strong></p>
<p>标准化服务,服务便于注册,以确定性数据和常规化的非确定性数据为主,在提供方pushdata的过程中,经过oracle穿透,对使用和消费双方简单方便</p>
<h1 id="3-监听-直接推送DApp合约"><a href="#3-监听-直接推送DApp合约" class="headerlink" title="3. 监听+直接推送DApp合约"></a>3. 监听+直接推送DApp合约</h1><p><img src="https://mmbiz.qpic.cn/mmbiz_png/ic36Rayaict54e6DpdhkDfPsAHKq2zUiaV8mXs7th2KUaBYydghlKRnNbEm0BMC46LVckv3SHdUUhCzSrBkZpO9lw/640?wx_fmt=png&wxfrom=5&wx_lazy=1&wx_co=1" alt="img"></p>
<h4 id="监听调用事件,链下主动推送给数据使用者"><a href="#监听调用事件,链下主动推送给数据使用者" class="headerlink" title="监听调用事件,链下主动推送给数据使用者"></a>监<strong>听调</strong>用事件,链下主动推送给数据使用者</h4><p>在触发阈值逻辑时,经过预言机合约,将发送有效ACTION和用户交互</p>
<p><strong>应用场景:</strong></p>
<p>比较适应非标准化的服务,包括特殊证据格式的服务,预言机合约不方便进行穿透的场景</p>
<p><strong>服务特点:</strong></p>
<p>可高度定制化,但需提供方和DApp方进行约定,不经过预言机合约</p>
<h1 id="4-链下签名交互数据-链上风控博弈"><a href="#4-链下签名交互数据-链上风控博弈" class="headerlink" title="4. 链下签名交互数据+链上风控博弈"></a>4. 链下签名交互数据+链上风控博弈</h1><p>预言机不再监听数据交易和请求,数据提供方和消费者</p>
<ol>
<li><p>提前在预言机合约签订交互协议,包括进行仲裁和抵押</p>
</li>
<li><p>在链下进行签名,<strong>签名确认</strong>数据提供者发出信息,<strong>确认</strong>数据接受者收到信息</p>
</li>
<li><p>在链下进行数据的提供和消费</p>
</li>
<li><p>但当触发转账或有效ACTION时通过触发oracle合约的风控机制进行操作</p>
</li>
<li><p>当出现纷争时,双方即可根据在Oracle约定好的风控规则,即向oracle.bos合约发起仲裁</p>
</li>
</ol>
<p><img src="https://mmbiz.qpic.cn/mmbiz_png/ic36Rayaict54e6DpdhkDfPsAHKq2zUiaV8Yh6L0InLoUKBZkic87gbrCzvx2mZFunsj5dicB8m2icJEj2ibwSolFcOGg/640?wx_fmt=png&wxfrom=5&wx_lazy=1&wx_co=1" alt="img"></p>
<p><strong>应用场景:</strong></p>
<p>数据量非常大,更新太频繁了,链上太复杂,例如深度学习的训练,数据集和,数据无需上链,但通过签名进行数据记录。</p>
<p><strong>特点:</strong></p>
<p>可高度定制化,但需提供方和DApp方进行约定,数据交互直接在数据</p>
<h1 id="总结"><a href="#总结" class="headerlink" title="总结"></a>总结</h1><p>四种不同的数据提供方式,适应不同的场景,现实世界数据具有的<strong>复杂性、不规整性、零散性以及隐私性</strong>。从公开可方便获取的数据(比如天气)到有限制的数据(比如个人征信)都可以成为 BOS 的预言机服务。任何可以被描述并在一定意义上可以被鉴别的数据服务都可通过 BOS 预言机的来提供服务。</p>
<p>后面我们将展开关于博弈和制约,抵押模型和Demo展示预言机的功能的文章和大家交流讨论。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/12/02/EOS/BOS Oracle/BOS Oracle 1/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/12/02/EOS/BOS Oracle/BOS Oracle 1/" itemprop="url">BOS Oracle (一) 解决区块链落地发展的困局</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-12-02T15:00:31+08:00">
2019-12-02
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/预言机/" itemprop="url" rel="index">
<span itemprop="name">预言机</span>
</a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h1 id="预言机是什么"><a href="#预言机是什么" class="headerlink" title="预言机是什么"></a>预言机是什么</h1><p>徐忠博士在央行金融研究所发布的论文:<a href="http://www.chinamfi.net/upload/link/1811/f084866.pdf" target="_blank" rel="noopener">《区块链能做什么、不能做什么?》</a>:</p>
<p>区块链外信息写入区块链内的机制,一般被称为预言机 (oracle mechanism)</p>
<p>简而言之,预言机就是区块链与现实世界进行数据交互的桥梁。</p>
<p>DAPP如果是App的话,预言机就是媒介让数据可信的方式做到App和现实世界的沟通,笔者会用三期和大家分享技术和应用的心得:</p>
<p>为什么需要渠道可信?</p>
<p>如何保障这个数据渠道的<strong>可信</strong>?</p>
<p>可信数据渠道如何应用?</p>
<h1 id="预言机是的用途"><a href="#预言机是的用途" class="headerlink" title="预言机是的用途"></a>预言机是的用途</h1><p>DAPP如果是App的话,预言机就是媒介让数据可信的方式做到App和现实世界的沟通,在大数据保险,体育竞猜,和去中心化金融等方面的大规模落地等都会有广阔需求。</p>
<h2 id="大数据和保险保险"><a href="#大数据和保险保险" class="headerlink" title="大数据和保险保险"></a><strong>大数据和保险保险</strong></h2><p>在现行的保险理赔过程中,常出现拒赔概率高的情况。规则的制定和赔付的执行主要由保险公司制定,颁布和修改,缺乏保证第三方来保证公平性。加之,赔付时保险公司占据的强势地位,以及一些不可避免的主观因素。导致的“投保容易,理赔难”。 利用区块链的大数据保险势在必行,通过区块链智能合约,提高核保进程、管理效率并且能够自动赔付,有效减少保险公司不合规拒赔/拒偿的操作空间和机会, 重塑保险公司和消费者的信任。如何让claim信息高效,准确传递给合约,及时发放insurance premium。</p>
<h2 id="体育和电竞竞猜行业"><a href="#体育和电竞竞猜行业" class="headerlink" title="体育和电竞竞猜行业"></a><strong>体育和电竞竞猜行业</strong></h2><p>Sports betting currently accounts for upwards of <strong>40% of global gambling revenue</strong>around the world, which is <strong>more than any other section</strong> (inclusive of lotteries, casinos, poker, and other forms of gaming.). the CAGR (Compounded Annual Growth Rate) is expected to increase by a whopping 8.62% from 2018-2022.</p>
<p>在2018年到2022年之间,体育竞猜会有8.62%的增长</p>
<p>对于电竞行业来说,每年的增长率为13.5%,预计在2020年会达到129百亿美金</p>
<p><a href="https://www.scmp.com/sport/other-sport/article/2182341/e-sports-online-betting-hit-us129-billion-2020-fastest-growing" target="_blank" rel="noopener">South China Morning Post E-sports online betting to hit US$12.9 billion in 2020 – fastest-growing trend in global sports gambling, says research report</a></p>
<p>体育竞猜行业的结果需要通过可信的方式,触发智能合约,发起ACTION,如何保证比赛结果,真实有效地传递给可信预言机的支持会是制约竞猜行业更大发展的瓶颈。</p>
<h2 id="去中心化金融"><a href="#去中心化金融" class="headerlink" title="去中心化金融"></a><strong>去中心化金融</strong></h2><p>价值互通,价值融合是区块链非常重要的点,去中心化金融(Defi)最重要的作用即为</p>
<p>DCEP将作为重要的安全、信用高的稳定币,对目前的数字货币稳定币体系产生重要的冲击,并且会为以稳定币作为基础的区块链金融产生具大影响,将可能进一步推动去中心化金融(Defi)的发展。</p>
<p>在Defi的“三驾马车”包括:去中心化交易所,借贷产品和稳定币项目均需要稳定可靠的数据源高效地提交给链上。</p>
<p>困局和风险</p>
<p>悉尼时间 2019 年 6 月 25 日凌晨 3 点,Synthetix 遭遇 oracle 攻击,损失超过 3700 万枚sETH</p>
<p>Synthetix 使用预言机仅向2个商业 API 获取外汇,商品和加密货币的价格,整合过后作为最终结果,KRW的价格仅由两个API提供,其中一个API间歇性地汇报错误的KRW价格(为正常价格的1000倍),因此导致预言机从两个API获得价格数据之后取均值将<strong>得到的错误价格</strong>上报给平台的汇率合约。</p>
<p>现在市场上去中心化预言机项目为主,最具代表性的几个有Chainlink和DOS Network。两个项目各有优劣,用不同的方式解决预言机问题。</p>
<p>ChainLink和Oraclized选择的则是选择权威数据源+可信数据</p>
<p>然而自从2018年扎克伯格在Facebook为5000万Facebook用户信息卖给了数据分析公司Cambridge Analytical之后,我们对大公司的制约仅能靠声誉和内部揭发者的举报(whistle-blowing)。</p>
<p>Facebook的声誉损失,同样给Libra在美国听证会上的信誉造成损失</p>
<p>目前的困局是数据即价值,中心化平台为了股价和很好的财务报表甚至ulterior motives,会或多或少有做作恶换取利润的动机。</p>
<p>如何将数据的价值<strong>更好的,更智慧的</strong>分配用户,数据提供方和风控方和其他stakeholders,是我们要思考的问题。</p>
<p>BOS Oracle系统应运而生</p>
<p>中心化会带来作恶的动机,去中心化会有设计的困难和效率,如何合理的激励和惩戒预言机系统中的每一个参与方,会是一个很值得思考的问题</p>
<p>BOSCore使用<strong>正向激励,博弈完备</strong>的模型平衡好效率和市场关系的改变。</p>
<p>并提供四种不同的传递数据的方式,将数据上链</p>
<p>\1. 数据提者先行写入数据到链上,使用者读取</p>
<p>\2. 数据提供者监听调用事件,链上主动推送数据到使用者</p>
<p>\3. 数据提供者监听调用事件,链下主动推送数据到使用者</p>
<p>\4. 链下完成数据交互,签名保证数据可靠</p>
<p>如何设计预言机生态中的参与方,如何制约,如何激励,如何做好风险防控,如何确保数据可信等思考,后面的内容会展开和大家进行分享。</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/06/01/management/avoid-gratuitous-try-strengthen-cardinal-neurons/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/06/01/management/avoid-gratuitous-try-strengthen-cardinal-neurons/" itemprop="url">avoid_gratuitous_try_strengthen_cardinal_neurons</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-06-01T23:20:36+08:00">
2019-06-01
</time>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="Dinner-Experience-in-1st-June-in-Coastal-City"><a href="#Dinner-Experience-in-1st-June-in-Coastal-City" class="headerlink" title="Dinner Experience in 1st June, in Coastal City"></a>Dinner Experience in 1st June, in Coastal City</h3><p>Having a great boxing execrise today, I am meeting two friends</p>
<p>Choose a restaurant which is the meat is oily, the fries is too salty, pre-meal bread are not fresh cooked. price is exorbitant and waiter and waitress are absent mind.</p>
<p>Never trying to try and error, then find out solutions</p>
<h3 id="Learn-from-Success-to-prevent-vainly-try-by-Wu-Jun"><a href="#Learn-from-Success-to-prevent-vainly-try-by-Wu-Jun" class="headerlink" title="Learn from Success to prevent vainly try (by Wu Jun)"></a>Learn from Success to prevent vainly try (by Wu Jun)</h3><p>Wu Jun said never to learn from failure, but learn from success experience.</p>
<p>Countless failure won’t teach you what is the right way to do.</p>
<p>Success is the mother of success.</p>
<h3 id="Expensive≠High-Quality-Restaurants-Gym-Apartment"><a href="#Expensive≠High-Quality-Restaurants-Gym-Apartment" class="headerlink" title="Expensive≠High Quality Restaurants, Gym, Apartment"></a>Expensive≠High Quality Restaurants, Gym, Apartment</h3><p>Revisit the same restaurants (maybe not expensive)</p>
<p>Follow the same high quality gym (maybe not expensive)</p>
<p>Rent an apartment</p>
<p>These need to find location with good hearts not only prices, fancy restaurants doesnot necessarily provide.</p>
<h3 id="Restaurant-to-Avoid"><a href="#Restaurant-to-Avoid" class="headerlink" title="Restaurant to Avoid"></a>Restaurant to Avoid</h3><p>The worst experience are 老树咖啡,or any old restaurant with fragile amenties and </p>
<h5 id="from-heart-without-honesty-and-probatiy"><a href="#from-heart-without-honesty-and-probatiy" class="headerlink" title="from heart, without honesty and probatiy"></a>from heart, without honesty and probatiy</h5><blockquote>
<p> Passion, love, caring and trust.</p>
<p>That’s why I love the fitness industry so much because I believe we change people’s live and on top of that, I realised that the power of many is way stronger than myself alone so I always take the opportunity to encourage my members to be part of our charity events and I am so grateful that my members are all very kind hearted and show their supports.</p>
<p><a href="https://fitnesszonebrunei.wordpress.com/2013/04/14/wu-chun-never-too-late-to-start-getting-healthy/" target="_blank" rel="noopener">https://fitnesszonebrunei.wordpress.com/2013/04/14/wu-chun-never-too-late-to-start-getting-healthy/</a></p>
<p>It gives me strong willpower to handle my daily life. It broadens my knowledge on how to stay healthy. It teaches me how to motivate people. It gives me strength to do my daily tasks.</p>
</blockquote>
<h5 id="Example-of-striped-bass"><a href="#Example-of-striped-bass" class="headerlink" title="Example of striped bass"></a>Example of striped bass</h5><p><img src="/2019/06/01/management/avoid-gratuitous-try-strengthen-cardinal-neurons/image-20190602002352394.png" alt="image-20190602002352394"></p>
<p><img src="https://assets.marthastewart.com/styles/wmax-520-highdpi/d27/grilled-striped-bass-A99372/grilled-striped-bass-A99372_horiz.jpg?itok=WH3tDT_u" alt="Image result for cook striped bass"></p>
<h5 id="Holmes-discover-Watson,-high-bandwidth-broadband-neurons-high-way"><a href="#Holmes-discover-Watson,-high-bandwidth-broadband-neurons-high-way" class="headerlink" title="Holmes discover Watson, high bandwidth broadband neurons high way"></a>Holmes discover Watson, high bandwidth broadband neurons high way</h5><h3 id="Miss-out-Opportunity"><a href="#Miss-out-Opportunity" class="headerlink" title="Miss out Opportunity"></a>Miss out Opportunity</h3><p>Never try to experience</p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/06/01/securities/香港关于牌照的分析(WIP)/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/06/01/securities/香港关于牌照的分析(WIP)/" itemprop="url">香港关于牌照的分析(WIP)</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-06-01T00:48:31+08:00">
2019-06-01
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Law-Regulation/" itemprop="url" rel="index">
<span itemprop="name">Law & Regulation</span>
</a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<p>参考文章:Position Paper:<strong>Regulation of virtual asset trading platforms</strong></p>
<p><a href="https://www.sfc.hk/web/EN/files/ER/PDF/20191106%20Position%20Paper%20and%20Appendix%201%20to%20Position%20Paper%20(Eng).pdf" target="_blank" rel="noopener">https://www.sfc.hk/web/EN/files/ER/PDF/20191106%20Position%20Paper%20and%20Appendix%201%20to%20Position%20Paper%20(Eng).pdf</a></p>
<p><strong>PART III – FRAMEWORK FOR THE REGULATION OF VIRTUAL ASSET TRADING<br>PLATFORMS</strong></p>
<p>Under the regulatory framework, a platform should operate a centralised online trading platform in Hong Kong and offer trading of at least one security token on its platform. The platform operator would then fall within the jurisdiction of the SFC and <strong>require a licence for Type 1 (dealing in securities)</strong> and <strong>Type 7 (providing ATS)</strong> regulated activities. Subject to meeting other licensing requirements including the fit and proper criteria, the SFC may then grant a licence to a qualified platform operator to carry on its virtual asset trading business. </p>
<p><strong>下面参考sfc关于regulatory type的内容:</strong></p>
<p><a href="https://www.sfc.hk/web/EN/regulatory-functions/intermediaries/licensing/guide-to-licence-application/regulated-activities.html" target="_blank" rel="noopener">https://www.sfc.hk/web/EN/regulatory-functions/intermediaries/licensing/guide-to-licence-application/regulated-activities.html</a></p>
<p>Type 1 </p>
<p>Dealing in securities:</p>
<ul>
<li>Trading /broking stock options for clients</li>
<li>Trading bonds for clients</li>
<li>Buying / selling mutual funds and unit trusts for clients</li>
<li>Placing and underwriting of securities </li>
</ul>
<p>Type 7</p>
<p>Providing automated trading services </p>
<ul>
<li>Operating an electronic trading platform for matching client orders </li>
</ul>
<p>1 号证券交易牌:HK$ 800万 ~ 1500万</p>
<p>7 号证券</p>
<p><img src="https://pic4.zhimg.com/80/v2-373324aaf4ec1c7f568220460bb66a57_hd.jpg" alt="img"></p>
<p>延伸阅读:</p>
<p>证券和期货监视委员会</p>
<p><a href="https://www.sfc.hk/web/EN/files/IS/publications/VA_Portfolio_Managers_Terms_and_Conditions_(EN).pdf" target="_blank" rel="noopener">https://www.sfc.hk/web/EN/files/IS/publications/VA_Portfolio_Managers_Terms_and_Conditions_(EN).pdf</a></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="http://yoursite.com/2019/06/01/securities/新加坡MAS三大项目介绍/">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Doe">
<meta itemprop="description" content>
<meta itemprop="image" content="/images/avatar.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hexo">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/06/01/securities/新加坡MAS三大项目介绍/" itemprop="url">新加坡MAS三大项目介绍</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">Posted on</span>
<time title="Post created" itemprop="dateCreated datePublished" datetime="2019-06-01T00:48:31+08:00">
2019-06-01
</time>
</span>
<span class="post-category">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-folder-o"></i>
</span>
<span class="post-meta-item-text">In</span>
<span itemprop="about" itemscope itemtype="http://schema.org/Thing">
<a href="/categories/Law-Regulation/" itemprop="url" rel="index">
<span itemprop="name">Law & Regulation</span>
</a>
</span>
</span>
</div>
</header>
<div class="post-body" itemprop="articleBody">
<h3 id="项目一:Project-Ubin"><a href="#项目一:Project-Ubin" class="headerlink" title="项目一:Project Ubin"></a>项目一:Project Ubin</h3><p>conduct inter-bank payments using Blockchain technology</p>