-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
请问注册用户有什么作用 #105
Comments
在JDChain中, 用户、数据账户、合约、事件账户等 都是用 BlockchainKeypair 来表示的,在注册的时候都往链上注册的公钥PubKey,Pubkey 是可以计算出Address的,在链上可以认为一个pubkey就代表了链上一个区块链用户,在实际使用时有点侧重点的区别。 例如: |
BlockchainKeypair user = BlockchainKeyGenerator.getInstance().generate(); |
BlockchainKeypair user = BlockchainKeyGenerator.getInstance().generate(); 希望能帮助到您 |
在SDK中生成的用户最起码还有私钥,但是没有密码。在命令行中注册的用户就直接没有私钥和密码,只有公钥。不能用来签名或者其他操作,那么这个注册的账户作用是什么。数据账户也有同样的疑问。理解浅薄,希望解答一下
The text was updated successfully, but these errors were encountered: