@rozoai/intent-pay 0.1.27-beta.5 → 0.1.27
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/README.md +11 -9
- package/build/package.json.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -31,11 +31,11 @@ For a complete list of supported tokens and chains, see the [Supported Tokens an
|
|
|
31
31
|
|
|
32
32
|
You can find the full Rozo Pay documentation at [docs.rozo.ai](https://docs.rozo.ai).
|
|
33
33
|
|
|
34
|
-
For in-repo SDK prop reference, see [RozoPayButton Props](
|
|
34
|
+
For in-repo SDK prop reference, see [RozoPayButton Props](https://github.com/RozoAI/intent-pay/blob/master/docs/ROZO_PAY_BUTTON_PROPS.md).
|
|
35
35
|
|
|
36
|
-
For correct provider setup (Next.js App Router, Vite, SSR patterns), see [Provider Setup Guide](
|
|
36
|
+
For correct provider setup (Next.js App Router, Vite, SSR patterns), see [Provider Setup Guide](https://github.com/RozoAI/intent-pay/blob/master/docs/PROVIDER_SETUP.md).
|
|
37
37
|
|
|
38
|
-
For analytics, telemetry opt-out, and what data is tracked, see [Analytics & Telemetry](
|
|
38
|
+
For analytics, telemetry opt-out, and what data is tracked, see [Analytics & Telemetry](https://github.com/RozoAI/intent-pay/blob/master/docs/ANALYTICS.md).
|
|
39
39
|
|
|
40
40
|
## Examples
|
|
41
41
|
|
|
@@ -74,7 +74,7 @@ Any changes will be reflected on the Pay button in the example app.
|
|
|
74
74
|
|
|
75
75
|
## Contracts
|
|
76
76
|
|
|
77
|
-
Daimo Pay is noncustodial and runs on open-source, audited contracts. See
|
|
77
|
+
Daimo Pay is noncustodial and runs on open-source, audited contracts. See [`packages/contract`](https://github.com/RozoAI/intent-pay/tree/master/packages/contract).
|
|
78
78
|
|
|
79
79
|
Audits:
|
|
80
80
|
|
|
@@ -94,12 +94,14 @@ Rozo Intent Pay SDK is a fork of [Daimo](https://github.com/daimo-eth/pay) devel
|
|
|
94
94
|
|
|
95
95
|
Daimo Pay SDK is a fork of [Connectkit](https://github.com/family/connectkit) developed by [Family](https://family.co). We're grateful to them for making Connectkit fast, beatiful and open-source.
|
|
96
96
|
|
|
97
|
-
## How to release `connectkit` package
|
|
98
|
-
|
|
99
97
|
## Release
|
|
100
98
|
|
|
99
|
+
To publish a new version of `@rozoai/intent-pay`:
|
|
100
|
+
|
|
101
101
|
```sh
|
|
102
|
-
|
|
103
|
-
|
|
102
|
+
# Beta release (bumps prerelease version, publishes with `beta` tag)
|
|
103
|
+
pnpm run publish:beta
|
|
104
104
|
|
|
105
|
-
|
|
105
|
+
# Latest release (bumps stable version, updates CHANGELOG, publishes with `latest` tag)
|
|
106
|
+
pnpm run publish:latest
|
|
107
|
+
```
|
package/build/package.json.js
CHANGED