Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
leeduckgo committed Oct 26, 2023
1 parent 37a9af3 commit 2274aa4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 15 deletions.
4 changes: 4 additions & 0 deletions packages/hardhat/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ const config: HardhatUserConfig = {
url: `https://polygon-mumbai.g.alchemy.com/v2/${providerApiKey}`,
accounts: [deployerPrivateKey],
},
scroll: {
url: `https://rpc.ankr.com/scroll_sepolia_testnet`,
accounts: [deployerPrivateKey],
},
polygonZkEvm: {
url: `https://polygonzkevm-mainnet.g.alchemy.com/v2/${providerApiKey}`,
accounts: [deployerPrivateKey],
Expand Down
20 changes: 10 additions & 10 deletions packages/nextjs/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ export const menuLinks: HeaderMenuLink[] = [
href: "/debug",
icon: <BugAntIcon className="h-4 w-4" />,
},
// {
// label: "Example UI",
// href: "/example-ui",
// icon: <SparklesIcon className="h-4 w-4" />,
// },
{
label: "solidty parser demo",
href: "https://scaffold.movespace.xyz/solidity_code_analyzer",
icon: <SparklesIcon className="h-4 w-4" />,
},
// {
// label: "ETH-SPACE",
// href: "/",
// icon: <SparklesIcon className="h-4 w-4" />,
// },
// {
// label: "Block Explorer",
// href: "/blockexplorer",
// icon: <MagnifyingGlassIcon className="h-4 w-4" />,
// },
{
label: "Block Explorer",
href: "https://sepolia-blockscout.scroll.io/address/0xEd6a0A29A962B4296bCeEC4e1E55F5Ec0474EAC7/contracts#address-tabs",
icon: <MagnifyingGlassIcon className="h-4 w-4" />,
},
];

export const HeaderMenuLinks = () => {
Expand Down
8 changes: 4 additions & 4 deletions packages/nextjs/generated/deployedContracts.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
const contracts = {
// modifile here.
80001: [
534351: [
{
chainId: "80001",
name: "mumbai",
chainId: "534351",
name: "scrollSepolia",
contracts: {
VectorDBProposalGovernancer: {
address: "0x9d4716Dc798ceac7E40b0B692e7a2fc3A353C4B1",
address: "0xEd6a0A29A962B4296bCeEC4e1E55F5Ec0474EAC7",
abi: [
{
inputs: [],
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/scaffold.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export type ScaffoldConfig = {

const scaffoldConfig = {
// The network where your DApp lives in
targetNetwork: chains.polygonMumbai,
targetNetwork: chains.scrollSepolia,

// The interval at which your front-end polls the RPC servers for new data
// it has no effect on the local network
Expand Down

0 comments on commit 2274aa4

Please sign in to comment.