Skip to content

Commit

Permalink
Merge branch 'develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamj1232 authored Aug 8, 2024
2 parents feeb8da + 43ab961 commit 069b388
Show file tree
Hide file tree
Showing 24 changed files with 223 additions and 924 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ For full documentation, check out the README.md for each package or the [docs pa
- [Frame](packages/frame/README.md)
- [Blocto](packages/blocto/README.md)
- [Particle Network](packages/particle-network/README.md)
- [MetaMask](packages/metamask/README.md)

**Hardware Wallets**

Expand Down
5 changes: 3 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"prettier-plugin-svelte": "^2.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"shiki": "^0.12.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
Expand All @@ -46,14 +45,16 @@
"tslib": "^2.4.1",
"typescript": "^5.4.5",
"unplugin-icons": "^0.14.0",
"vite": "^4.5.3"
"vite": "^4.5.3",
"vite-plugin-node-polyfills": "^0.22.0"
},
"type": "module",
"dependencies": {
"@safe-global/safe-apps-provider": "^0.18.0",
"@safe-global/safe-apps-sdk": "^8.1.0",
"@web3-onboard/bitget": "^2.1.1",
"@web3-onboard/blocto": "^2.1.1",
"@web3-onboard/capsule": "^2.3.0-alpha.1",
"@web3-onboard/cede-store": "^2.3.1",
"@web3-onboard/coinbase": "^2.3.1",
"@web3-onboard/core": "^2.22.1",
Expand Down
14 changes: 7 additions & 7 deletions docs/src/lib/services/onboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const intiOnboard = async (theme) => {
const { default: bloctoModule } = await import('@web3-onboard/blocto')
const { default: venlyModule } = await import('@web3-onboard/venly')
const { default: bitgetModule } = await import('@web3-onboard/bitget')
// // const { default: capsuleModule, Environment } = await import('@web3-onboard/capsule')
const { default: capsuleModule, Environment } = await import('@web3-onboard/capsule')
const { default: particleAuthModule } = await import('@web3-onboard/particle-network')
const INFURA_ID = '8b60d52405694345a99bcb82e722e0af'

Expand Down Expand Up @@ -133,10 +133,10 @@ const intiOnboard = async (theme) => {
environment: 'staging'
})

// // const capsule = capsuleModule({
// // environment: Environment.DEVELOPMENT,
// // apiKey: '992bbd9146d5de8ad0419f141d9a7ca7'
// // })
const capsule = capsuleModule({
environment: Environment.DEVELOPMENT,
apiKey: '992bbd9146d5de8ad0419f141d9a7ca7'
})

const particle = particleAuthModule({
projectId: 'b385ccf0-73c3-485a-9941-159b7855b806',
Expand Down Expand Up @@ -176,8 +176,8 @@ const intiOnboard = async (theme) => {
infinityWallet,
blocto,
particle,
venly
// capsule
venly,
capsule
],
chains: [
{
Expand Down
5 changes: 4 additions & 1 deletion docs/src/routes/docs/[...3]modules/[...1]core/+page.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,7 @@ const sendTransaction = async () => {
console.log(result)
}
```

---

#### disableFontDownload
Expand Down Expand Up @@ -1902,7 +1903,9 @@ export default {
'@web3-onboard/gas',
'@web3-onboard/sequence',
'js-sha3',
'@ethersproject/bignumber'
'@ethersproject/bignumber',
'@safe-global/safe-apps-sdk',
'@safe-global/safe-apps-provider'
],
esbuildOptions: {
// Node.js global to browser globalThis
Expand Down
Loading

0 comments on commit 069b388

Please sign in to comment.