Filecoin.WalletNew
Filecoin.WalletNew在钱包中创建一个指定类型的新地址。可用的密钥类型 包括: bls, secp256k1。
参数
- type: 地址类型,默认为 NewAddressType.SECP256K1
返回值
Filecoin.WalletNew调用返回新创建的地址字符串。
示例代码
请求:
curl -X POST \
-H "Content-Type: application/json" \
--data '{
"jsonrpc":"2.0",
"method":"Filecoin.WalletNew",
"params":[
"bls"
],
"id":7878
}' \
http://127.0.0.1:1234/rpc/v0
响应:
{
"id": 7878,
"jsonrpc": "2.0",
"result": "f01234"
}