我正在尝试使用Aptos Typescript SDK创建一个令牌集合。
const account = new AptosAccount(Uint8Array.from(Buffer.from(PRIVATE_KEY)), ACCOUNT_ADDR);
await tokenClient.createCollection(
account,
"A test collection 1",
"A test collection",
"https://google.com",
);
但是我得到以下错误:
ApiError2: {"message":"Invalid transaction: Type: Validation Code: INVALID_AUTH_KEY","error_code":"vm_error","vm_error_code":2}
我做错了什么?
尝试复制Aptos官方示例,但不是创建一个新帐户,我想使用现有的资助帐户。
假设您有一个十六进制字符串的私钥,您可以这样做:
import { AptosAccount, HexString } from "aptos";
const privateKeyHex = "0xdcaf65ead38f7cf0eb4f81961f8fc7f9b7f1e2f45e2d4a6da0dbef85f46f6057";
const privateKeyBytes = HexString.ensure(privateKeyHex).toUint8Array();
const account = new AptosAccount(privateKeyBytes);
我也有同样的问题。最后我发现问题是地址与private_key不匹配,private_key不是ed25519格式。您的密钥必须使用ed25519曲线生成,然后您应该从该密钥创建您的地址。我使用bip_utils库创建bip_private_key(使用Near协议,也是ed25519),然后:
private_key = ed25519.PrivateKey.from_hex(bip_private_key)
我只是想在Daniel的回答中添加关于如何在创建钱包后获得私钥然后使用它的细节:
import { AptosAccount } from "aptos";
const wallet = new AptosAccount();
const privateKeyHex = wallet.toPrivateKeyObject().privateKeyHex;
// ...
const privateKeyBytes = HexString.ensure(privateKeyHex).toUint8Array();
const account = new AptosAccount(privateKeyBytes);