当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Bitcoin createwallet用法及代码示例


比特币(Bitcoin) RPC Wallet API中createwallet的用法及代码示例。

用法:

createwallet "wallet_name" ( disable_private_keys blank )

创建并加载新的钱包。

参数1 - wallet_name

类型:字符串,必填

新钱包的名称。如果这是一条路径,则将在路径位置创建钱包。

参数2 - disable_private_keys

类型:布尔值,可选,默认= false

禁用私钥的函数(在此模式下只能使用监视函数)。

参数3 - blank

类型:布尔值,可选,默认= false

创建一个空白的钱包。空白钱包没有 key 或HD种子。可以使用sethdseed进行设置。

返回结果

{
  "name" :    <wallet_name>,        (string) The wallet name if created successfully. If the wallet was created using a full path, the wallet_name will be the full path.
  "warning" : <warning>,            (string) Warning message if wallet was not loaded cleanly.
}

示例

bitcoin-cli createwallet "testwallet"
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "createwallet", "params": ["testwallet"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/

相关用法


注:本文由纯净天空筛选整理自bitcoin.org大神的英文原创作品 Bitcoin createwallet。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。