diff --git a/README.md b/README.md
index dcbf147..8645967 100644
--- a/README.md
+++ b/README.md
@@ -159,3 +159,4 @@ If you are interested in creating and managing your own PFP NFT collection, you
Other tools:
- [Buildo Begins](https://github.com/xdevguild/buildo-begins) - all MultiversX blockchain CLI interactions with sdk-js, still in progress, but usable
+- [Buildo.dev](https://www.buildo.dev) - Buildo.dev is a MultiversX app that helps with blockchain interactions, like issuing tokens and querying smart contracts.
diff --git a/example/index.html b/example/index.html
index f501989..7f046e7 100644
--- a/example/index.html
+++ b/example/index.html
@@ -48,8 +48,8 @@
Loading...
* For the ESDT transfer you will need to get the
BUILDO-890d14 token from the faucet:
BUILDO-22c0a5 token from the faucet:
https://devnet-multiversx-esdt-faucet.netlify.app (you can also modify the
hardcoded
@@ -105,7 +105,7 @@
Demo transactions/queries description (devnet):
- simple ESDT transfer on the devnet chain
- it will go to a predefined wallet
- - it will be 1 BUILDO-890d14 token
+ - it will be 1 BUILDO-22c0a5 token
- after the transaction is finished below, you will find the transaction hash
@@ -278,12 +278,12 @@
Other demos:
document.getElementById('button-tx-esdt').addEventListener('click', async () => {
updateTxHashContainer(false);
- // The preconfigured transaction is for the 1 'BUILDO-890d14' ESDT token on the devnet
+ // The preconfigured transaction is for the 1 'BUILDO-22c0a5' ESDT token on the devnet
// You need to know its ticker and how many decimals places it has
// In this case, the token has 18 decimal places. You can check it in the MultiversX devnet explorer
- // You can use the community-based faucet to get the BUILDO-890d14 token: https://r3d4.fr/faucet
+ // You can use the community-based faucet to get the BUILDO-22c0a5 token: https://r3d4.fr/faucet
const transfer = TokenTransfer.fungibleFromAmount(
- 'BUILDO-890d14',
+ 'BUILDO-22c0a5',
'1',
18
);
@@ -354,8 +354,8 @@
Other demos:
uiPending(false);
// Manual decoding of a simple type (number here), there will be additional tools for that
- // For more possibilities, for now please check data converter in Buildo CLI:
- // https://github.com/xdevguild/buildo-begins/blob/main/src/converters.ts
+ // For more possibilities, for now please check data converter in Buildo.dev:
+ // https://github.com/xdevguild/buildo.dev/blob/main/components/operations/utils-operations/data-converters.tsx#L103
const hexVal = base64ToDecimalHex(results?.returnData?.[0]);
let intVal = 0;
if (hexVal) {