REVIEW 3 major objections 4 minor 1 cited by
Blockchain-Based Secure Vehicle Auction System with Smart Contracts
T0 review · 3 major / 4 minor · reviewed 2026-08-10 · deepseek-v4-flash
Pith's one-line read The paper claims a decentralized used-car auction can be enforced by two Ethereum smart contracts that handle bidding, payment, and ownership transfer.
desk verdict A candid course-project write-up: honest about its own limits, but the core auction logic is internally contradictory and no code or data backs the central claim. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing objects are the two contracts and the data they share. The car registry contract acts as a repository: its car mapping holds vehicle records, and its price-calculation function turns mileage, age, accident history, and trade count into a floor price. The auction contract acts as the auctioneer: a trade-car structure carries the car's identity and the computed floor price, and the bid function enforces three conditions (auction still open, bid above current highest, bid above floor price) before updating the leader. The withdraw function returns money to losing bidders, and the auction-end routine transfers the winning amount to the owner and reassigns the car. The whole design assumes that whatever the contracts enforce is what happens, because each transaction is executed by the Ethereum network and cannot be silently changed.
What would settle it
Deploy the two contracts on a public testnet and run an adversarial transaction sequence: a bid placed after the auction end time, a bid below the computed floor price, a bid below the current highest bid, and a second withdrawal after an earlier withdrawal. If any of these transactions succeeds when it should be reverted, or if an auction-end call can be reentered to drain funds, the claim that the contracts enforce the auction rules is false.
Extended reading notes
Core claim
The central claim is that a decentralized vehicle auction can be implemented as a pair of Ethereum smart contracts. The car registry contract stores a mapping of car records, lets an agent add cars, upload accident-history costs, fetch current owners, and compute a sale price from age, mileage, accident history, and trade count. The auction contract wraps the selected car in a trade-car structure holding that estimated price, accepts bids only while the auction is open and above both the current highest bid and the estimated price, records the highest bidder, and at auction end transfers the bid amount to the owner and updates the car's owner. The same contract lets unsuccessful bidders withdraw their funds. The paper reports test-transaction results on a public test network showing car creation, price calculation, owner change, and bid recording. On this evidence the author concludes that smart contracts provide security and privacy for the bidding process compared with centralized used-car platforms.
Load-bearing premise
The prototype's guarantees stand or fall on the correctness of its Solidity code, which the paper itself says may contain mistaken conditional judgments and unexplored smart-contract pitfalls.
Editorial extensions
If this is right
- Vehicle records such as current owner and accident history would live on-chain and become auditable, with no central operator able to rewrite them.
- Auction settlement would be automated: the winning bid is transferred to the owner and ownership is updated in the same contract call, removing trust in the platform operator.
- The pricing and bidding logic could be reused for other item auctions, not just cars, because the registry and auction responsibilities are separated.
- Because all bids and contract states are public, the system offers transparency at the cost of bidder privacy, and losing bidders must remember to withdraw.
Reading between the lines
- The paper leaves physical delivery and vehicle condition outside the contract; a natural extension is an oracle or inspection provider that anchors off-chain facts to on-chain records, otherwise ownership transfer is only a ledger entry.
- A testable extension would measure gas costs per bid and per withdrawal, since the paper notes resource use is unoptimized; contracts that cost more to call than the car's margin would not be used.
- The same two-contract pattern could be adapted to other registrable assets such as property titles or IoT device ownership, with the agent role replaced by a verified authority.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes a blockchain-based used-car auction system built on Ethereum smart contracts. It describes two contracts (Car Repo and Car Bid), a price estimation routine, a bidding procedure, and an auction-end settlement, and reports a small set of Remix/Ropsten screenshots as evaluation. The abstract claims that the smart-contract design enhances the security and privacy of vehicle trading, and the conclusion repeats that the use of smart contracts improves security and privacy.
Significance. If the implementation were correct and publicly verifiable, the system would be a straightforward application of standard smart-contract auction patterns; the contribution over existing blockchain auction designs is incremental. The paper's honest Limitations section is a strength, but it also concedes a missing frontend, unreleased code, and possible conditional-judgment bugs. No formal analysis, security evaluation, or reproducibility artifacts are provided, so the claimed security and privacy benefits are not established.
major comments (3)
- [V.D / V.B] The auction settlement direction is described inconsistently. Section V.B states that when a buyer wins, "the system will send its money to the car owner." Section V.D and Figure 11 state that at auction end, "the system will transfer money from the previous owner to the buyer, and change the owner of this car." These are opposite cash flows. If the deployed contract follows Section V.D, the winner receives money while the seller pays and loses the car; if it follows Section V.B, the paper misdescribes the core mechanism. Because no source code is provided, the reader cannot determine which behavior is implemented. This contradiction directly affects the central claim that smart contracts enforce the auction and payment rules.
- [III.B / Abstract] The privacy claim in the abstract ("enhances the security and privacy of the system") is contradicted by the paper's own analysis in Section III.B, which states that blockchain confidentiality is weak and that all transaction data, smart contract code, and state values are public. The design does not include encryption, off-chain storage, or any other privacy mechanism, so the claimed privacy enhancement is unsupported.
- [VI] The evaluation consists only of screenshots of a car being added, a price of 8898 being computed, an owner being changed, and bids being recorded. There is no source code, no transaction hash, no test of the auction-end settlement, no gas-cost analysis, and no adversarial or edge-case testing. The Limitations section concedes that the code is not uploaded and that the authors are "not familiar enough with the underlying architecture of the smart contract code." Consequently, the central claim that the system functions as a secure auction is not substantiated.
minor comments (4)
- [I.A] There is a typo in the first paragraph of Section I.A: "Managers cannutilize the data" should read "Managers can utilize the data."
- [V.D] The event names "autionNotYetEnded" and "AuctionEndAlreadyEnd" appear to be misspelled (likely "auctionNotYetEnded" and "AuctionEndAlreadyEnded").
- [V.C] The price estimation procedure is described only qualitatively ("several standards are applied" based on age, mileage, accident history, and trade times) with no formula or calibration, so the single output value 8898 in Section VI cannot be reproduced or validated.
- [References] Several references are either self-citations to unrelated preprints (e.g., [7], [12], [17], [25]) or citations to non-blockchain works (e.g., [2], [20], [24]); these do not ground the technical claims and should be replaced with relevant literature.
Circularity Check
No circularity: the paper makes prototype-implementation claims rather than derived predictions; self-citations are tangential and not load-bearing.
full rationale
The paper does not derive any quantitative result or prediction from fitted inputs. Its central claim is that a Solidity-based Ethereum vehicle auction system was designed, with basic test transactions executed on the Ropsten test network. The system description is a design walkthrough with class diagrams, use cases, and screenshots; there are no equations, fitted parameters, or constructed quantities whose output is defined as their input. The only self-citations (e.g., references [7], [12], [17], and [25]) appear in background or related-work sentences and are not used to justify the auction mechanism, the smart-contract design, or any security property, so they are not load-bearing. The internal inconsistency between the use-case description in Section V.B ('When he wins the bid, the system will send its money to the car owner') and the algorithm description in Section V.D ('the system will transfer money from the previous owner to the buyer'), together with the Limitations section's admission that 'our code may have ignored these issues,' is a correctness and validation concern, not a circularity concern. Because no derivation or prediction in the paper reduces to its own inputs, the circularity score is 0.
Assumptions & free parameters
free parameters (1)
- Price estimation coefficients =
unspecified
assumptions (3)
- domain assumption The majority of Ethereum miners are honest
- domain assumption Ethereum smart contracts are immutable and tamper-resistant
- domain assumption Public visibility of all bids and car data is acceptable to users
Cite this review
Pith. "Pith review of Blockchain-Based Secure Vehicle Auction System with Smart Contracts." pith.science (2026). https://pith.science/paper/TIOLG256
@misc{pith2026250104841,
author = {Pith},
title = {Pith review of: Blockchain-Based Secure Vehicle Auction System with Smart Contracts},
year = {2026},
howpublished = {\url{https://pith.science/paper/TIOLG256}},
note = {Machine review of arXiv:2501.04841}
}
read the original abstract
The problem of a single point of failure in centralized systems poses a great challenge to the stability of such systems. Meanwhile, the tamperability of data within centralized systems makes users reluctant to trust and use centralized applications in many scenarios, including the financial and business sectors. Blockchain, as a new decentralized technology, addresses these issues effectively. As a typical decentralized system, blockchain can be utilized to build a data-sharing model. Users in a blockchain do not need to trust other users; instead, they trust that the majority of miner nodes are honest. Smart contracts enable developers to write distributed programs based on blockchain systems, ensuring that all code is immutable and secure. In this paper, we analyze the security of blockchain technology to illustrate its advantages and justify its use. Furthermore, we design a new system for storing and trading vehicle information based on the Ethereum blockchain and smart contract technology. Specifically, our system allows users to upload vehicle information and auction vehicles to transfer ownership. Our application provides great convenience to buyers and owners, while the use of smart contracts enhances the security and privacy of the system.
Figures
Figures from the paper (9 more)
Forward citations
Cited by 1 Pith paper
-
Accelerating Sparse Graph Neural Networks with Tensor Core Optimization
FTC-GNN is a TC-GNN-style framework that combines Tensor Cores and CUDA Cores for sparse GNN kernels, but its claimed AGNN speedup over DGL is contradicted by its own tables.
Reference graph
Works this paper leans on
-
[1]
Nigel Bevan, Jim Carter, Jonathan Earthy, Thomas Geis, and Susan Harker. 2016. New ISO standards for usability, usability reports and usability measures. In International Conference on Human-Computer Interaction. Springer, 268–278
work page 2016
-
[2]
Pei-Hsuan Sung, ”Community Structure and Connectivity Analysis in Social Networks Using Community Detection Methods,” TechRxiv,
-
[3]
Vitalik Buterin et al. 2014. A next-generation smart contract and decentralized application platform. White Paper, 3, 37 (2014)
work page 2014
-
[4]
Raymond Cheng, Fan Zhang, Jernej Kos, Warren He, Nicholas Hynes, Noah Johnson, Ari Juels, Andrew Miller, and Dawn Song. 2019. Ekiden: A platform for confidentiality-preserving, trustworthy, and performant smart contracts. In 2019 IEEE European Symposium on Security and Privacy (EuroS&P). IEEE, 185–200
work page 2019
-
[5]
Marco Conoscenti, Antonio Vetro, and Juan Carlos De Martin. 2016. Blockchain for the Internet of Things: A systematic literature review. In 2016 IEEE/ACS 13th International Conference of Computer Systems and Applications (AICCSA) . IEEE, 1–6
work page 2016
-
[6]
S. Li, S. Shi, Y . Xiao, C. Zhang, Y . T. Hou, and W. Lou, ”Bijack: Breaking Bitcoin Network with TCP Vulnerabilities,” in European Symposium on Research in Computer Security , Springer, pp. 306–326
-
[7]
K. W. Wu, ”Strengthening DeFi Security: A Static Analysis Approach to Flash Loan Vulnerabilities,” arXiv preprint arXiv:2411.01230 , 2024
arXiv 2024
-
[8]
Glenn Greenwald. 2014. No Place to Hide: Edward Snowden, the NSA, and the US Surveillance State . Macmillan
work page 2014
Show all 31 references
-
[9]
Loi Luu, Duc-Hiep Chu, Hrishi Olickel, Prateek Saxena, and Aquinas Hobor. 2016. Making smart contracts smarter. In Proceedings of the 2016 ACM SIGSAC Conference on Computer and Communications Security. 254–269
2016
-
[10]
Bhabendu Kumar Mohanta, Soumyashree S Panda, and Debasish Jena
-
[11]
Satoshi Nakamoto. 2008. Bitcoin: A peer-to-peer electronic cash system. Decentralized Business Review (2008), 21260
2008
-
[12]
Accelerating sparse graph neural networks with tensor core optimization,
K. W. Wu, “Accelerating sparse graph neural networks with tensor core optimization,” arXiv preprint arXiv:2412.12218 , 2024
2024 arXiv
-
[13]
Comprehensive survey on adversarial examples in cyberse- curity: Impacts, challenges, and mitigation strategies,
L. Li, “Comprehensive survey on adversarial examples in cyberse- curity: Impacts, challenges, and mitigation strategies,” arXiv preprint arXiv:2412.12217, 2024
2024 arXiv
-
[14]
UCBlocker: Unwanted call blocking using anonymous authentication,
C. Du, H. Yu, Y . Xiao, Y . T. Hou, A. D. Keromytis, and W. Lou, “UCBlocker: Unwanted call blocking using anonymous authentication,” in 32nd USENIX Security Symposium (USENIX Security 23) , 2023, pp. 445–462
2023
-
[15]
Aaka: An anti-tracking cellular authentication scheme leveraging anonymous credentials,
H. Yu, C. Du, Y . Xiao, A. Keromytis, C. Wang, R. Gazda, Y . T. Hou, and W. Lou, “Aaka: An anti-tracking cellular authentication scheme leveraging anonymous credentials,” in Proceedings 2024 Network and Distributed System Security Symposium , 2023
2024
-
[16]
Hermes: Boosting the performance of machine-learning-based intrusion detection system through geometric feature learning,
C. Zhang, S. Shi, N. Wang, X. Xu, S. Li, L. Zheng, R. Marchany, M. Gardner, Y . T. Hou, and W. Lou, “Hermes: Boosting the performance of machine-learning-based intrusion detection system through geometric feature learning,” in Proceedings of the Twenty-fifth International Sym-...
2024
-
[17]
State-of-the-art approaches to enhancing privacy preservation in machine learning datasets: A survey,
C. Zhang and S. Li, “State-of-the-art approaches to enhancing privacy preservation in machine learning datasets: A survey,” arXiv preprint , arXiv:2404.16847, 2024
2024 arXiv
-
[18]
Sara Rouhani and Ralph Deters. 2019. Security, performance, and applications of smart contracts: A systematic survey. IEEE Access 7 (2019), 50759–50779
2019
-
[19]
M. M. Al Barat, S. Li, C. Du, Y . T. Hou, and W. Lou, ”SoK: Public Blockchain Sharding,” in 2024 IEEE International Conference on Blockchain and Cryptocurrency (ICBC) , pp. 766–783, 2024
2024
-
[20]
[Online]
Pei-Hsuan Sung, ”Exploring Universities with NLP: Topic Mod- eling and Sentiment Analysis Using Wikipedia Data,” 2025. [Online]. Available: https://www.techrxiv.org/doi/full/10.36227/techrxiv. 173896964.47108397
2025
-
[21]
Huanrong Tang, Ning Tong, and Jianquan Ouyang. 2018. Medical images sharing system based on blockchain and smart contract of credit scores. In 2018 1st IEEE International Conference on Hot Information- Centric Networking (HotICN) . IEEE, 240–241
2018
-
[22]
Mohsin Ur Rahman, Fabrizio Baiardi, and Laura Ricci. 2020. Blockchain Smart Contract for Scalable Data Sharing in IoT: A Case Study of Smart Agriculture. In 2020 IEEE Global Conference on Artificial Intelligence and Internet of Things (GCAIoT) . 1–7. https: //doi.org/10.1109/G...
2020
-
[23]
Shuai Wang, Yong Yuan, Xiao Wang, Juanjuan Li, Rui Qin, and Fei-Yue Wang. 2018. An overview of smart contract: architecture, applications, and future trends. In 2018 IEEE Intelligent Vehicles Symposium (IV) . IEEE, 108–113
2018
-
[24]
Pei-Hsuan Sung, ”Advanced Machine Learning for Housing Market Analysis: Predicting Property Prices in Washington D.C.,” TechRxiv,
-
[25]
Li, ”Mitigating Challenges in Ethereum’s Proof-of-Stake Consen- sus: Evaluating the Impact of EigenLayer and Lido,” arXiv preprint arXiv:2410.23422, 2024
L. Li, ”Mitigating Challenges in Ethereum’s Proof-of-Stake Consen- sus: Evaluating the Impact of EigenLayer and Lido,” arXiv preprint arXiv:2410.23422, 2024
2024 arXiv
-
[26]
Yuntao Wang, Zhou Su, Ning Zhang, Jianfei Chen, Xin Sun, Zhiyuan Ye, and Zhenyu Zhou. 2020. SPDS: A Secure and Auditable Private Data Sharing Scheme for Smart Grid Based on Blockchain. IEEE Transactions on Industrial Informatics 17, 11 (2020), 7688–7699
2020
-
[27]
Available: https://www.techrxiv.org/users/873162/ articles/1253521-advanced-machine-learning-for-housing-market- analysis-predicting-property-prices-in-washington-d-c
[Online]. Available: https://www.techrxiv.org/users/873162/ articles/1253521-advanced-machine-learning-for-housing-market- analysis-predicting-property-prices-in-washington-d-c
-
[28]
Qihao Zhou, Zhe Yang, Kuan Zhang, Kan Zheng, and Jie Liu. 2020. A decentralized car-sharing control scheme based on smart contract in internet-of-vehicles. In 2020 IEEE 91st Vehicular Technology Confer- ence (VTC2020-Spring). IEEE, 1–5
2020
-
[30]
Peng Zhang, Michael A Walker, Jules White, Douglas C Schmidt, and Gunther Lenz. 2017. Metrics for assessing blockchain-based healthcare decentralized apps. In 2017 IEEE 19th International Conference on e- Health Networking, Applications and Services (Healthcom) . IEEE, 1–4
2017
-
[2018]
In 2018 9th International Conference on Computing, Com- munication and Networking Technologies (ICCCNT)
An overview of smart contract and use cases in blockchain technology. In 2018 9th International Conference on Computing, Com- munication and Networking Technologies (ICCCNT) . IEEE, 1–4
2018
-
[2025]
Available: https://www.techrxiv.org/users/873162/ articles/1261198-community-structure-and-connectivity-analysis-in- social-networks-using-community-detection-methods
[Online]. Available: https://www.techrxiv.org/users/873162/ articles/1261198-community-structure-and-connectivity-analysis-in- social-networks-using-community-detection-methods
Reviewed August 10, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.