@siglume/direct-request-payment 0.4.9 → 0.4.11
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.
- package/CHANGELOG.md +24 -0
- package/README.md +14 -5
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/docs/announcement-ja.md +6 -4
- package/docs/api-reference.md +14 -5
- package/docs/merchant-quickstart.md +6 -0
- package/docs/metered-statements.md +2 -2
- package/docs/pricing.md +14 -7
- package/package.json +1 -1
package/docs/pricing.md
CHANGED
|
@@ -24,13 +24,18 @@ percentage (the payment fee column below) is identical in both currencies. Only
|
|
|
24
24
|
the flat amounts — the monthly base fee and the per-payment minimum fee — are
|
|
25
25
|
quoted per currency.
|
|
26
26
|
|
|
27
|
+
Current public beta settlement is on **Polygon PoS only**. The public SDK does
|
|
28
|
+
not expose chain selection, cross-chain payment, multiple merchant settlement
|
|
29
|
+
wallets, per-payment settlement-wallet overrides, or split / multi-wallet
|
|
30
|
+
charging.
|
|
31
|
+
|
|
27
32
|
## Pricing Table
|
|
28
33
|
|
|
29
|
-
|
|
|
34
|
+
| Public one-time payment amount | Applied automatically | What you select | Fee | Settlement |
|
|
30
35
|
| --- | --- | --- | --- | --- |
|
|
31
|
-
|
|
|
32
|
-
| JPY 50-500 /
|
|
33
|
-
|
|
|
36
|
+
| JPY 501+ / USD 3.01+ | Standard Payment | Select one Standard plan: Launch, Starter, Growth, or Pro | Launch: JPY 0 / USD 0 monthly, 1.8%; Starter: JPY 980 / USD 6 monthly, 1.0%; Growth: JPY 2,980 / USD 18 monthly, 0.7%; Pro: JPY 9,800 / USD 60 monthly, 0.5%. Minimum JPY 30 / USD 0.20 per payment. | Settled on-chain immediately after the payment confirms |
|
|
37
|
+
| JPY 50-500 / USD 0.31-3.00 | Micro Payment | Applied automatically by amount | USD 0.01 / Tx, about JPY 2 | Aggregated and settled **weekly** (see [Settlement schedule](#settlement-schedule)) |
|
|
38
|
+
| JPY 1-49 / USD 0.01-0.30 | Nano Payment | Applied automatically by amount | USD 0.001 / usage, about JPY 0.2 | Aggregated and settled **monthly** (see [Settlement schedule](#settlement-schedule)) |
|
|
34
39
|
|
|
35
40
|
Standard Payment settles per payment. Micro Payment and Nano Payment are
|
|
36
41
|
aggregated and settled in account-assigned weekly / monthly slots - see
|
|
@@ -46,7 +51,7 @@ USD 3-and-under items for a product that cannot accept Micro / Nano delayed
|
|
|
46
51
|
aggregated settlement. For public one-time Direct Payment / Hosted Checkout,
|
|
47
52
|
`amount_minor` is a positive integer in minor currency units. That means the
|
|
48
53
|
smallest public one-time checkout amount is JPY 1 or USD 0.01. Nano Payment on
|
|
49
|
-
this public path therefore means JPY 1-49
|
|
54
|
+
this public path therefore means JPY 1-49 / USD 0.01-0.30. Sub-minor Nano
|
|
50
55
|
protocol fees are settlement-accounting amounts, not externally submitted
|
|
51
56
|
one-time item prices.
|
|
52
57
|
|
|
@@ -62,8 +67,10 @@ If no paid plan is selected during merchant setup, the merchant account uses the
|
|
|
62
67
|
Launch plan. A merchant billing mandate is still required before accepting
|
|
63
68
|
payments so Siglume can collect the monthly base fee automatically.
|
|
64
69
|
|
|
65
|
-
|
|
66
|
-
amount for each payment.
|
|
70
|
+
Standard Payment fees are deducted at settlement, so the merchant receives the
|
|
71
|
+
net amount for each Standard payment. Micro / Nano protocol fees are different:
|
|
72
|
+
they are added to the buyer debit, are reported as `protocol_fee_minor`, and are
|
|
73
|
+
not provider revenue. Monthly base fees are collected separately through the
|
|
67
74
|
merchant billing mandate.
|
|
68
75
|
|
|
69
76
|
The same Standard Payment percentage schedule applies in JPY and USD. For
|