Open kcelestinomaria opened 3 years ago
Hello @kcelestinomaria ! Of course, it is possible. Using the last version of MyAlgo Connect package (v1.1.0)
const algosdk = require("algosdk");
const MyAlgoConnect = require( "@randlabs/myalgo-connect");
const txn = algosdk.makeAssetCreateTxnWithSuggestedParamsFromObject({ ...assetCreateParams });
const myalgoWallet = new MyAlgoConnect();
const signedTx = await myalgoWallet.signTransaction(txn.toByte());
Hello @Alex99y @JCibeira Is it possible to create an algorand asset from scratch using myalgo-connect? I see it on the myalgo-connect README demo page but I don't see a demo of it in the myalgo-connect example you have given. Is it possible if you could add this piece as well? Thank you.