看https://github.com/ethereum/EIPs/pull/712

Why personal_* namespace instead of eth_* namespace?

I believe the personal_ prefix was an attempt to separate key-signing/account management operations from state-reading operations. Ideally, an RPC node only provides eth_* endpoints, and the wallet/signer handles the personal_* space. Since it involves signing with keys, the current pattern suggests this belongs in the personal space.

这个包中的许多函数包含敏感信息,例如密码,即当一些调用的函数需要用到密钥等敏感信息时,这些函数都会分配到personal_*中,独立出来,不再与eth_*混合在一起

 ⚠️不要在未加密的 websocket或http服务提供器上调用这些函数,因为你的密码是明文发送的!

相关文章:

  • 2021-12-05
  • 2022-12-23
  • 2021-06-19
  • 2021-08-26
  • 2021-05-02
  • 2021-11-21
  • 2021-11-24
猜你喜欢
  • 2022-12-23
  • 2022-02-10
  • 2022-02-15
  • 2022-12-23
  • 2021-11-20
  • 2022-01-15
相关资源
相似解决方案