Skip to content

Commit 43edc76

Browse files
authored
Show multichain buttons on EOA + code addresses (#3134)
Resolves #3132
1 parent 59ff127 commit 43edc76

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ui/address/details/AddressNetWorth.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ const AddressNetWorth = ({ addressData, isLoading, addressHash }: Props) => {
4343

4444
let multichainItems = null;
4545

46-
if (multichainFeature.isEnabled && !addressData?.is_contract) {
46+
const isEip7702 = addressData?.implementations?.length && addressData?.proxy_type === 'eip7702';
47+
48+
if (multichainFeature.isEnabled && (!addressData?.is_contract || isEip7702)) {
4749
const { providers } = multichainFeature;
4850
const hasSingleProvider = providers.length === 1;
4951

0 commit comments

Comments
 (0)