Skip to content

Commit

Permalink
changed wallet factory and updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesha22 committed Aug 6, 2024
1 parent ae36fb8 commit 6d0afec
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 36 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Changelog
## [1.3.0] - 2024-08-08
### Breaking Changes
- Changed to a new wallet factory contract address
### New
- Added support for XDC Mainnet

## [1.1.2] - 2024-07-10
### New
- Added `SessionKeyValidator` module for ERC20 SessionKeyValidator.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@etherspot/modular-sdk",
"version": "1.1.2",
"version": "1.2.0",
"description": "Etherspot Modular SDK - build with ERC-7579 smart accounts modules",
"keywords": [
"ether",
Expand Down
79 changes: 46 additions & 33 deletions src/sdk/network/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@ export enum NetworkNames {
Ancient8 = 'ancient8',
Amoy = 'amoy',
XDCTestnet = 'xdcTestnet',
XDCMainnet = 'xdcMainnet'
}

export const SupportedNetworks =
[1, 10, 14, 30, 31, 51, 56, 97, 100, 114, 122, 123, 137, 2357, 5000, 5003, 8453, 10200, 42161, 43113, 43114, 59140, 59144, 80002, 84532, 421614, 534351, 534352, 11155111, 11155420, 28122024, 888888888]
[1, 10, 14, 30, 31, 50, 51, 56, 97, 100, 114, 122, 123, 137, 2357, 5000, 5003, 8453, 10200, 42161, 43113, 43114, 59140, 59144, 80002, 84532, 421614, 534351, 534352, 11155111, 11155420, 28122024, 888888888]

export const NETWORK_NAME_TO_CHAIN_ID: {
[key: string]: number;
Expand Down Expand Up @@ -73,6 +74,7 @@ export const NETWORK_NAME_TO_CHAIN_ID: {
[NetworkNames.Ancient8]: 888888888,
[NetworkNames.Amoy]: 80002,
[NetworkNames.XDCTestnet]: 51,
[NetworkNames.XDCMainnet]: 50,
};

export const onRamperAllNetworks = ['OPTIMISM', 'POLYGON', 'ARBITRUM', 'FUSE', 'GNOSIS', 'ETHEREUM']
Expand All @@ -85,7 +87,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/84532',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -96,7 +98,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/11155111',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '0x90A5d7496C8D83f6389E60C0c26ea3928d9bb891',
Expand All @@ -107,7 +109,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/10',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -118,7 +120,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/137',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -129,7 +131,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/42161',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -140,7 +142,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/1',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -151,7 +153,7 @@ export const Networks: {
bundler: '',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -162,7 +164,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/122',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -173,7 +175,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/123',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -184,7 +186,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/100',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -195,7 +197,7 @@ export const Networks: {
bundler: '',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -206,7 +208,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/30',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -217,7 +219,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/31',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -228,7 +230,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/5000',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -239,7 +241,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/5003',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -250,7 +252,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/43114',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -261,7 +263,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/8453',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -272,7 +274,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/56',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -283,7 +285,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/97',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -294,7 +296,7 @@ export const Networks: {
bundler: '',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -305,7 +307,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/59144',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -316,7 +318,7 @@ export const Networks: {
bundler: '',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -327,7 +329,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/114',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -338,7 +340,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/14',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -349,7 +351,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/534351',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -360,7 +362,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/534352',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -371,7 +373,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/11155420',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -382,7 +384,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/28122024',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -393,7 +395,7 @@ export const Networks: {
bundler: 'https://rpc.etherspot.io/v2/888888888',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -404,7 +406,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/80002',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -415,7 +417,7 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/421614',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xf80D543Ca10B48AF07c65Ff508605c1737EFAF3F',
walletFactory: '0x93FB56A4a0B7160fbf8903d251Cc7A3fb9bA0933',
bootstrap: '0x1baCB2F1ef4fD02f02e32cCF70888D9Caeb5f066',
multipleOwnerECDSAValidator: '0x8c4496Ba340aFe5ac4148cfEA9ccbBCD54093143',
erc20SessionKeyValidator: '',
Expand All @@ -426,11 +428,22 @@ export const Networks: {
bundler: 'https://testnet-rpc.etherspot.io/v2/51',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0x5952653F151e844346825050d7157A9a6b46A23A',
walletFactory: '0xB7361924B4F56af570680d56A03895A16bC54Be0',
bootstrap: '0x805650ce74561C85baA44a8Bd13E19633Fd0F79d',
multipleOwnerECDSAValidator: '0x68BA597bf6B9097b1D89b8E0D34646D30997f773',
erc20SessionKeyValidator: '',
},
},
[50]: {
chainId: 50,
bundler: 'https://rpc.etherspot.io/v2/50',
contracts: {
entryPoint: '0x0000000071727De22E5E9d8BAf0edAc6f37da032',
walletFactory: '0xcaDBADcFeD5530A49762DFc9d1d712CcD6b09b25',
bootstrap: '0xDb89D61c6609C79bd5A693397a9BDa700f4fdAEB',
multipleOwnerECDSAValidator: '0x8350355c08aDAC387b443782124A30A8942BeC2e',
erc20SessionKeyValidator: '',
},
}
};

Expand Down

0 comments on commit 6d0afec

Please sign in to comment.