I am currently working with a Fireblocks sandbox account that includes multiple networks such as BTC_TEST and XRP_TEST, both of which are functioning properly and displaying updated balances, Transfers. However, I am encountering an error consistently when trying to create networks like BNB_TEST, ETH_TEST5, ETH_TEST_HOODI, ETH-AETH_RIN, ETH-AETH_SEPOLIA, ETH-OPT_KOV, and SOL_TEST. The error message appears repeatedly, and I have attached a screenshot for reference. I’m using the Fireblocks SDK in JavaScript.
Error Message :
“message”: “Creating addresses for the provided asset is not supported”,
“code”: 1010
CODE :
const vaultAccount = await fireblocks.createVaultAccount(“Ram”);
console.log(vaultAccount);
const vaultAsset = await fireblocks.createVaultAsset(vaultAccount.id, “BNB_TEST”);
console.log(vaultAsset);
const address = await fireblocks.generateNewAddress(vaultAccount.id, “BNB_TEST”);
console.log(address);