Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -311,3 +311,6 @@ VITE_FEATURE_KATANA=true
VITE_FEATURE_YIELD_XYZ=false
VITE_YIELD_XYZ_API_KEY=06903960-e442-4870-81eb-03ff3ad4c035
VITE_FEATURE_YIELD_MULTI_ACCOUNT=false

# Dynamic EVM Chains Feature Flag
VITE_FEATURE_DYNAMIC_EVM_CHAINS=true
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ nodeLinker: node-modules

npmAuthToken: "${NPM_AUTH-fallback}"

npmRegistryServer: "https://registry.npmjs.org"
npmRegistryServer: "http://127.0.0.1:4873"

plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
Expand Down
6 changes: 6 additions & 0 deletions headers/csps/chains/dynamicEvm.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import type { Csp } from '../../types'

export const csp: Csp = {
'img-src': ['https://icons.llamao.fi/', 'https://raw.githubusercontent.com/trustwallet/assets/'],
'connect-src': ['https://evm-rpc.sei-apis.com/', 'https://forno.celo.org/'],
}
2 changes: 2 additions & 0 deletions headers/csps/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { csp as bitcoincash } from './chains/bitcoincash'
import { csp as bnbsmartchain } from './chains/bnbsmartchain'
import { csp as cosmos } from './chains/cosmos'
import { csp as dogecoin } from './chains/dogecoin'
import { csp as dynamicEvm } from './chains/dynamicEvm'
import { csp as ethereum } from './chains/ethereum'
import { csp as gnosis } from './chains/gnosis'
import { csp as hyperevm } from './chains/hyperevm'
Expand Down Expand Up @@ -105,6 +106,7 @@ export const csps = [
bnbsmartchain,
cosmos,
dogecoin,
dynamicEvm,
ethereum,
gnosis,
hyperevm,
Expand Down
36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,24 +104,24 @@
"@shapeshiftoss/chain-adapters": "workspace:^",
"@shapeshiftoss/contracts": "workspace:^",
"@shapeshiftoss/errors": "workspace:^",
"@shapeshiftoss/hdwallet-coinbase": "1.62.39",
"@shapeshiftoss/hdwallet-core": "1.62.39",
"@shapeshiftoss/hdwallet-gridplus": "1.62.39",
"@shapeshiftoss/hdwallet-keepkey": "1.62.39",
"@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.39",
"@shapeshiftoss/hdwallet-keplr": "1.62.39",
"@shapeshiftoss/hdwallet-ledger": "1.62.39",
"@shapeshiftoss/hdwallet-ledger-webhid": "1.62.39",
"@shapeshiftoss/hdwallet-ledger-webusb": "1.62.39",
"@shapeshiftoss/hdwallet-metamask-multichain": "1.62.39",
"@shapeshiftoss/hdwallet-native": "1.62.39",
"@shapeshiftoss/hdwallet-native-vault": "1.62.39",
"@shapeshiftoss/hdwallet-phantom": "1.62.39",
"@shapeshiftoss/hdwallet-trezor": "1.62.39",
"@shapeshiftoss/hdwallet-trezor-connect": "1.62.39",
"@shapeshiftoss/hdwallet-vultisig": "1.62.39",
"@shapeshiftoss/hdwallet-walletconnect": "1.62.39",
"@shapeshiftoss/hdwallet-walletconnectv2": "1.62.39",
"@shapeshiftoss/hdwallet-coinbase": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-core": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-gridplus": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-keepkey": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-keplr": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-ledger": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-ledger-webhid": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-ledger-webusb": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-metamask-multichain": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-native": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-native-vault": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-phantom": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-trezor": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-trezor-connect": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-vultisig": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-walletconnect": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/hdwallet-walletconnectv2": "1.62.40-evm-multi-chain.0",
"@shapeshiftoss/swapper": "workspace:^",
"@shapeshiftoss/types": "workspace:^",
"@shapeshiftoss/unchained-client": "workspace:^",
Expand Down
Loading
Loading