openreceive-rails 0.4.4 → 0.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b0e01e9b76a2a924c07b7403a1a103e5db904147fcd8a44f385cf42ba616b97c
4
- data.tar.gz: 59c7558cd8a72dc905517c8812750c1ed53f56495797ccc40b4eca5924eb2cb5
3
+ metadata.gz: 2cd25ab457fdc7a54d989c2a490fa75d451362157618702bc3e101d461c450d4
4
+ data.tar.gz: c377fd378153bd78bb195000a74efd776587b40d1a8927a514aa7b9739da8986
5
5
  SHA512:
6
- metadata.gz: 636b758e07b9bdce4155984fc29629b2ac7b90aee6302605836513595900f837933fba80df7b3ec06e0f40537dc6c8f223b0ffcdeeb5dd5eef25111e390006fd
7
- data.tar.gz: c591cacae9e9e4adedd2aa633fdaa6b2e375829d11f3746c94a01dd56abb930a5c135c7f7d0a304d3a38dd5542d9a5e7ce480dc50d013e2752721cb00ba924e8
6
+ metadata.gz: 980779f4826ebc988f9d6b11a24004153477b84738ba26e5ad849658137b24edd8d5f3cded4d212ae6e17f4c69a6d02d3398cca5abc2417033d599f9c7665fb3
7
+ data.tar.gz: c48b85c8349b5bc27ae2c8f2b1dc9a9aa4f1f81640850368a4a411ca5035cdad5bd3e8d9f03298077516c8dbd163c82c42c60a448d43431f24dc8ddb494731e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.6 - 2026-09-11
4
+
5
+ Refresh installation and quickstart documentation and package metadata.
6
+ The Rails demo places the order id and return link below payment choices and
7
+ the Lightning wallet list on mobile, while keeping the desktop sidebar.
8
+ Release in lockstep with openreceive 0.4.6 and its live-price request fix;
9
+ no Rails engine API change.
10
+
11
+ ## 0.4.5 - 2026-09-07
12
+
13
+ Release in lockstep with the Python/PHP publishing workflow fixes and complete
14
+ WooCommerce integration documentation. Shared HTTP golden fixtures now use
15
+ the canonical placeholder definitions. No Ruby public API change.
16
+
3
17
  ## 0.4.4 - 2026-09-07
4
18
 
5
19
  Version lockstep with the 0.4.4 npm release (every checkout image now ships
data/README.md CHANGED
@@ -1,17 +1,55 @@
1
1
  # openreceive-rails
2
2
 
3
- Mountable receive-only OpenReceive engine. The engine owns the
4
- `OpenReceivePayment` attempt model (statuses `pending`, `settled`, `expired`,
5
- `failed`, `attention`), its per-reference commit locking, settlement write-once, and
6
- the reconciliation state machine. The install generator mounts the routes and
7
- emits the initializer plus one migration creating both engine tables
8
- (`openreceive_payments` and the `openreceive_meta` reconcile gate):
3
+ **Accept Bitcoin Lightning payments in Rails. Your app, your wallet.**
4
+
5
+ [OpenReceive](https://openreceive.org) adds Lightning checkout to your Rails app
6
+ and sends payments directly to a wallet you control. Mount the engine, connect
7
+ a receive-only Nostr Wallet Connect (NWC) wallet, and connect three hooks:
8
+ authorize a request, look up the order amount, and handle a settled payment.
9
+
10
+ OpenReceive supports optional swaps from **USDT, USDC, SOL, and ETH** through
11
+ a configured swap provider. The provider converts the payment to **BTC over
12
+ Lightning**, which settles into the merchant's connected wallet. Available
13
+ assets and networks depend on the provider; swaps are optional.
14
+
15
+ - **Fits your app:** keep your orders, users, prices, and fulfillment in Rails.
16
+ - **Uses your database:** payment attempts and reconciliation live alongside
17
+ your application data, with PostgreSQL, SQLite, and MySQL support.
18
+ - **Handles the payment lifecycle:** invoice creation, payment checks, retry
19
+ coordination, and settlement reconciliation are built in.
20
+ - **Keeps operations simple:** no separate OpenReceive database, Redis, or
21
+ payment service to deploy. Wallet notifications can run in an optional worker.
22
+
23
+ ## Get started
24
+
25
+ Requires Ruby 3.2 or later and Rails 8.0 or later. Add to your Gemfile:
26
+
27
+ ```ruby
28
+ gem "openreceive-rails"
29
+ ```
30
+
31
+ Run `bundle install`, then install the engine:
9
32
 
10
33
  ```sh
11
34
  bin/rails generate openreceive:install
12
35
  bin/rails db:migrate
13
36
  ```
14
37
 
38
+ The core, server, and default NWC client gems are included as dependencies.
39
+ Follow the [Rails quickstart](https://github.com/OpenReceive/openreceive/blob/master/docs/guides/quickstart-rails.md) for native
40
+ build prerequisites, wallet configuration, the three hooks, and the checkout UI.
41
+ The generator creates the initializer, migration, and route mount; configure
42
+ the wallet and hooks before accepting payments.
43
+
44
+ ## How it fits into Rails
45
+
46
+ The engine owns the
47
+ `OpenReceivePayment` attempt model (statuses `pending`, `settled`, `expired`,
48
+ `failed`, `attention`), its per-reference commit locking, settlement write-once, and
49
+ the reconciliation state machine. The install generator mounts the routes and
50
+ emits the initializer plus one migration creating both engine tables
51
+ (`openreceive_payments` and the `openreceive_meta` reconcile gate).
52
+
15
53
  The generated migration supports PostgreSQL, SQLite, and MySQL, and seeds the
16
54
  shared `schema_version`; on its first database touch the engine refuses to
17
55
  operate a database whose stored schema version is newer than the gem.
@@ -50,3 +88,13 @@ application refuses to start when the connection advertises spend methods unless
50
88
  `config.allow_spend_capable_wallet` or `OPENRECEIVE_ALLOW_SPEND_CAPABLE_NWC`
51
89
  overrides it. Keep ordinary settings such as `config.price_currencies` in
52
90
  `config/initializers/openreceive.rb`.
91
+
92
+ ## Links
93
+
94
+ - Rails quickstart: [Connect your first checkout](https://github.com/OpenReceive/openreceive/blob/master/docs/guides/quickstart-rails.md)
95
+ - API reference: [Configuration, hooks, and reconciliation](https://github.com/OpenReceive/openreceive/blob/master/docs/guides/api-reference.md)
96
+ - Host testing: [Test your integration without a wallet](https://github.com/OpenReceive/openreceive/blob/master/docs/guides/host-testing.md)
97
+ - Source and issues: <https://github.com/openreceive/openreceive>
98
+ - Changelog: [CHANGELOG.md](CHANGELOG.md)
99
+
100
+ MIT license.
@@ -5,6 +5,6 @@ module OpenReceive
5
5
  # top-level `::Rails` framework constant — engine code always references the framework as
6
6
  # `::Rails` to avoid shadowing.
7
7
  module Rails
8
- VERSION = "0.4.4"
8
+ VERSION = "0.4.6"
9
9
  end
10
10
  end
@@ -30,6 +30,7 @@ code** (`NWC_URI`).
30
30
  - Rails: [references/rails.md](references/rails.md)
31
31
  - Django: [references/django.md](references/django.md)
32
32
  - Laravel: [references/laravel.md](references/laravel.md)
33
+ - WordPress + WooCommerce: [references/woocommerce.md](references/woocommerce.md) — the packaged gateway and merchant settings.
33
34
  - BTCPay Server: [references/btcpay.md](references/btcpay.md) — a plugin,
34
35
  configured in BTCPay's store UI or Greenfield API; no application code,
35
36
  no npm packages, no gem. The rest of this file is about the library.
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (BTCPay Server)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Connect a BTCPay Server store to a receive-only NWC wallet with the OpenReceive
6
6
  plugin, and optionally let payers pay BTCPay invoices with USDT, USDC, ETH or
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (Django)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a Django project — the app you are already working in. You
6
6
  do not need a copy of the OpenReceive source: the Python package is on PyPI
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (FastAPI)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a FastAPI application — the app you are already working in.
6
6
  You do not need a copy of the OpenReceive source: the engine is on PyPI
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (Fastify)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a Fastify application — the app you are already working in.
6
6
  You do not need a copy of the OpenReceive source: the packages are on npm, and
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (Laravel)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a Laravel application — the app you are already working in.
6
6
  You do not need a copy of the OpenReceive source: the package is on Packagist
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (Next.js)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a Next.js App Router application — the app you are already
6
6
  working in. You do not need a copy of the OpenReceive source: the packages are
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (Node.js)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a Node application — the app you are already working in. You
6
6
  do not need a copy of the OpenReceive source: the packages are on npm, and the
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (PHP)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a PHP application — the app you are already working in. You
6
6
  do not need a copy of the OpenReceive source: the engine is on Packagist
@@ -1,6 +1,6 @@
1
1
  # OpenReceive agent directions (Rails)
2
2
 
3
- These directions describe OpenReceive 0.4.4.
3
+ These directions describe OpenReceive 0.4.6.
4
4
 
5
5
  Add OpenReceive to a Rails application — the app you are already working in. You
6
6
  do not need a copy of the OpenReceive source: the gem is on RubyGems, the
@@ -0,0 +1,176 @@
1
+ # OpenReceive agent directions (WordPress + WooCommerce)
2
+
3
+ These directions describe OpenReceive 0.4.6.
4
+
5
+ Install and configure the OpenReceive gateway in the existing WooCommerce
6
+ store. Preserve its theme, checkout, customer accounts, order model and prices.
7
+ The plugin bundles the PHP engine and checkout assets; the merchant does not
8
+ install npm or Composer packages on the WordPress server.
9
+
10
+ ## Step 0 — inspect configuration
11
+
12
+ Check WordPress, WooCommerce and PHP versions, GMP and sodium availability,
13
+ whether the plugin is installed, and whether the Doctor panel reports the
14
+ receive-only NWC credential as set. Never display its value. For a real store,
15
+ ask the merchant to configure a receive-only wallet if none is available.
16
+ For repository development, use the Docker demo's explicit testkit override.
17
+
18
+ Upload a built plugin archive, not a zip of the source directory. The plugin
19
+ has not yet been accepted into the WordPress.org directory. Configuration and
20
+ the complete quickstart follow below.
21
+
22
+ The plugin owns only its payment-attempt tables in the WordPress database.
23
+ WooCommerce owns orders, totals, stock and email. Do not add an external
24
+ idempotency store, payment database, browser wallet credentials or custom
25
+ fulfillment implementation. Guest return links use WooCommerce's order key;
26
+ the plugin verifies it before issuing an expiring order-bound cookie.
27
+
28
+ Run `wp openreceive doctor` after configuration. Use the documented scheduled
29
+ reconciliation or optional notifications command for offline settlement.
30
+ Manual merchant refunds and provider-managed payer swap refunds are separate
31
+ flows; a receive-only NWC wallet cannot send payments.
32
+
33
+ ## Further reading
34
+
35
+ - [Express Quickstart (Node)](https://openreceive.org/guides/quickstart-node.md)
36
+ - [Fastify Quickstart](https://openreceive.org/guides/quickstart-fastify.md)
37
+ - [FastAPI Quickstart](https://openreceive.org/guides/quickstart-fastapi.md)
38
+ - [Django Quickstart](https://openreceive.org/guides/quickstart-django.md)
39
+ - [Next.js Quickstart](https://openreceive.org/guides/quickstart-next.md)
40
+ - [Rails Quickstart](https://openreceive.org/guides/quickstart-rails.md)
41
+ - [PHP Quickstart (plain PHP)](https://openreceive.org/guides/quickstart-php.md)
42
+ - [Laravel Quickstart](https://openreceive.org/guides/quickstart-laravel.md)
43
+ - [BTCPay Server Quickstart](https://openreceive.org/guides/quickstart-btcpay.md)
44
+ - [BTCPay Plugin Reference](https://openreceive.org/guides/btcpay-reference.md)
45
+ - [Node ORM Recipes](https://openreceive.org/guides/node-orms.md)
46
+ - [Authorization](https://openreceive.org/guides/authorization.md)
47
+ - [Rate Limiting](https://openreceive.org/guides/rate-limiting.md)
48
+ - [Frontend Checkout](https://openreceive.org/guides/frontend-checkout.md)
49
+ - [Checkout UX](https://openreceive.org/guides/checkout-ux.md)
50
+ - [Headless Checkout](https://openreceive.org/guides/headless-checkout.md)
51
+ - [Automated Swaps](https://openreceive.org/guides/automated-swaps.md)
52
+ - [Swap Refunds](https://openreceive.org/guides/swap-refunds.md)
53
+ - [Lightning Swap Connect URI](https://openreceive.org/guides/lightning-swap-connect.md)
54
+ - [Environment Variables](https://openreceive.org/guides/environment-variables.md)
55
+ - [Payment Storage](https://openreceive.org/guides/storage.md)
56
+ - [Deploying OpenReceive](https://openreceive.org/guides/deploying.md)
57
+ - [Testing Your OpenReceive Integration](https://openreceive.org/guides/host-testing.md)
58
+ - [API Reference](https://openreceive.org/guides/api-reference.md)
59
+ - [Security](https://openreceive.org/guides/security.md)
60
+ - [Provider Registry](https://openreceive.org/guides/provider-registry.md)
61
+ - [Price Feeds](https://openreceive.org/guides/price-feeds.md)
62
+ - [React Material UI Recipe](https://openreceive.org/guides/react-material-ui-recipe.md)
63
+ - [Flask Recipe](https://openreceive.org/guides/flask-recipe.md)
64
+ - [Writing Your Own Checkout Route](https://openreceive.org/guides/custom-checkout-route.md)
65
+ - [Agent Directions: Node.js](https://openreceive.org/guides/agent-directions-node.md)
66
+ - [Agent Directions: Fastify](https://openreceive.org/guides/agent-directions-fastify.md)
67
+ - [Agent Directions: FastAPI](https://openreceive.org/guides/agent-directions-fastapi.md)
68
+ - [Agent Directions: Django](https://openreceive.org/guides/agent-directions-django.md)
69
+ - [Agent Directions: Next.js](https://openreceive.org/guides/agent-directions-next.md)
70
+ - [Agent Directions: Rails](https://openreceive.org/guides/agent-directions-rails.md)
71
+ - [Agent Directions: PHP](https://openreceive.org/guides/agent-directions-php.md)
72
+ - [Agent Directions: Laravel](https://openreceive.org/guides/agent-directions-laravel.md)
73
+ - [Agent Directions: BTCPay Server](https://openreceive.org/guides/agent-directions-btcpay.md)
74
+ - [WordPress + WooCommerce Quickstart](https://openreceive.org/guides/quickstart-woocommerce.md)
75
+
76
+ ---
77
+
78
+ ## The quickstart, in full
79
+
80
+ Inlined verbatim so this file needs no network access — follow it once Step 0
81
+ passes. The page it comes from is https://openreceive.org/guides/quickstart-woocommerce.
82
+
83
+ ## WordPress + WooCommerce quickstart
84
+
85
+ Install the built OpenReceive plugin zip through **Plugins → Add New → Upload
86
+ Plugin**, with WooCommerce already active. The source directory needs a build;
87
+ it cannot be uploaded as-is. WordPress.org submission is still pending.
88
+
89
+ Requirements: WordPress 6.6+, WooCommerce 9+, 64-bit PHP 8.2+ with GMP and sodium,
90
+ and MySQL 8 or MariaDB 10.5+. Activation creates payment-attempt tables in the
91
+ existing WordPress database. No separate database or application is required.
92
+
93
+ ### Get the installable archive
94
+
95
+ Use `openreceive-wordpress-<version>.zip` from the selected
96
+ [OpenReceive GitHub release](https://github.com/OpenReceive/openreceive/releases)
97
+ when that asset is listed. A GitHub source-code zip is not the plugin archive.
98
+ If the release does not yet provide a built zip, build it on a development
99
+ machine with Node 22+, PHP 8.2+, Composer and WP-CLI:
100
+
101
+ ```sh
102
+ git clone https://github.com/OpenReceive/openreceive.git
103
+ cd openreceive
104
+ git checkout <release-tag>
105
+ npm ci
106
+ npm run build:packages
107
+ composer install --working-dir=packages/php/wordpress
108
+ npm run release:wordpress:build
109
+ ```
110
+
111
+ Upload the resulting `dist/openreceive-wordpress-<version>.zip`. WP-CLI must be
112
+ on `PATH`, or set `OPENRECEIVE_WP_CLI` to the absolute path of its phar. The
113
+ WordPress server needs neither Node nor Composer: dependencies and checkout
114
+ assets are bundled inside the built plugin.
115
+
116
+ ### Configure the wallet
117
+
118
+ Open **WooCommerce → Settings → Payments → OpenReceive**. Enter a receive-only
119
+ NWC code, save, then enable the gateway. Saving verifies receive permissions
120
+ and fails closed on a spend-capable wallet unless the explicit override is set.
121
+ The password fields never show saved credentials. Values are encrypted using
122
+ keys derived from WordPress's authentication keys; re-enter them after rotating
123
+ those keys.
124
+
125
+ For managed deployments, configure `OPENRECEIVE_NWC_URI` in `wp-config.php` from
126
+ your server's secret environment. It takes precedence over the settings field.
127
+ Optional `OPENRECEIVE_LSC_URI_PRIMARY` and `OPENRECEIVE_LSC_URI_BACKUP` constants
128
+ configure swap providers. Never put these values in browser code or logs.
129
+
130
+ ### Checkout and settlement
131
+
132
+ Both WooCommerce checkout blocks and classic checkout redirect to the order-pay
133
+ page. The plugin reads the amount from `WC_Order`, serves the bundled checkout,
134
+ and authorizes the customer through their account, checkout session or an
135
+ expiring signed cookie issued after verifying the order-pay key. Keep that
136
+ order-pay URL available to customers returning to a pending payment or swap
137
+ refund. The plugin verifies that each requested payment hash belongs to the order.
138
+
139
+ Payment attempts persist before invoice instructions appear. Settlement commits
140
+ once in the payment transaction. WooCommerce's `payment_complete` then handles
141
+ status, stock and emails. A durable order marker lets subsequent requests and
142
+ scheduled passes repair an interruption between settlement and order completion.
143
+
144
+ The checkout polling drives opportunistic reconciliation through the PHP
145
+ engine's shared database gate. Action Scheduler adds a recurring one-minute
146
+ safety net. Configure a system cron to run WordPress scheduled work on stores
147
+ with little traffic; no page visits means WP-Cron alone cannot guarantee prompt
148
+ settlement. Optional process-manager commands:
149
+
150
+ ```sh
151
+ wp openreceive doctor
152
+ wp openreceive reconcile
153
+ wp openreceive notifications
154
+ ```
155
+
156
+ The notifications command runs as a separate process. The Doctor panel in the
157
+ gateway settings reports schema, credential presence, scheduling and attention
158
+ orders. A currency without a usable price feed makes the gateway unavailable.
159
+
160
+ ### Refunds and removal
161
+
162
+ The receive-only wallet cannot send merchant refunds. Make those manually from
163
+ your wallet. Payer swap refunds use the configured provider through the same
164
+ authorized order-pay page; enabling LSC payments commits the shop to keeping
165
+ that recovery path available. See [swap refunds](https://openreceive.org/guides/swap-refunds.md).
166
+
167
+ Deactivation preserves payment records. Deleting the plugin drops its two
168
+ tables only if **Remove data on uninstall** was enabled. WooCommerce orders are
169
+ retained.
170
+
171
+ ### Local example
172
+
173
+ The repository's `examples/wordpress` Docker stack builds the plugin and seeds
174
+ WooCommerce from the shared button catalog. Run `npm run demo wordpress` for
175
+ the real-wallet mode, or use its documented `compose.testkit.yml` override for
176
+ a disposable fake-wallet shop. No testkit routes are registered by default.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openreceive-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenReceive
@@ -15,28 +15,28 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 0.4.4
18
+ version: 0.4.6
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - '='
24
24
  - !ruby/object:Gem::Version
25
- version: 0.4.4
25
+ version: 0.4.6
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: openreceive-server
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
30
30
  - - '='
31
31
  - !ruby/object:Gem::Version
32
- version: 0.4.4
32
+ version: 0.4.6
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - '='
38
38
  - !ruby/object:Gem::Version
39
- version: 0.4.4
39
+ version: 0.4.6
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: rails
42
42
  requirement: !ruby/object:Gem::Requirement
@@ -85,16 +85,21 @@ dependencies:
85
85
  - - ">="
86
86
  - !ruby/object:Gem::Version
87
87
  version: '2.1'
88
- description: 'A mountable Rails engine that ships OpenReceive''s receive-only checkout
89
- routes into a Rails app. Engine controllers inherit from the host''s ApplicationController
90
- (keeping its authentication, current_user, and forgery protection; the shared handler
91
- adds JSON-only and same-site gates), delegate to the openreceive-server Service,
92
- and obey host-supplied authorization, amount-resolution, and settlement hooks. The
93
- engine owns the OpenReceivePayment attempt model, its status state machine, settlement
94
- write-once, and reconciliation (OpenReceive.reconcile!, OpenReceive::ReconcileJob,
95
- rake openreceive:reconcile); its install generator emits only the migration, initializer,
96
- and route mount. Receive-only: it never exposes a spend path, and boot fails closed
97
- on spend-capable NWC codes.'
88
+ description: |
89
+ Add Bitcoin Lightning checkout to your Rails app and receive payments directly
90
+ into a wallet you control. Mount the engine, connect a receive-only Nostr Wallet
91
+ Connect (NWC) wallet, and wire up three hooks for authorization, order amounts,
92
+ and fulfillment.
93
+
94
+ Optional swaps let customers pay with USDT, USDC, SOL, and ETH through a
95
+ configured provider; you receive BTC over Lightning in your wallet. Available
96
+ assets and networks depend on the provider.
97
+
98
+ OpenReceive handles invoices, payment attempts, and settlement reconciliation
99
+ using your existing application database. Keep your orders,
100
+ users, prices, and fulfillment in your app, with no separate OpenReceive database,
101
+ Redis, or payment service to deploy. Includes an install generator, PostgreSQL,
102
+ SQLite, and MySQL support, plus an optional wallet-notifications worker.
98
103
  email:
99
104
  - info@openreceive.org
100
105
  executables: []
@@ -136,6 +141,7 @@ files:
136
141
  - skills/integrate-openreceive/references/node.md
137
142
  - skills/integrate-openreceive/references/php.md
138
143
  - skills/integrate-openreceive/references/rails.md
144
+ - skills/integrate-openreceive/references/woocommerce.md
139
145
  homepage: https://openreceive.org
140
146
  licenses:
141
147
  - MIT
@@ -144,7 +150,7 @@ metadata:
144
150
  source_code_uri: https://github.com/openreceive/openreceive
145
151
  changelog_uri: https://github.com/openreceive/openreceive/blob/master/packages/ruby/openreceive-rails/CHANGELOG.md
146
152
  bug_tracker_uri: https://github.com/openreceive/openreceive/issues
147
- documentation_uri: https://rubydoc.info/gems/openreceive-rails
153
+ documentation_uri: https://github.com/openreceive/openreceive/blob/master/docs/guides/quickstart-rails.md
148
154
  rubygems_mfa_required: 'true'
149
155
  rdoc_options: []
150
156
  require_paths:
@@ -162,6 +168,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
162
168
  requirements: []
163
169
  rubygems_version: 3.6.9
164
170
  specification_version: 4
165
- summary: OpenReceive mountable Rails engine with engine-owned payment attempts in
166
- the host database.
171
+ summary: Accept Bitcoin Lightning payments in Rails. Your app, your wallet.
167
172
  test_files: []