filecoin 密钥类型

filecoin 密钥类型

const (
	KTBLS             KeyType = "bls"
	KTSecp256k1       KeyType = "secp256k1"
	KTSecp256k1Ledger KeyType = "secp256k1-ledger"
)

secp256k1-ledger 类型需要在节点添加配置支持
~/.lotus/config.toml

[Wallet]
  EnableLedger = true

创建地址

Filecoin.WalletNew

  • type: 地址类型,默认为 NewAddressType.SECP256K1
{
     
    "jsonrpc": "2.0",
    "method": "Filecoin.WalletNew",
    "params": [
        "secp256k1"
    ],
    "id": 7878
}

你可能感兴趣的:(区块链)