Skip to content

Commit

Permalink
chore: libraries upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
tomicvladan committed Dec 20, 2023
1 parent 7a3189e commit 5358a44
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 77 deletions.
128 changes: 61 additions & 67 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fairdatasociety/fdp-contracts-js": "^3.6.1",
"@fairdatasociety/fdp-storage": "^0.10.0",
"@fairdatasociety/fdp-contracts-js": "^3.10.0",
"@fairdatasociety/fdp-storage": "^0.17.0",
"@mui/icons-material": "^5.10.6",
"@mui/material": "^5.10.7",
"@testing-library/jest-dom": "^5.16.5",
Expand Down
9 changes: 1 addition & 8 deletions src/context/account.context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,7 @@ export const AccountProvider = ({ children }: AccountContextProps) => {
);

const ens = useMemo(
() =>
new ENS(
currentNetwork.label === "Sepolia"
? { ...currentNetwork.config, rpcUrl: "http://rpc.sepolia.org" }
: currentNetwork.config,
provider,
FDS_DOMAIN
),
() => new ENS(currentNetwork.config, provider, FDS_DOMAIN),
[currentNetwork, provider]
);

Expand Down
1 change: 1 addition & 0 deletions src/model/network.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ export interface Network {
nameResolver: string;
};
performChecks: boolean;
gasEstimation: number;
};
}

0 comments on commit 5358a44

Please sign in to comment.