I want to mint NFT’s and for alchemy I used something like:
const web3 = createAlchemyWeb3({...});
const contract = web3.ethContract(...)
const nft = contract.methods.createToken(...)
const signedTransaction = web3.eth.accounts.signTransaction(...)
web3.eth.sendSignedTransaction(signedTransaction, private_key)
But the Moralis functions don’t give the eth object to communicate with the ethereum network
const web3 = await Moralis.enableWeb3();
const nativeWeb3 = Moralis.Web3API.native();
web3.eth // undefined
nativeWeb3.eth // undefined
Where do I get to the native web3 api?