@reown/appkit-cli
Advanced tools
Comparing version 1.6.4-rc.0 to 1.6.4-rc.1.0
# @reown/appkit-cli | ||
## 1.6.4-rc.0 | ||
## 1.6.4-rc.1.0 | ||
@@ -16,4 +16,2 @@ ### Patch Changes | ||
- rc-0 release | ||
- [#3568](https://github.com/reown-com/appkit/pull/3568) [`87029c0`](https://github.com/reown-com/appkit/commit/87029c0662567dd658f0e204a07eb67f08e3c813) Thanks [@tomiir](https://github.com/tomiir)! - Fixes issue where only wallets from the initially active chain ID would be fetched. Re-fetches wallets from API when network changes. | ||
@@ -23,4 +21,41 @@ | ||
- [#3583](https://github.com/reown-com/appkit/pull/3583) [`34ed47e`](https://github.com/reown-com/appkit/commit/34ed47e9542b183463777caf096fd44ea8eb0816) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix an issue where swap button shows an infinite spinner | ||
- [#3573](https://github.com/reown-com/appkit/pull/3573) [`d9a96a5`](https://github.com/reown-com/appkit/commit/d9a96a5bfd8e358e73c8b4cfb9efb09efcbe8f1b) Thanks [@magiziz](https://github.com/magiziz)! - Added a new `required` option to SIWE/SIWX. This option determines whether the wallet stays connected when the user denies the signature request. If set to `true` it will disconnect the wallet and close the modal. If set to `false` it will close the modal without disconnecting the wallet. | ||
**Example usage** | ||
```ts | ||
import { createSIWEConfig } from '@reown/appkit-siwe' | ||
import type { SIWEVerifyMessageArgs, SIWECreateMessageArgs } from '@reown/appkit-siwe' | ||
export const siweConfig = createSIWEConfig({ | ||
required: false, // Optional - defaults to true | ||
getMessageParams: async () => { | ||
// Return message parameters | ||
}, | ||
createMessage: ({ address, ...args }: SIWECreateMessageArgs) => { | ||
// Return formatted message | ||
}, | ||
getNonce: async () => { | ||
// Return nonce | ||
}, | ||
getSession: async () => { | ||
// Return session | ||
}, | ||
verifyMessage: async ({ message, signature }: SIWEVerifyMessageArgs) => { | ||
// Verify message | ||
}, | ||
signOut: async () => { | ||
// Sign out | ||
} | ||
}) | ||
``` | ||
- [#3586](https://github.com/reown-com/appkit/pull/3586) [`d5b811c`](https://github.com/reown-com/appkit/commit/d5b811c666e41846fd5798116e7c93606b4b992f) Thanks [@enesozturk](https://github.com/enesozturk)! - Adds add/remove adapter methods to appkit client, moves active connector state to connected connector | ||
- [#3565](https://github.com/reown-com/appkit/pull/3565) [`93cee5c`](https://github.com/reown-com/appkit/commit/93cee5c44e6f30f3594bc7c5a4029dc1f05503f1) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix an issue where users with an ENS couldn't copy their address. | ||
- [#3584](https://github.com/reown-com/appkit/pull/3584) [`7703d40`](https://github.com/reown-com/appkit/commit/7703d409b6107c7fd61228fc1f1576d1b8503ce5) Thanks [@tomiir](https://github.com/tomiir)! - Fixes issue where status would not be set for non-connected namespaces. Make syncExistingConnection call syncNamespaceConnection for non-connected namespaces as well, resulting in status being set correctly' | ||
- [#3554](https://github.com/reown-com/appkit/pull/3554) [`7a7df99`](https://github.com/reown-com/appkit/commit/7a7df99625721759f2b426e6d8c3d1b13749a2cb) Thanks [@svenvoskamp](https://github.com/svenvoskamp)! - Fix farcaster issue, so user can see their correct username in account view | ||
@@ -27,0 +62,0 @@ |
{ | ||
"name": "@reown/appkit-cli", | ||
"version": "1.6.4-rc.0", | ||
"version": "1.6.4-rc.1.0", | ||
"description": "Reown AppKit CLI", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
42562