@rozoai/intent-pay 0.0.1 → 0.0.8
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 +24 -0
- package/build/index.js +5 -4
- package/build/index.js.map +1 -1
- package/package.json +10 -9
- package/src/index.ts +38 -0
package/README.md
CHANGED
|
@@ -75,3 +75,27 @@ See [LICENSE](https://github.com/daimo-eth/pay/blob/master/packages/connectkit/L
|
|
|
75
75
|
Rozo Intent Pay SDK is a fork of [Daimo](https://github.com/daimo-eth/pay) developed by [Daimo](https://daimo.com). We're grateful to them for making cross chain payment fast, simple and open-source.
|
|
76
76
|
|
|
77
77
|
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.
|
|
78
|
+
|
|
79
|
+
# How to release `connectkit` package
|
|
80
|
+
|
|
81
|
+
## Setup
|
|
82
|
+
|
|
83
|
+
Make sure `pnpm` is installed.
|
|
84
|
+
|
|
85
|
+
```sh
|
|
86
|
+
pnpm -v
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
If not, install it.
|
|
90
|
+
|
|
91
|
+
```sh
|
|
92
|
+
npm install -g pnpm
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## Release
|
|
96
|
+
|
|
97
|
+
```sh
|
|
98
|
+
pnpm run release
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
Choose the version on the prompt.
|
package/build/index.js
CHANGED
|
@@ -21,10 +21,10 @@ import { WalletSignTransactionError, WalletSendTransactionError } from '@solana/
|
|
|
21
21
|
import { VersionedTransaction } from '@solana/web3.js';
|
|
22
22
|
import { normalize } from 'viem/ens';
|
|
23
23
|
|
|
24
|
-
var name = "@
|
|
25
|
-
var version = "0.0.
|
|
24
|
+
var name = "@rozoai/intent-pay";
|
|
25
|
+
var version = "0.0.8";
|
|
26
26
|
var author = "Daimo";
|
|
27
|
-
var homepage = "https://
|
|
27
|
+
var homepage = "https://github.com/RozoAI/intent-pay";
|
|
28
28
|
var license = "BSD-2-Clause license";
|
|
29
29
|
var description = "Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.";
|
|
30
30
|
var main = "./src/index.ts";
|
|
@@ -45,7 +45,8 @@ var scripts = {
|
|
|
45
45
|
start: "rollup --config rollup.config.js -w",
|
|
46
46
|
dev: "rollup --config rollup.config.js -w",
|
|
47
47
|
build: "rollup --config rollup.config.js",
|
|
48
|
-
lint: "eslint 'src/**/*.{js,jsx,ts,tsx}' --max-warnings=0"
|
|
48
|
+
lint: "eslint 'src/**/*.{js,jsx,ts,tsx}' --max-warnings=0",
|
|
49
|
+
release: "bumpp"
|
|
49
50
|
};
|
|
50
51
|
var keywords = [
|
|
51
52
|
"ens",
|