Skip to content

Commit

Permalink
Update dora explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
VegeBun-csj committed Jul 29, 2024
1 parent 6e29391 commit bf512e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ VITE_TRADE_URL=
VITE_DOCS_URL=https://docs.dorafactory.org/docs
VITE_MINTSCAN_URL=
VITE_ETHERSCAN_URL=https://sepolia.etherscan.io
VITE_DORA_EXPLORER_URL=https://vota-explorer.dorafactory.org/doravota
VITE_DORA_EXPLORER_URL=https://vota-sf-explorer.dorafactory.org/

VITE_ALCHEMY_API_KEY=
VITE_INFURA_API_KEY=
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/usePendingMigrationsData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export const usePendingMigrationsData = ({

// Get unprocessedRecords count
const unprocessedCount = Number(totalRecordsData) - Number(processedRecordsData);
console.log(`unprocessedCount is ${unprocessedCount}`);

// Get unprocessed Records Info
const { data: unprocessedRecordsData } = useContractRead({
Expand All @@ -69,6 +68,7 @@ export const usePendingMigrationsData = ({
args: [unprocessedCount],
enabled: unprocessedCount > 0,
});
console.log(`unprocessedCount is ${unprocessedCount}`);

console.log(`未处理的Record data为${unprocessedRecordsData}`);

Expand Down

0 comments on commit bf512e6

Please sign in to comment.