Python

Python 創建付款並使用私鑰發送

  • December 24, 2017

我正在考慮/嘗試創建支付系統。只是為了了解有關加密的更多資訊。我想生成公鑰和私鑰。並使用 python 向 eth 網路發送(廣播)付款。我該怎麼做?順便提一句。感謝您提供任何幫助和資訊。

您可以使用一些工具,以下是幫助您入門的連結:

Web3Py:

乙太坊:

乙太坊主客戶端(geth,可以通過 web3py 插入):

我做了類似的事情,但只需要謹慎使用乙太坊。因此,我沒有學習這些用於與網路互動的低於標準的 python 工具,而是使用 javascript,然後在 python 中送出我的 javascript 文件並傳遞參數。

這是在 python 中呼叫我的“Details.js”文件的基本程序:

from Naked.toolshed.shell import execute_js

def ex(file_path, arguments=""):
   try:
       if len(arguments) > 0:
           js_command = file_path + " " + arguments
       else:
           js_command = file_path
       return execute_js(js_command) # return result of execute() of node.js file
   except Exception as e:
       if DEBUG_FLAG:
            sys.stderr.write("Naked Framework Error: unable to run the shell command with the run_js() function (Naked.toolshed.shell.py).")
       raise e 
ex('Details.js',"0xc99CC3CeD3208A5637bdb52cD2aD03550A62F71C")

我更喜歡這種方式,因為它更容易找到如何發送 Ether 交易的 javascript 範例。

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