Skip to content

Commit

Permalink
fix useConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Feb 22, 2023
1 parent 0b648c6 commit f99cac4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### [0.0.5](https://github.com/useElven/core/releases/tag/v0.0.5) (2023-02-22)
- fix for useConfig, missing IPFSGateway param

### [0.0.4](https://github.com/useElven/core/releases/tag/v0.0.4) (2023-02-22)
- added public MultiversX IPFS gateways to the default configuration

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@useelven/core",
"version": "0.0.4",
"version": "0.0.5",
"description": "Core hooks for MultiversX React DApps",
"license": "MIT",
"author": "Julian Ćwirko <julian.io>",
Expand Down
2 changes: 2 additions & 0 deletions src/hooks/useConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const useConfig = () => {
apiAddress,
explorerAddress,
apiTimeout,
IPFSGateway,
walletConnectBridgeAddresses,
} = useProxy(configState);

Expand All @@ -31,6 +32,7 @@ export const useConfig = () => {
apiAddress,
explorerAddress,
apiTimeout,
IPFSGateway,
walletConnectBridgeAddresses,
};
};

0 comments on commit f99cac4

Please sign in to comment.