資料載入處理中...
圖書館首頁
|
網站地圖
|
首頁
|
本站說明
|
聯絡我們
|
相關資源
|
台聯大論文系統
|
操作說明
|
English
簡易查詢
進階查詢
論文瀏覽
熱門排行
我的研究室
上傳論文
建檔說明
常見問題
帳號:guest(18.118.163.255)
離開系統
字體大小:
詳目顯示
第 1 筆 / 共 1 筆
/1
頁
以作者查詢圖書館館藏
、
以作者查詢臺灣博碩士論文系統
、
以作者查詢全國書目
論文基本資料
摘要
外文摘要
論文目次
參考文獻
電子全文
作者(中文):
江宥廷
作者(外文):
Jiang, You-Ting
論文名稱(中文):
用於二手車市場的區塊鏈車況記錄系統
論文名稱(外文):
A Blockchain-Based Vehicle Condition Recording System for Second-Hand Vehicle Market
指導教授(中文):
孫宏民
指導教授(外文):
Sun, Hung-Min
口試委員(中文):
許富皓
黃世昆
口試委員(外文):
Hsu, Fu-Hau
Huang, Shih-Kun
學位類別:
碩士
校院名稱:
國立清華大學
系所名稱:
資訊工程學系
學號:
106062630
出版年(民國):
108
畢業學年度:
107
語文別:
英文
論文頁數:
40
中文關鍵詞:
區塊鏈
、
資料透明化
、
智能合約
外文關鍵詞:
Blockchain
、
Data transparency
、
Smart contract
相關次數:
推薦:0
點閱:633
評分:
下載:0
收藏:0
近年來由於區塊鏈技術以及智能合約的誕生,各式各樣的應用場景也越來越多,而這些應用已不再只是如同比特幣的單純轉帳如此單純,任何涉及資料儲存以及資產轉移的相關應用皆可透過區塊鏈進行實作,而區塊鏈技術最大的優點在於其能在去中心化的條件之下,依然保有資訊透明化、不可竄改且一致的特性,這不但對傳統的資料管理系統帶來了衝擊,也引起了人們對中心化管理系統的安全性有所反思。
目前二手車市場中的車輛資訊仍是中心化的發展模式,也就是車輛資訊皆掌握在中心化的二手車業者手上,並無法有效改善二手車之車輛資訊不對稱的情況,而一般消費者在接觸二手車買賣時,所獲得的車輛資訊仍是二手車商提供的二手數據,這些車輛數據並不透明且沒有竄改成本,因此這些二手數據的真實性、準確性、公平性就值得商榷。
為了解決上述的問題,本篇論文藉由區塊鏈技術打造一個可信任的車輛資料來源系統,此系統借助於可信任的第三方即時記錄包含事故事件、里程數、維修以及保養紀錄等車輛資訊到我們的平台上,再利用我們的平台將資料寫入區塊鏈中,透過區塊鏈其透明化以及資料不可竄改的特性來保持車輛資訊的完整性,使用者或買家可以輕易地透過我們的系統介面查詢相關車輛資料,避免接收到不實的車輛資訊,並消除在高單價的二手車市場中的交易紛爭。
Due to the emergence of Blockchain technology and smart contract, more and more application scenarios are available in recent years. These applications are no longer as simple as the transfer of Bitcoin, any application related to data storage and asset transfer can be implemented through Blockchain. The advantage of Blockchain technology is that it can keep the transparency, consistency and tamper-proof of data under the condition of decentralized environment, which not only brings impact on the traditional data management system, but also causes people to reflect on the security of the centralized management system.
The vehicle information in the market of second-hand vehicles is still centralized at present, that is to say, the information is all in the hands of the centralized second-hand vehicle dealers, and it cannot effectively improve the inconsistency of vehicle information in second-hand vehicles. The vehicle information obtained by customers is still the second-hand data provided by the second-hand vehicle dealers, and these vehicle data are not transparent and have no tampering cost, so the authenticity, accuracy and fairness of these second-hand data are worth discussing.
In order to solve the above problems, this paper builds a trusted vehicle data source system based on Blockchain technology. With the help of trusted third-party (e.g., maintenance plant and government branch) to record vehicle information (e.g., accident events, mileage, maintenance and other vehicle information) to our platform instantly, and then use our platform to write these data into Blockchain so the integrity of vehicle information can be maintained through the property of Blockchain, users or customers can easily query the relevant vehicle information through our system interface, avoid receiving fake vehicle information and eliminate the transaction disputes in the high unit price second-hand vehicle market.
Table of Contents i
List of Figures iii
1 Introduction 1
1.1 Motivation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Contribution . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
1.3 Organization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
2 Background 4
2.1 Introduce to Blockchain . . . . . . . . . . . . . . . . . . . . . . . . . 4
2.1.1 Decentralization . . . . . . . . . . . . . . . . . . . . . . . . . 5
2.1.2 Transparency . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
2.1.3 Tamper-proof . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
2.2 History of Blockchain and Smart Contract . . . . . . . . . . . . . . . 7
2.2.1 Blockchain 1.0 - Primitive Blockchain Originated from Cryptocurrency . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2.2.2 Blockchain 2.0 and after - Ethereum: A Blockchain Platform with Smart Contract . . . . . . . . . . . . . . . . . . . . . . . 8
2.3 Decentralized Application . . . . . . . . . . . . . . . . . . . . . . . . 10
2.3.1 Traditional Data Management System . . . . . . . . . . . . . 10
2.3.2 Decentralized Application System . . . . . . . . . . . . . . . . 13
2.3.3 Comparison between Traditional Data Management System and DApp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15
3 Related Works 16
4 System Design 19
4.1 Design Goal . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
4.1.1 Transparency of Vehicle Condition Information . . . . . . . . 20
4.1.2 Access Control of Smart Contract and Tamper-Proof of Blockchain Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20
4.1.3 User Friendly of Operation . . . . . . . . . . . . . . . . . . . 21
4.2 System Model . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.2.1 Vehicle Manufacturer . . . . . . . . . . . . . . . . . . . . . . . 22
4.2.2 Maintenance Plant . . . . . . . . . . . . . . . . . . . . . . . . 22
4.2.3 Government Branch . . . . . . . . . . . . . . . . . . . . . . . 22
4.2.4 Customer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
4.2.5 Second-Hand Vehicle Dealer . . . . . . . . . . . . . . . . . . . 23
4.2.6 Authority Node . . . . . . . . . . . . . . . . . . . . . . . . . . 24
4.3 Life Cycle of Vehicle . . . . . . . . . . . . . . . . . . . . . . . . . . . 25
5 System Implementation 26
5.1 System Structure . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26
5.1.1 Private Chain Setup . . . . . . . . . . . . . . . . . . . . . . . 27
5.1.2 User Interface . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
5.2 System Operation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
5.2.1 Log-in Process . . . . . . . . . . . . . . . . . . . . . . . . . . 28
5.2.2 Operation of Customer . . . . . . . . . . . . . . . . . . . . . . 29
5.2.3 Operation of Vehicle Manufacturer . . . . . . . . . . . . . . . 30
5.2.4 Operation of Maintenance Plant . . . . . . . . . . . . . . . . 31
5.2.5 Operation of Government Branch . . . . . . . . . . . . . . . . 31
5.2.6 Operation of Second-Hand Vehicle Dealer . . . . . . . . . . . 32
6 System Evaluation 33
6.1 Gas Limit and Transaction Throughput . . . . . . . . . . . . . . . . 33
6.2 Evaluation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 34
7 Conclusion 36
7.1 Conclusion . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 36
7.2 Future Work . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 37
Bibliography 38
[1] Carfax. https://www.carfax.com/.
[2] Gavin Wood et al. Ethereum: A secure decentralised generalised transaction ledger. Ethereum project yellow paper, 151:1–32, 2014.
[3] Satoshi Nakamoto et al. Bitcoin: A peer-to-peer electronic cash system. 2008.
[4] Blockchain revolution (2016).
http://dontapscott.com/books/blockchain-revolution/.
[5] Sha-2 (secure hash algorithm 2). https://en.wikipedia.org/wiki/SHA-2.
[6] Difficulty in bitcoin. https://en.bitcoin.it/wiki/Difficulty.
[7] Smart contract. https://en.wikipedia.org/wiki/Smart_contract.
[8] Double-spending. https://en.wikipedia.org/wiki/Double-spending.
[9] Public-key cryptography.
https://en.wikipedia.org/wiki/Public-key_cryptography.
[10] Decentralized autonomous organization. https://en.wikipedia.org/wiki/Decentralized_autonomous_organization.
[11] Solidity. https://en.wikipedia.org/wiki/Solidity.
[12] Hyperledger. https://www.hyperledger.org/.
[13] R3 corda. https://www.r3.com/platform/.
[14] Single point of failure.
https://en.wikipedia.org/wiki/Single_point_of_failure.
[15] Ethereum white paper.
https://github.com/ethereum/wiki/wiki/%5BEnglish%5D-White-Paper.
[16] Fizzy. https://fizzy.axa/en-gb/.
[17] Initial coin offering.
https://en.wikipedia.org/wiki/Initial_coin_offering.
[18] Idex - decentralized ethereum asset exchange.
https://idex.market/eth/idex.
[19] Nesrine Kaaniche and Maryline Laurent. A blockchain-based data usage auditing architecture with enhanced privacy and availability. In 2017 IEEE 16th International Symposium on Network Computing and Applications (NCA), pages 1–5. IEEE, 2017.
[20] Guy Zyskind, Oz Nathan, et al. Decentralizing privacy: Using blockchain to protect personal data. In 2015 IEEE Security and Privacy Workshops, pages 180–184. IEEE, 2015.
[21] Si Chen, Rui Shi, Zhuangyu Ren, Jiaqi Yan, Yani Shi, and Jinyu Zhang. A blockchain-based supply chain quality management framework. In 2017 IEEE 14th International Conference on e-Business Engineering (ICEBE), pages 172–176. IEEE, 2017.
[22] Indranil Nath. Data exchange platform to fight insurance fraud on blockchain. In 2016 IEEE 16th International Conference on Data Mining Workshops (ICDMW), pages 821–825. IEEE, 2016.
[23] Pascal Urien. Blockchain iot (biot): A new direction for solving internet of things security and trust issues. In 2018 3rd Cloudification of the Internet of Things (CIoT), pages 1–4. IEEE, 2018.
[24] Etheremon. https://www.etheremon.com/.
[25] Enginechain white paper. https://white-paper.oss-cn-beijing.aliyuncs.com/v.3.0.0/Engine%20V.3.0.0%20-%20%20English%20Version.pdf.
[26] Proof of authority.
https://en.wikipedia.org/wiki/Proof_of_authority.
[27] Vehicle identification number.
https://en.wikipedia.org/wiki/Vehicle_identification_number.
[28] Geth. https://github.com/ethereum/go-ethereum/wiki.
[29] Puppeth. https://github.com/puppeth.
[30] http-server. https://www.npmjs.com/package/http-server.
[31] Node.js. https://nodejs.org/en/.
[32] Web3.js. https://web3js.readthedocs.io/en/1.0/.
[33] Remix.
https://remix.ethereum.org/#optimize=false&evmVersion=null.
[34] On ethereum performance evaluation using poa. https://blog.coinfabrik.com/on-ethereum-performance-evaluation-using-poa/.
[35] Madhusudan Singh and Shiho Kim. Blockchain based intelligent vehicle data sharing framework. arXiv preprint arXiv:1708.09721, 2017.
(此全文未開放授權)
電子全文
中英文摘要
推文
當script無法執行時可按︰
推文
推薦
當script無法執行時可按︰
推薦
評分
當script無法執行時可按︰
評分
引用網址
當script無法執行時可按︰
引用網址
轉寄
當script無法執行時可按︰
轉寄
top
相關論文
1.
一個基於區塊鏈智慧合約與點對點個人私有網路技術的可讓使用者自我管理的物聯網權限管理系統
2.
農業區塊鏈平台 與基於物聯網之智能合約研製
3.
基於以太坊區塊鏈與智能合約之農產品溯源系統研製
4.
基於區塊鏈智能合約之廣播策略以提升虛擬狀態通道建立之效能
5.
基於許可制區塊鏈的個人化健康管理系統
6.
在基於區塊鍊的系統之開放性課程中使用智能合約
7.
基於區塊鏈技術之食品履歷信賴溯源系統
8.
基於代理重加密在區塊鏈平台上實作隱私保護資料分享框架
9.
使用零知識證明的可信賴農作物評分模型
10.
一個基於區塊鏈之可驗證的三式記帳會計資訊系統用於財務報表舞弊防範
11.
基於多重證據與可驗證的信任憑證網路框架
12.
探討如何提高用戶對去中心化金融借貸平台的信任:以Trava平台為例
13.
基於CoAP輕量化協議和Smart Contract安全機制的IoT Framework之設計與實作
14.
圖書市場的基於代幣與合約的解決方案
15.
基於RNN 模型的GRU和LSTM方法結合AES 加密與智慧合約進行來源身份驗證
簡易查詢
|
進階查詢
|
論文瀏覽
|
熱門排行
|
管理/審核者登入