Hi Ontology dev team,
We stuck with an issue of transfer ONG coin from Ontology EVM to Ontology Native via JS-SDK, this is hard for us to integrate Ontology into our popular crypto ShibaWallet.
Our team is eager to solve the problem so that we hope the dev team is able to answer it here, please.
We just follow the step on docs.https://ontio.github.io/documentation/tutorial_for_developer_en.html
The error is saying: Insufficient balance, but my account actually has 6000 ONG and I can see it on the block exporer explorer.ont.io
Please! please!
Environment:
"ontology-ts-sdk": "^2.0.0"
To get the balance:
const rest = new OntWallet.RestClient(CONST.MAIN_ONT_URL.REST_UR);
let balance = await rest.getBalanceV2(addr)
To make a transaction:
OntAssetTxBuilder.makeWithdrawOngTx(from, _to, amount, payer, gasPrice, gasLimit);
or
OntAssetTxBuilder.makeTransferTx(assetType, from, _to, amount, gasPrice, gasLimit, payer);
Both are failed to send due to insufficient balance.
Top comments (1)
@shibawalletpro Did you solve your problem?