Skip to content

Commit

Permalink
Merge pull request #389 from Peersyst/dev
Browse files Browse the repository at this point in the history
v1.3.4
  • Loading branch information
AdriaCarrera committed Oct 19, 2023
2 parents ba53eda + 57f5121 commit 353bfd0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
name: "NEAR Mobile",
slug: "NEARMobileWallet",
owner: "peersyst",
version: "1.3.3",
version: "1.3.4",
orientation: "portrait",
icon: "./assets/images/near-icon.png",
scheme: "near-mobile-wallet",
Expand Down
2 changes: 1 addition & 1 deletion src/config/configs/config.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
{
"name": "Burrow",
"description": "Supply and borrow interest-bearing assets (stNEAR, stETH, aUSDC) on NEAR Protocol.",
"url": "https://app.burrow.cash/",
"url": "https://app.burrow.finance/",
"logoUrl": "https://peersyst-public-production.s3.eu-west-1.amazonaws.com/fde1877b-7c77-4073-b46e-eabfe91bcedf.webp",
"tag": "lending",
"contractId": "contract.main.burrow.near"
Expand Down
2 changes: 1 addition & 1 deletion src/config/configs/config.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{
"name": "Burrow",
"description": "Supply and borrow interest-bearing assets (stNEAR, stETH, aUSDC) on NEAR Protocol.",
"url": "https://app.burrow.cash/",
"url": "https://app.burrow.finance/",
"logoUrl": "https://peersyst-public-production.s3.eu-west-1.amazonaws.com/fde1877b-7c77-4073-b46e-eabfe91bcedf.webp",
"tag": "lending",
"contractId": "contract.main.burrow.near"
Expand Down
2 changes: 1 addition & 1 deletion src/config/configs/config.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{
"name": "Burrow",
"description": "Supply and borrow interest-bearing assets (stNEAR, stETH, aUSDC) on NEAR Protocol.",
"url": "https://app.burrow.cash/",
"url": "https://app.burrow.finance/",
"logoUrl": "https://peersyst-public-production.s3.eu-west-1.amazonaws.com/fde1877b-7c77-4073-b46e-eabfe91bcedf.webp",
"tag": "lending",
"contractId": "contract.main.burrow.near"
Expand Down
2 changes: 1 addition & 1 deletion src/config/configs/config.staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
{
"name": "Burrow",
"description": "Supply and borrow interest-bearing assets (stNEAR, stETH, aUSDC) on NEAR Protocol.",
"url": "https://app.burrow.cash/",
"url": "https://app.burrow.finance/",
"logoUrl": "https://peersyst-public-production.s3.eu-west-1.amazonaws.com/fde1877b-7c77-4073-b46e-eabfe91bcedf.webp",
"tag": "lending",
"contractId": "contract.main.burrow.near"
Expand Down
1 change: 1 addition & 0 deletions src/module/signer/queries/useDeleteKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export default function useDeleteKey({
onSuccess: async (...args) => {
await queryClient.invalidateQueries([Queries.GET_ACCOUNT_ACCESS_KEYS, index, network]);
await queryClient.invalidateQueries([Queries.ACTIONS, index, network]);
await queryClient.invalidateQueries([Queries.IS_DAPP_CONNECTED, index, network]);
onSuccess?.(...args);
},
...options,
Expand Down
1 change: 1 addition & 0 deletions src/module/signer/queries/useDisconnectSmartContract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default function useDisconnectSmartContract({
onSuccess: async (contractId, ...args) => {
await queryClient.invalidateQueries([Queries.IS_DAPP_CONNECTED, index, network]);
await queryClient.invalidateQueries([Queries.RECOMMENDED_DAPPS]);
await queryClient.invalidateQueries([Queries.GET_ACCOUNT_ACCESS_KEYS, index, network]);
showToast(translate("disconnectSuccessfully"), { type: "success" });
onSuccess?.(contractId, ...args);
},
Expand Down

0 comments on commit 353bfd0

Please sign in to comment.