Hello everybody,
I wanted information about the API.
In practice I can do all the login steps through the API, but I can’t specify the asset when sending the transaction, that is, I make this request:
await ethereum
.request({
method: 'eth_sendTransaction',
params: [
{
from: this.idAccountMetaMask,
to: this.receiverMetamask,
value: this.value,
asset: 'doge',
},
],
})
but I always select the main BNB network but I cannot specify doge coin for example that it is an asset present on my metamask account.
Where am I doing wrong?
Thank you