Skip to content

Commit e691a31

Browse files
authored
Merge branch 'master' into 3627-remove-isdev-from-exposed-interface
2 parents 8e513a5 + c07c1bd commit e691a31

File tree

23 files changed

+423
-429
lines changed

23 files changed

+423
-429
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![npm version](https://badge.fury.io/js/@0xsequence%2Fkit.svg)](https://badge.fury.io/js/@0xsequence%2Fkit)
88

9-
Sequence Kit 🧰 is a library enabling developers to easily integrate web3 wallets in their app. It is based on [wagmi](https://wagmi.sh/) and supports all wagmi features.
9+
Easily integrate web3 wallets in your app with Sequence Kit 🧰. Based on [wagmi](https://wagmi.sh/), and supporting all wagmi features.
1010

1111
- Connect via social logins eg: facebook, google, discord, etc...! 🔐🪪
1212
- Connect to popular web3 wallets eg: walletConnect, metamask ! 🦊 ⛓️

examples/components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"typescript": "^5.6.3"
99
},
1010
"peerDependencies": {
11-
"@0xsequence/design-system": ">= 1.7.8",
12-
"@0xsequence/network": ">=2.0.12",
11+
"@0xsequence/design-system": "*",
12+
"@0xsequence/network": "*",
1313
"wagmi": "*"
1414
},
1515
"private": true

examples/next/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
"@0xsequence/kit-checkout": "workspace:*",
1616
"@0xsequence/kit-wallet": "workspace:*",
1717
"@0xsequence/kit-example-shared-components": "workspace:*",
18-
"@0xsequence/network": "2.0.12",
18+
"@0xsequence/network": "2.1.3",
19+
"@0xsequence/waas": "2.1.3",
1920
"@tanstack/react-query": "^5.37.1",
2021
"next": "14.2.3",
2122
"react": "^18.3.1",

examples/next/src/config.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,13 @@ export const kitConfig: KitConfig = {
5050
export const config = createConfig('waas', {
5151
...kitConfig,
5252
appName: 'Kit Demo',
53-
chainIds: [ChainId.ARBITRUM_NOVA, ChainId.ARBITRUM_SEPOLIA, ChainId.POLYGON],
53+
chainIds: [
54+
ChainId.ARBITRUM_NOVA,
55+
ChainId.ARBITRUM_SEPOLIA,
56+
ChainId.POLYGON,
57+
ChainId.IMMUTABLE_ZKEVM,
58+
ChainId.IMMUTABLE_ZKEVM_TESTNET
59+
],
5460
defaultChainId: ChainId.ARBITRUM_NOVA,
5561

5662
// Waas specific config options

examples/react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"@0xsequence/kit-wallet": "workspace:*",
1818
"@0xsequence/kit-example-shared-components": "workspace:*",
1919
"@tanstack/react-query": "^5.37.1",
20-
"@0xsequence/network": "2.0.12",
20+
"@0xsequence/network": "2.1.3",
21+
"@0xsequence/waas": "2.1.3",
2122
"framer-motion": "^8.5.2",
2223
"react": "^18.3.1",
2324
"react-dom": "^18.3.1",

examples/react/src/config.ts

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,13 @@ export const config =
5757
? createConfig('waas', {
5858
...kitConfig,
5959
appName: 'Kit Demo',
60-
chainIds: [ChainId.ARBITRUM_NOVA, ChainId.ARBITRUM_SEPOLIA, ChainId.POLYGON],
60+
chainIds: [
61+
ChainId.ARBITRUM_NOVA,
62+
ChainId.ARBITRUM_SEPOLIA,
63+
ChainId.POLYGON,
64+
ChainId.IMMUTABLE_ZKEVM,
65+
ChainId.IMMUTABLE_ZKEVM_TESTNET
66+
],
6167
defaultChainId: ChainId.ARBITRUM_NOVA,
6268
waasConfigKey: isDebugMode
6369
? 'eyJwcm9qZWN0SWQiOjY5NCwicnBjU2VydmVyIjoiaHR0cHM6Ly9kZXYtd2Fhcy5zZXF1ZW5jZS5hcHAiLCJlbWFpbFJlZ2lvbiI6ImNhLWNlbnRyYWwtMSIsImVtYWlsQ2xpZW50SWQiOiI1NGF0bjV1cGk2M3FjNTlhMWVtM3ZiaHJzbiJ9'
@@ -80,7 +86,13 @@ export const config =
8086
: createConfig('universal', {
8187
...kitConfig,
8288
appName: 'Kit Demo',
83-
chainIds: [ChainId.ARBITRUM_NOVA, ChainId.ARBITRUM_SEPOLIA, ChainId.POLYGON],
89+
chainIds: [
90+
ChainId.ARBITRUM_NOVA,
91+
ChainId.ARBITRUM_SEPOLIA,
92+
ChainId.POLYGON,
93+
ChainId.IMMUTABLE_ZKEVM,
94+
ChainId.IMMUTABLE_ZKEVM_TESTNET
95+
],
8496
defaultChainId: ChainId.ARBITRUM_NOVA,
8597

8698
walletConnect: {

packages/checkout/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @0xsequence/kit-connectors
22

3+
## 4.4.5
4+
5+
### Patch Changes
6+
7+
- Fixing waas time drift
8+
9+
- Updated dependencies []:
10+
- @0xsequence/kit@4.4.5
11+
312
## 4.4.4
413

514
### Patch Changes

packages/checkout/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@0xsequence/kit-checkout",
3-
"version": "4.4.4",
3+
"version": "4.4.5",
44
"description": "Checkout UI for Sequence Kit",
55
"repository": "https://github.com/0xsequence/kit/tree/master/packages/checkout",
66
"author": "Horizon Blockchain Games",
@@ -36,14 +36,14 @@
3636
"timeago-react": "^3.0.6"
3737
},
3838
"peerDependencies": {
39-
"0xsequence": ">= 2.0.20",
40-
"@0xsequence/api": ">= 2.0.20",
39+
"0xsequence": ">= 2.1.3",
40+
"@0xsequence/api": ">= 2.1.3",
4141
"@0xsequence/design-system": ">= 1.7.8",
42-
"@0xsequence/indexer": ">= 2.0.20",
43-
"@0xsequence/metadata": ">= 2.0.20",
44-
"@0xsequence/network": ">= 2.0.20",
42+
"@0xsequence/indexer": ">= 2.1.3",
43+
"@0xsequence/metadata": ">= 2.1.3",
44+
"@0xsequence/network": ">= 2.1.3",
4545
"@0xsequence/kit": "workspace:*",
46-
"@0xsequence/waas": ">= 2.0.20",
46+
"@0xsequence/waas": ">= 2.1.3",
4747
"@tanstack/react-query": ">= 5.0.0",
4848
"ethers": ">= 6.13.0",
4949
"framer-motion": ">= 8.5.2",

packages/checkout/src/contexts/AddFundsModal.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ import { createGenericContext } from './genericContext'
44

55
export interface AddFundsSettings {
66
walletAddress: string | Hex
7+
fiatAmount?: string
78
fiatCurrency?: string
89
defaultFiatAmount?: string
910
defaultCryptoCurrency?: string
11+
cryptoCurrencyList?: string
1012
networks?: string
1113
onClose?: () => void
1214
}

packages/checkout/src/shared/components/NavigationHeader.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ export const NavigationHeader = ({ secondaryText, primaryText, disableBack = fal
2121
<Box
2222
background="backgroundPrimary"
2323
zIndex="20"
24-
position="fixed"
2524
width="full"
2625
flexDirection="row"
2726
alignItems="center"

0 commit comments

Comments
 (0)