Skip to content

Commit 96772a0

Browse files
Aniket-Enggyann300
authored andcommitted
add gnosis chain
1 parent 43100a7 commit 96772a0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

libs/remix-lib/src/helpers/aaConstants.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ export const aaSupportedNetworks = {
66
name: "sepolia",
77
publicNodeUrl: "https://go.getblock.io/ee42d0a88f314707be11dd799b122cb9"
88
},
9-
// "10200": {
10-
// name: "gnosisChiado",
11-
// publicNodeUrl: "https://rpc.chiadochain.net/"
12-
// }
9+
"100": {
10+
name: "gnosis",
11+
publicNodeUrl: "https://gnosis.drpc.org"
12+
}
1313
}
1414

1515
export const getPimlicoBundlerURL = (chainId) => {

libs/remix-ui/run-tab/src/lib/components/account.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export function AccountUI(props: AccountProps) {
2727
const ownerEOA = useRef(null)
2828

2929
const intl = useIntl()
30-
const aaSupportedChainIds = ["11155111"] // AA01: Add chain id here to show 'Create Smart Account' button in Udapp
30+
const aaSupportedChainIds = ["11155111", "100"] // AA01: Add chain id here to show 'Create Smart Account' button in Udapp
3131
const smartAccounts: string[] = aaSupportedChainIds.some(e => networkName.includes(e)) ? Object.keys(props.runTabPlugin.REACT_API.smartAccounts) : []
3232

3333
useEffect(() => {

0 commit comments

Comments
 (0)