比特币(Bitcoin) RPC Wallet API中dumpwallet的用法及代码示例。
用法:
dumpwallet "filename"
将所有钱包 key 以人类可读的格式转储到服务器端文件中。这不允许覆盖现有文件。
导入的脚本包含在转储文件中,但是importwallet可能不会自动添加相应的BIP173地址等。
请注意,如果您的钱包包含不是从HD种子派生的 key (例如,导入的 key ),则仅备份种子本身不会覆盖这些 key ,还必须对其进行备份(例如,确保备份整个转储文件)。
参数1 - filename
类型:字符串,必填
带有路径的文件名(绝对或相对于bitcoind)
返回结果
{ (json object)
"filename" : { (string) The filename with full absolute path
}
示例
bitcoin-cli dumpwallet "test"
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "dumpwallet", "params": ["test"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
相关用法
- Bitcoin abandontransaction用法及代码示例
- Bitcoin abortrescan用法及代码示例
- Bitcoin addmultisigaddress用法及代码示例
- Bitcoin backupwallet用法及代码示例
- Bitcoin bumpfee用法及代码示例
- Bitcoin createwallet用法及代码示例
- Bitcoin dumpprivkey用法及代码示例
- Bitcoin encryptwallet用法及代码示例
- Bitcoin getaddressesbylabel用法及代码示例
- Bitcoin getaddressinfo用法及代码示例
- Bitcoin getbalance用法及代码示例
- Bitcoin getnewaddress用法及代码示例
- Bitcoin getrawchangeaddress用法及代码示例
- Bitcoin getreceivedbyaddress用法及代码示例
- Bitcoin getreceivedbylabel用法及代码示例
- Bitcoin gettransaction用法及代码示例
- Bitcoin getwalletinfo用法及代码示例
- Bitcoin importaddress用法及代码示例
- Bitcoin importmulti用法及代码示例
- Bitcoin importprivkey用法及代码示例
- Bitcoin importpubkey用法及代码示例
- Bitcoin importwallet用法及代码示例
- Bitcoin keypoolrefill用法及代码示例
- Bitcoin listaddressgroupings用法及代码示例
- Bitcoin listlabels用法及代码示例
注:本文由纯净天空筛选整理自bitcoin.org大神的英文原创作品 Bitcoin dumpwallet。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。