Skip to content

Commit

Permalink
Decompile ABI using a heimdall-rs backend (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
portdeveloper authored Apr 21, 2024
1 parent 388e519 commit 1ebabdc
Show file tree
Hide file tree
Showing 6 changed files with 170 additions and 173 deletions.
1 change: 1 addition & 0 deletions packages/nextjs/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ NEXT_PUBLIC_POLYGON_ETHERSCAN_API_KEY=
NEXT_PUBLIC_ARBITRUM_ETHERSCAN_API_KEY=
NEXT_PUBLIC_SCROLL_ETHERSCAN_API_KEY=
NEXT_PUBLIC_BASE_ETHERSCAN_API_KEY=
NEXT_PUBLIC_HEIMDALL_URL=

NEXT_PUBLIC_ALCHEMY_API_KEY=
NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID=
2 changes: 1 addition & 1 deletion packages/nextjs/components/MiniFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { BuidlGuidlLogo } from "~~/components/assets/BuidlGuidlLogo";

export const MiniFooter = () => {
return (
<div className="flex justify-center items-center gap-1 text-xs w-full mt-10">
<div className="flex justify-center items-center gap-1 text-xs w-full mt-10 z-10">
<div className="mb-1">
<a href="https://github.com/BuidlGuidl/abi.ninja" target="_blank" rel="noreferrer" className="link">
Fork me
Expand Down
5 changes: 4 additions & 1 deletion packages/nextjs/components/NetworksDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const NetworksDropdown = ({ onChange }: { onChange: (options: any) => any
onChange={onChange}
components={{ Option: IconOption }}
isSearchable={!isMobile}
className="text-sm w-44 max-w-xs bg-white relative"
className="max-w-xs bg-white relative text-sm w-44"
theme={theme => ({
...theme,
colors: {
Expand All @@ -88,6 +88,9 @@ export const NetworksDropdown = ({ onChange }: { onChange: (options: any) => any
primary: "#551d98",
},
})}
styles={{
menuList: provided => ({ ...provided, maxHeight: 280, overflow: "auto" }),
}}
/>
);
};
Loading

0 comments on commit 1ebabdc

Please sign in to comment.