Submit RPC requests to Ethereum via MetaMask

trying to request a TX like this ( https://docs.metamask.io/guide/ethereum-provider.html#ethereum-request-args )

`

params: [
  {
    from: '0xb60e8dd61c5d32be8058bb8eb970870f07233155',
    to: '0xd46e8dd67c5d32be8058bb8eb970870f07244567',
    gas: '0x76c0', // 30400
    gasPrice: '0x9184e72a000', // 10000000000000
    value: '0x9184e72a', // 2441406250
    data: '0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675',
  },
];

 but DATA (contract) can be changed and can send it with other coin


`


I want  to make TX just with specified data ( ETH for example )
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.