sq-dev / wallex-sdk
Wallex.online integration sdk
v2.1.0
2023-09-07 11:37 UTC
Requires
- php: >=7.4
- ext-json: *
- guzzlehttp/guzzle: ^7.7
README
Project Overview
The Wallex SDK is a software development kit that provides a set of tools and utilities for integrating with the Wallex payment gateway.
Table of Contents
Getting Started
This section provides instructions on how to get started with the Wallex SDK.
Installation
composer require sq-dev/wallex-sdk
Features
This section describes the main features and capabilities of the Wallex SDK.
Feature 1: Create payment widget
use Wallex\Widget; $widget = new Widget(1, 'secret_key'); $url = $widget->cretePayment( 'client@mail.ru', 'Xiaomi 9T', 1000, 1, 'Hello thanks for order', 'Xiaomi 9T', 'USDT', 'rub', 'ru' ); // Returns payment url
More information about the parameters can be found in the documentation.
Feature 2: Verify payment
use Wallex\Webhook; $payment = new Webhook($_POST); if ($payment->isVerified('secret_key') && $payment->isSuccess()) { // Payment success logic //F.e: $client = $payment->getClient(); // Get client email User::where('email', $client) ->update(['balance' => $payment->getAmount()]); }
Feature 3: Payouts
use Wallex\Payout; $payout = new Payout($merchantId, $secretKey); $payout->cryptoPay($address, $amount, $currency);
More information about the parameters can be found in the documentation.
Contributing
We welcome contributions from the developer community to improve the Wallex SDK. If you are interested in contributing to the Wallex SDK, please follow the steps below:
- Fork the repository on GitHub.
- Create a new branch for your feature or bug fix.
- Make the necessary changes in your branch.
- Write tests to ensure the changes are working as expected.
- Submit a pull request with your changes.
License
The Wallex SDK is licensed under the MIT License.