Skip to content

Commit

Permalink
Merge pull request #1960 from blocknative/release/2.24.14
Browse files Browse the repository at this point in the history
Release - 2.24.14
  • Loading branch information
Adamj1232 authored Oct 17, 2023
2 parents ca4ebf0 + 7458803 commit 48d4e82
Show file tree
Hide file tree
Showing 65 changed files with 4,421 additions and 3,960 deletions.
36 changes: 36 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,18 @@ jobs:
working_directory: ~/web3-onboard-monorepo/packages/venly
steps:
- node-build-steps
build-bitget:
docker:
- image: cimg/node:16.13.1
working_directory: ~/web3-onboard-monorepo/packages/bitget
steps:
- node-build-steps
build-bitkeep:
docker:
- image: cimg/node:16.13.1
working_directory: ~/web3-onboard-monorepo/packages/bitkeep
steps:
- node-build-steps

# Build staging/Alpha releases
build-staging-core:
Expand Down Expand Up @@ -661,6 +673,18 @@ jobs:
working_directory: ~/web3-onboard-monorepo/packages/venly
steps:
- node-staging-build-steps
build-staging-bitget:
docker:
- image: cimg/node:16.13.1
working_directory: ~/web3-onboard-monorepo/packages/bitget
steps:
- node-staging-build-steps
build-staging-bitkeep:
docker:
- image: cimg/node:16.13.1
working_directory: ~/web3-onboard-monorepo/packages/bitkeep
steps:
- node-staging-build-steps

workflows:
version: 2
Expand Down Expand Up @@ -911,3 +935,15 @@ workflows:
<<: *deploy_production_filters
- build-staging-venly:
<<: *deploy_staging_filters
bitget:
jobs:
- build-bitget:
<<: *deploy_production_filters
- build-staging-bitget:
<<: *deploy_staging_filters
bitkeep:
jobs:
- build-bitkeep:
<<: *deploy_production_filters
- build-staging-bitkeep:
<<: *deploy_staging_filters
5 changes: 3 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
"@safe-global/safe-apps-provider": "^0.18.0",
"@safe-global/safe-apps-sdk": "^8.1.0",
"@web3-onboard/arcana-auth": "^2.0.0",
"@web3-onboard/bitget": "^2.0.0-alpha.1",
"@web3-onboard/blocto": "^2.0.0",
"@web3-onboard/cede-store": "^2.1.0",
"@web3-onboard/coinbase": "^2.2.5",
Expand All @@ -74,13 +75,13 @@
"@web3-onboard/portis": "^2.1.7",
"@web3-onboard/sequence": "^2.0.8",
"@web3-onboard/taho": "^2.0.5",
"@web3-onboard/torus": "^2.2.6-alpha.1",
"@web3-onboard/torus": "^2.2.6",
"@web3-onboard/transaction-preview": "^2.0.8",
"@web3-onboard/trezor": "^2.4.3",
"@web3-onboard/trust": "^2.0.4",
"@web3-onboard/uauth": "^2.1.1",
"@web3-onboard/venly": "^2.0.0",
"@web3-onboard/walletconnect": "^2.4.6",
"@web3-onboard/walletconnect": "^2.5.0-alpha.1",
"@web3-onboard/web3auth": "^2.2.3",
"@web3-onboard/xdefi": "^2.0.4",
"@web3-onboard/zeal": "^2.0.4",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/lib/components/gas/GasCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
export { className as class }
export let backgroundStyle = ''
// Holds refference to the background element node for animation
// Holds reference to the background element node for animation
export let cardBg = null
const cardColors: Record<number, string> = {
Expand Down
12 changes: 8 additions & 4 deletions docs/src/lib/services/onboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const intiOnboard = async (theme) => {
const { default: arcanaModule } = await import('@web3-onboard/arcana-auth')
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 INFURA_ID = '8b60d52405694345a99bcb82e722e0af'

const injected = injectedModule()
Expand All @@ -66,7 +67,8 @@ const intiOnboard = async (theme) => {
const coinbase = coinbaseModule()
const dcent = dcentModule()
const walletConnect = walletConnectModule({
projectId: 'f6bd6e2911b56f5ac3bc8b2d0e2d7ad5'
projectId: 'f6bd6e2911b56f5ac3bc8b2d0e2d7ad5',
dappUrl: 'https://onboard.blocknative.com/'
})
const ledger = ledgerModule({
walletConnectVersion: 2,
Expand All @@ -83,6 +85,7 @@ const intiOnboard = async (theme) => {
const trust = trustModule()
const xdefi = xdefiModule()
const cede = cedeModule()
const bitget = bitgetModule()

const portis = portisModule({
apiKey: 'b2b7586f-2b1e-4c30-a7fb-c2d1533b153b'
Expand Down Expand Up @@ -123,16 +126,17 @@ const intiOnboard = async (theme) => {
wallets: [
injected,
walletConnect,
arcanaWallet,
coinbase,
ledger,
trezor,
trust,
gnosis,
uauth,
taho,
cede,
bitget,
xdefi,
uauth,
cede,
arcanaWallet,
torus,
sequence,
dcent,
Expand Down
154 changes: 0 additions & 154 deletions docs/src/routes/docs/[...4]wallets/[...26]walletconnect/+page.md

This file was deleted.

Loading

0 comments on commit 48d4e82

Please sign in to comment.