Filecoin.WalletExport
Filecoin.WalletExport返回钱包中指定地址的私钥。
参数
- address: string
返回值
Filecoin.WalletExport调用返回KeyInfo对象。
示例代码
请求:
curl -X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc":"2.0",
"method":"Filecoin.WalletExport",
"params":[
"f01234"
],
"id":7878
}' \
http://127.0.0.1:1234/rpc/v0
响应:
{
"id": 7878,
"jsonrpc": "2.0",
"result": {
"Type": "bls",
"PrivateKey": "Ynl0ZSBhcnJheQ=="
}
}