[Ethereum] Transfer Ether from the wallet to another wallet

ethermyetherwallettransactionswallets

I have a wallet at MyEtherWallet.com . Is there any API which allows me to transfer Ether from my account to different accounts ? Does MyEtherWallet provides any such API's ?

I saw the documentation, it mentioned the params below:

eth_sendTransaction

Creates new message call transaction or a contract creation, if the data field contains code.

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

But what is the URL endpoint ? How do I authenticate that I am the owner of this wallet ?

Best Answer

MyEtherWallet already has the option to send Ether & Tokens. If you know the receiver's address you can send it via here itself.

enter image description here

Related Topic