如何创建以太币钱包?

时间:2017-03-28 07:39:27

标签: python blockchain ethereum solidity

我想通过代码创建用户ether wallet。是否有任何api或东西创建以太钱包,他们可以用来转移&接受以太?

3 个答案:

答案 0 :(得分:2)

您可以使用pyethapp(基于python的客户端)创建以太坊钱包,转移资金。

链接:https://github.com/ethereum/pyethapp

创建帐户的命令非常简单

$ pyethapp account new

还要探索示例:https://github.com/ethereum/pyethapp/tree/develop/examples

答案 1 :(得分:1)

您可以使用web3py

$ pip install web3

在您正在运行的节点上添加任何提供程序:

>>> from web3 import Web3, KeepAliveRPCProvider, IPCProvider

请注意,每个进程只应创建一个RPCProvider,因为它会回收进程和以太坊节点之间的基础TCP / IP网络连接。

>>> web3 = Web3(KeepAliveRPCProvider(host='localhost', port='8545'))

或者基于IPC的连接:

>>> web3 = Web3(IPCProvider())

瞧:

>>> web3.personal.newAccount('the-passphrase')
['0xd3cda913deb6f67967b99d67acdfa1712c293601']

它创建了一个新帐户。

答案 2 :(得分:1)

首先,以太坊网络不提供任何创建钱包的API。任何40位十六进制字符串都是有效的以太坊钱包,前缀为0x。每个钱包都是使用一些私钥创建的。私钥是64位十六进制字符串。

例如:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa是有效的私钥。

您将找到与此私钥对应的地址 0x8fd379246834eac74B8419FfdA202CF8051F7A03

私钥应该非常强大。所以实际上它是由关键衍生函数创建的。

对于Node.js,我使用keythereum

function createWallet(password) {
  const params = {keyBytes: 32, ivBytes: 16};
  const dk = keythereum.create(params);

  const options = {
    kdf: 'pbkdf2',
    cipher: 'aes-128-ctr',
    kdfparams: { c: 262144, dklen: 32, prf: 'hmac-sha256' }
  };
  const keyObject = keythereum.dump(password, dk.privateKey, dk.salt, dk.iv, options);
  return keyObject;
}
 /* for getting private key from keyObject */
function getPrivateKey(password, keyObject) {
  return keythereum.recover(password, keyObject);
}

const keyObject = createWallet("My Super secret password");
const walletAddress = '0x' + keyObject.address;

const privateKey = getPrivateKey("My Super secret password", keyObject);