Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想以映射的形式在我的合同中存储一些敏感数据
使用 Solidity ^0.5
mapping(someKey => someStruct) someMap;
我知道智能合约中的隐私问题,编译器会自动为所有公共状态变量创建 getter 函数,但是当涉及到映射(或任何动态大小的变量)时,如果没有,人们如何访问它们(默认情况下) ,是否存在对 EVM 进行逆向工程以读取数据的风险。感谢帮助!