Transactions

將乙太幣從我的錢包轉移到另一個錢包

  • December 29, 2021

我在 MyEtherWallet.com 有一個錢包。是否有任何 API 允許我將乙太幣從我的賬戶轉移到不同的賬戶?MyEtherWallet 是否提供任何此類 API?

我看到了文件,它提到了以下參數:

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"
}]

但是 URL 端點是什麼?如何驗證我是這個錢包的所有者?

MyEtherWallet 已經可以選擇發送乙太幣和代幣。如果您知道收件人的地址,您可以通過此處自行發送。

在此處輸入圖像描述

如果您有一個完整的 geth 或一個輕型 geth 節點正在執行,您可以通過終端發送它。

您將首先執行 geth 節點,在另一個終端視窗中附加到它。

第二次使用此程式碼解鎖您的帳戶: personal.unlockAccount(address, 'password')

比你可以發送交易,使用這樣的東西: eth.sendTransaction({from:'fromAddress', to:'toAddress', value: web3.toWei(0.05, "ether"), gas:21000});

引用自:https://ethereum.stackexchange.com/questions/29119