This article is about PHP development of Ethereum system. It mainly introduces the use of PHP for smart contract development and interaction, account creation, transactions, transfers, token development, filters and events, etc.
When I first considered implementing payments via cryptocurrency, I looked at available solutions like Stripe. I think the problem with Stripe is that it only allows Bitcoin payments with US merchant accounts, so that's not an option for me. In the Ethereum world, it looks even worse. There are some newer services but they all want to share the cake.
So what do we need to build an Ethereum payment system from scratch?
A web server running PHP.
Have at least one Parity node in the private network with RPC enabled.
Virtual address generator on a network server, such as vanity-eth.
So how does it work?
Calculate the price of ETH using the current price from coinbase or kraken API.
Use a dummy generator to generate address pairs and encrypt or transfer the private key to another server.
Display the generated address to the customer and check the address every few seconds if payment is received.
Theoretically it seems to be no problem, so let's build it.
Step 1: Set up the server
We will use vanity-eth in nodejs to generate the address.
npm install -g vanity-eth@1.0.4"
After installing vanity-eth on Windows:
Also requires some Etherum nodes. I'm using Parity because it's fast and reliable.
Start it with these parameters, but do not expose the nodes directly to the Internet, keep them behind the firewall without port forwarding.
parity --jsonrpc-interface 0.0.0.0 --jsonrpc-hosts="all" --auto-update=all --jsonrpc-cors null
Parity log of completed synchronization:
For faster deployment, you can use Parity Docker containers. Data can also be saved so that you don't have to resynchronize each time the container is remade.
Step 2: Write the payment class
First create a folder called libs
and clone the php-ethereum repo into it. The ethereum-php project is a good wrapper for the json-rpc class.
Then we use the following class and save it as ethpay.php. This is the main logic of payment processing. You can use this to:
Generate address pairs
Check balances (pending and completed)
Convert from WEI to ETH
<?php define('RPC_IP','127.0.0.1'); define('RPC_PORT',8545); require 'libs/ethereum-php/ethereum.php'; $e = new EthPay(); class EthPay { private $eth; //让我们建立与parity节点的连接 function __construct() { $this->eth = new Ethereum(RPC_IP, RPC_PORT); if(!$this->eth->net_version()) die('RPC ERROR'); } / * *得到一个地址的余额, *来自parity的余额以十六进制形式出现在wei中 *使用bc数学函数转换它 * / function getBalanceOfAddress($addr) { $eth_hex = $this->eth->eth_getBalance($addr, 'latest'); $eth = $this->wei2eth($this->bchexdec($eth_hex)); $pending_hex = $this->eth->eth_getBalance($addr, 'pending'); $pending = $this->wei2eth($this->bchexdec($pending_hex)); return array('balance'=>$eth,'pending'=>$pending); } function getCurrentPrice($currency='USD') { $data = json_decode(file_get_contents('https://api.coinbase.com/v2/prices/ETH-'.$currency.'/spot'),true); return $data['data']['amount']; } /* *我们将使用vanityeth生成私钥对 * npm install -g vanity-eth *我们必须重新格式化输出字符串以用作JSON * / function genPair() { exec('vanityeth', $outputAndErrors, $return_value); $answer = implode(NULL,$outputAndErrors); $answer = str_replace('address:','"address":',$answer); $answer = str_replace('privKey:','"privKey":',$answer); $answer = str_replace('\'','"',$answer); return json_decode($answer,true); } //以下功能用于转换和处理大数字 function wei2eth($wei) { return bcp($wei,1000000000000000000,18); } function bchexdec($hex) { if(strlen($hex) == 1) { return hexdec($hex); } else { $remain = substr($hex, 0, -1); $last = substr($hex, -1); return bcadd(bcmul(16, $this->bchexdec($remain)), hexdec($last)); } } }
Final Step: Integrate with Your Website
There are multiple ways to do this depending on your service .
At API Heaven, we provide each customer with an ETH address where funds can be deposited. The cronjob checks all customer addresses every minute to detect changes. If they add ETH to the address, the balance is converted into API quota, so our customers don't even need to log into the site to add funds.
Sample integration in API Heaven:
Another approach is to calculate a fixed price and save it in the user session. The customer has to pay on the website and you need to AJAX to query the payment received. If the full amount is received, the backend triggers the sale.
Best of all, you don’t need an external service to integrate the Ethereum payment system on your website. Come and learn and play Ethereum together.
Related recommendations:
How to develop an online payment system with PHP
How to develop a virtual domain name system
The above is the detailed content of How to use php to develop the payment system of Ethereum. For more information, please follow other related articles on the PHP Chinese website!

USDT作为一种备受关注的稳定货币,随着区块链技术的发展和加密货币市场的普及,逐渐占据了市场份额。但是在众多的usdt购买平台中,我们如何才能找到真正可靠、正规的交易所呢?以下是全球十大可靠usdt购买平台的盘点。盘点10大靠谱USDT购买平台1.OKx欧易OKEx是一家领先的数字资产交易平台,也是购买USDT的可靠选择。它提供了全面的交易功能和多样化的交易选择,并采取了多种安全措施来保护用户的资金和交易安全。通过OKEx购买USDT,用户可以享受高效、安全的交易体验。欧易OKX是全球领先的数字

世界知名USDT交易所排名前十USDT(Tether)是一种基于比特币区块链技术的数字货币,与美元挂钩,被广泛应用于加密货币交易。USDT交易所是提供USDT交易服务的平台,随着加密货币市场的不断发展,各国涌现了许多知名的USDT交易所。本文将盘点并深度分析全球排名前十的USDT交易所。1.币安(Binance)币安是全球最大的USDT交易所,也是市值最高的加密货币交易所之一。成立于2017年的币安,凭借强大的技术支持、丰富的交易品种和良好的用户体验,迅速成为行业领军者。币安拥有全球用户基础,提

一、前言在金融市场中,合约量化交易已经成为了一种更为高效和智能的交易方式。随着技术的不断进步,越来越多的企业或个人投资者开始关注并使用各种量化交易软件。本文将会介绍合约量化交易软件排行榜,以帮助投资者选择适合自己的量化交易软件。二、合约量化交易软件排行榜欧易OKX欧易OKX是国内较为优秀的数字货币交易平台之一,属于OKEx旗下的分支机构。欧易OKX支持多种数字货币的交易,包括比特币、以太坊、莱特币、瑞波等等,还提供了杠杆交易、期货合约等高级交易服务。用户可以通过手机APP或PC端网站进行交易操作

根据CoinGecko数据,过去24小时,Solana生态DeFi聚合平台Jupiter的交易量超过5.22亿美元,占比达18.3%,超过了Uniswap在以太坊上的V2和V3协议交易量总和(约5亿美元)。DEX交易量排行在Jupiter的单日交易量中,Meme币WEN相关交易对的交易量超过6000万美元。Jupiter的共同创办人meow在25日宣布申领WEN已经开放。过去6个月内与Jupiter互动或拥有SolanaSaga手机的人都有资格申领WEN。WEN空投领取截止时间为今晚11点,每位

现在还有哪些虚拟币软件是可以使用的?好用的交易平台app推荐分享!随着虚拟币行业的不断发展,越来越多的人开始投资虚拟币。那么,现在还有哪些虚拟币软件是可以使用的呢?下面就来介绍一下。1.聚币网聚币网是一家成立多年的比特币交易平台,一直以来都致力于保障用户的资产安全。为了保证用户的数字资产安全,该平台采用了多层加密机制来存储用户的资产。该平台功能齐全,支持比特币、以太坊等虚拟币的交易,并提供了OTC等服务,为用户提供便利的交易环境。交易界面简洁易懂,操作方便,即使是新手也能轻松上手使用。2.币安币

二选一订单(OneCancelstheOther,简称OCO)可让您同时下达两个订单。它结合了限价单和限价止损单,但只能执行其中一个。换句话说,只要其中的限价单被部分或全部成交、止盈止损单被触发,另一个订单将自动取消。请注意,取消其中一个订单也会同时取消另一个订单。在币安交易平台进行交易时,您可以将二选一订单作为交易自动化的基本形式。这个功能可让您选择同时下达两个限价单,从而有助于止盈和最大程度减少潜在损失。如何使用二选一订单?登录您的币安帐户之后,请前往基本交易界面,找到下图所示的交易区域。点

本站(120bTC.coM):Solana生态NFT市场龙头MagicEden,在去年3月中旬抢搭Ordinals热潮推出比特币NFT市场,如今已成为仅次于OKX交易量第二大的市场。此外,这也意味着原本仅支持Solana和Polygon(2022/11支持)的MagicEden,正式拓展到比特币网络,紧接着在去年3月底,再宣布支持以太坊。但MagicEden的展望不仅于此,他认为虽然他的平台支持了四个公链的市场,但用户需要为每个链连线不同的钱包,太不方便,对于要如何实现统一的市场,提升用户体验,

欧交易是一款可以充值的btc、eth、usdt、doge等虚拟货币交易所平台,多种跨链资产,支持各国法币交易。一、欧交易推荐1、现货交易:便捷迅速的进行比特币莱特币交易。2、10年以上财务风险控制团队工作经验3、快捷方便,充值即时、提现迅速,每秒万单的高性能交易引擎,保证一切快捷方便。4、安全快捷的国内顶尖交易平台,超齐全的数字币交易服务。5、24小时开放,一对一的客户服务管理,动态信息量大;6、双重加密的系统,帮助用户可以安全放心的进行交易。7、查看比特币现货、期货、期权价格8、你可以通过判断


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version
Visual web development tools
