Skip to content

Commit 069b388

Browse files
authored
Merge branch 'develop' into develop
2 parents feeb8da + 43ab961 commit 069b388

File tree

24 files changed

+223
-924
lines changed

24 files changed

+223
-924
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ For full documentation, check out the README.md for each package or the [docs pa
127127
- [Frame](packages/frame/README.md)
128128
- [Blocto](packages/blocto/README.md)
129129
- [Particle Network](packages/particle-network/README.md)
130+
- [MetaMask](packages/metamask/README.md)
130131

131132
**Hardware Wallets**
132133

docs/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"prettier-plugin-svelte": "^2.8.1",
3737
"react": "^18.2.0",
3838
"react-dom": "^18.2.0",
39-
"rollup-plugin-polyfill-node": "^0.13.0",
4039
"shiki": "^0.12.0",
4140
"stream-browserify": "^3.0.0",
4241
"stream-http": "^3.2.0",
@@ -46,14 +45,16 @@
4645
"tslib": "^2.4.1",
4746
"typescript": "^5.4.5",
4847
"unplugin-icons": "^0.14.0",
49-
"vite": "^4.5.3"
48+
"vite": "^4.5.3",
49+
"vite-plugin-node-polyfills": "^0.22.0"
5050
},
5151
"type": "module",
5252
"dependencies": {
5353
"@safe-global/safe-apps-provider": "^0.18.0",
5454
"@safe-global/safe-apps-sdk": "^8.1.0",
5555
"@web3-onboard/bitget": "^2.1.1",
5656
"@web3-onboard/blocto": "^2.1.1",
57+
"@web3-onboard/capsule": "^2.3.0-alpha.1",
5758
"@web3-onboard/cede-store": "^2.3.1",
5859
"@web3-onboard/coinbase": "^2.3.1",
5960
"@web3-onboard/core": "^2.22.1",

docs/src/lib/services/onboard.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const intiOnboard = async (theme) => {
5959
const { default: bloctoModule } = await import('@web3-onboard/blocto')
6060
const { default: venlyModule } = await import('@web3-onboard/venly')
6161
const { default: bitgetModule } = await import('@web3-onboard/bitget')
62-
// // const { default: capsuleModule, Environment } = await import('@web3-onboard/capsule')
62+
const { default: capsuleModule, Environment } = await import('@web3-onboard/capsule')
6363
const { default: particleAuthModule } = await import('@web3-onboard/particle-network')
6464
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'
6565

@@ -133,10 +133,10 @@ const intiOnboard = async (theme) => {
133133
environment: 'staging'
134134
})
135135

136-
// // const capsule = capsuleModule({
137-
// // environment: Environment.DEVELOPMENT,
138-
// // apiKey: '992bbd9146d5de8ad0419f141d9a7ca7'
139-
// // })
136+
const capsule = capsuleModule({
137+
environment: Environment.DEVELOPMENT,
138+
apiKey: '992bbd9146d5de8ad0419f141d9a7ca7'
139+
})
140140

141141
const particle = particleAuthModule({
142142
projectId: 'b385ccf0-73c3-485a-9941-159b7855b806',
@@ -176,8 +176,8 @@ const intiOnboard = async (theme) => {
176176
infinityWallet,
177177
blocto,
178178
particle,
179-
venly
180-
// capsule
179+
venly,
180+
capsule
181181
],
182182
chains: [
183183
{

docs/src/routes/docs/[...3]modules/[...1]core/+page.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ const sendTransaction = async () => {
441441
console.log(result)
442442
}
443443
```
444+
444445
---
445446

446447
#### disableFontDownload
@@ -1902,7 +1903,9 @@ export default {
19021903
'@web3-onboard/gas',
19031904
'@web3-onboard/sequence',
19041905
'js-sha3',
1905-
'@ethersproject/bignumber'
1906+
'@ethersproject/bignumber',
1907+
'@safe-global/safe-apps-sdk',
1908+
'@safe-global/safe-apps-provider'
19061909
],
19071910
esbuildOptions: {
19081911
// Node.js global to browser globalThis

0 commit comments

Comments
 (0)