DEV Community

Cannot transfer ONG via JS-SDK

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)
Enter fullscreen mode Exit fullscreen mode

Image description

To make a transaction:

OntAssetTxBuilder.makeWithdrawOngTx(from, _to, amount, payer, gasPrice, gasLimit);
Enter fullscreen mode Exit fullscreen mode

or

OntAssetTxBuilder.makeTransferTx(assetType, from, _to, amount, gasPrice, gasLimit, payer);
Enter fullscreen mode Exit fullscreen mode

Both are failed to send due to insufficient balance.

Image description

Code snippet:
Image description

Top comments (1)

Collapse
 
holgrs profile image
holgrs

@shibawalletpro Did you solve your problem?