// Define os parâmetros de conexão com o HSM constoptions = { host:"127.0.0.1", authUsernamePassword: { username:"master", password:"12345678", }, };
asyncfunctioncreateKey() { // Connecta ao HSM constconn = awaithsm.connect(options);
// Nome da chave constkeyName = "myBlockchainKey";
// Cria a nova chave constcreated = awaitconn.blockchain.create( keyName, // Nome da chave hsm.enums.BLOCKCHAIN_KEYS.BIP32_XPRV, // Tipo true, // Se é exportável true, // Se é temporária hsm.enums.VERSION_OPTIONS.BIP32_MAIN_NET// Versão );
// Verifica se a chave foi criada if (created) { console.log("Key created"); } else { console.log("Key not created"); }