@pear-protocol/symmio-client 0.3.16 → 0.3.17
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 +5 -5
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/react/index.d.mts +57 -18
- package/dist/react/index.d.ts +57 -18
- package/dist/react/index.js +61 -13
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +61 -14
- package/dist/react/index.mjs.map +1 -1
- package/dist/react/provider.js +1 -0
- package/dist/react/provider.js.map +1 -1
- package/dist/react/provider.mjs +1 -0
- package/dist/react/provider.mjs.map +1 -1
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Pear Protocol's standalone SDK for **Symmio** — account management via MultiAc
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
|
|
10
|
+
bun add @pear-protocol/symmio-client viem
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
`viem` is a peer dependency and must be installed alongside `@pear-protocol/symmio-client`.
|
|
@@ -265,13 +265,13 @@ This package uses Changesets for versioning and npm publishing.
|
|
|
265
265
|
|
|
266
266
|
```bash
|
|
267
267
|
# create a release note for your change
|
|
268
|
-
|
|
268
|
+
bun run changeset
|
|
269
269
|
|
|
270
|
-
# apply pending version bumps and refresh
|
|
271
|
-
|
|
270
|
+
# apply pending version bumps and refresh bun.lock
|
|
271
|
+
bun run version-packages
|
|
272
272
|
|
|
273
273
|
# publish the package to npm
|
|
274
|
-
|
|
274
|
+
bun run release
|
|
275
275
|
```
|
|
276
276
|
|
|
277
277
|
The GitHub Actions release workflow expects an `NPM_TOKEN` repository secret with publish access to `@pear-protocol/symmio-client`.
|
package/dist/index.js
CHANGED
|
@@ -23282,6 +23282,7 @@ var SymmioSDKError = class extends Error {
|
|
|
23282
23282
|
this.code = code;
|
|
23283
23283
|
this.name = "SymmioSDKError";
|
|
23284
23284
|
}
|
|
23285
|
+
code;
|
|
23285
23286
|
};
|
|
23286
23287
|
function validateAddress(address, name) {
|
|
23287
23288
|
if (!viem.isAddress(address)) {
|