Skip to content

Commit

Permalink
fix additional network settings
Browse files Browse the repository at this point in the history
  • Loading branch information
boscohyun committed Jul 18, 2024
1 parent 2d4b709 commit b972cf5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion popup/src/stores/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,18 @@ export const useNetwork = defineStore("Network", () => {
isMainnet: true,
},
{
// setup your local network's planet id here.
id: "0x900000000000",
name: "odin-localhost",
// setup your local network's name here.
name: "local-network",
// setup your local network's genesis block hash here.
genesisHash:
"ee0dae112ece151d4bce5300b7a16c1adc86cdc837df378fb395876de68b244c",
// setup your local network's GraphQL endpoint here.
gqlEndpoint: "http://127.0.0.1:31280/graphql",
// setup your local network's explorer endpoint here.
explorerEndpoint: "",
// setup your local network's mainnet status here.
isMainnet: false,
},
] as const;
Expand Down

0 comments on commit b972cf5

Please sign in to comment.