Changeset 2835210
- Timestamp:
- 12/16/2022 06:24:33 PM (3 years ago)
- Location:
- trelis-crypto-payments/trunk
- Files:
-
- 2 edited
-
ReadMe.txt (modified) (5 diffs)
-
Trelis-ethereum-payment-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trelis-crypto-payments/trunk/ReadMe.txt
r2833988 r2835210 5 5 Requires at least: 6.1 6 6 Tested up to: 6.1 7 Stable tag: 1.0.1 67 Stable tag: 1.0.17 8 8 Requires PHP: 7.4 9 9 License: GPL-3.0 … … 29 29 30 30 * **Pay with any major Ethereum wallet.** Metamask, Coinbase, Rainbow, Ledger, Trezor 31 * **Gasless payments** Customers can pay in USDC, no ETH required! 31 32 32 33 == Getting Started == … … 34 35 1. Install the Trelis Crypto Payments plugin 35 36 1. Navigate to WooCommerce -> Settings -> Payments -> TrelisPay -> Manage 36 1. Navigate to [Trelis.com](Trelis.com) and connect your Ethereum wallet. This wallet will receive payments. It is highly recommended to use a cold wallet. You are solely responsible for custody of your funds. 37 1. Navigate to [Trelis.com](Trelis.com) and connect your Ethereum wallet. This wallet will receive payments. It is highly recommended to use a cold wallet. You are solely responsible for custody of your funds. To offer gasless USDC payments, purchase gas credits from your dashboard. 37 38 1. Navigate to the api screen to create a new api key. 38 39 1. Copy the api webhook url from Wordpress and enter it on Trelis.com … … 61 62 * Users of Trelis Crypto Payments plugin with Trelis' api must agree to Trelis' [Terms of Service](https://docs.trelis.com/terms-of-service) as a condition of use. 62 63 64 = Why aren't payments showing as gasless? = 65 66 * Merchants can only offer gasless payments to customers if they have prepaid gas credits. Gas credits can be purchased at Trelis.com and must be purchased from the same account from which the api keys are generated. Further, payments will default to standard (i.e. customer pays for gas) if gas costs exceed 5% of the transaction amount. 67 63 68 == Screenshots == 64 69 … … 74 79 * Allow payment in USDC for products priced in non-USD currencies. 75 80 * Add support for Spanish 81 * Add option for Trelis prime (1% customer discount) 82 83 = 1.0.17 = 76 84 * Allow merchants to offer gasless payments 77 * Add option for Trelis prime (1% customer discount)78 85 79 86 = 1.0.16 = -
trelis-crypto-payments/trunk/Trelis-ethereum-payment-gateway.php
r2833988 r2835210 211 211 'productPrice' => $order->total, 212 212 'currencyType' => $currency, 213 'redirectLink' => $this->get_return_url($order) 213 'redirectLink' => $this->get_return_url($order), 214 'isGasless' => true 214 215 )) 215 216 );
Note: See TracChangeset
for help on using the changeset viewer.