From b8f82c95b8e0ebee9fa5102e45c52a9eb259d9d1 Mon Sep 17 00:00:00 2001 From: ltminhthu Date: Mon, 8 Jul 2024 16:15:41 +0700 Subject: [PATCH 1/3] fix: bug get xtz balance on mainnet --- apps/wallet/src/engine/runners/tezos/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/wallet/src/engine/runners/tezos/utils.ts b/apps/wallet/src/engine/runners/tezos/utils.ts index e26621ead..60db3923c 100644 --- a/apps/wallet/src/engine/runners/tezos/utils.ts +++ b/apps/wallet/src/engine/runners/tezos/utils.ts @@ -2,7 +2,7 @@ import { TezosToolkit } from '@taquito/taquito'; import { Networks } from '@walless/core'; import type { EngineConfig } from 'engine/types'; -const MAIN_NET = 'https://api.tez.ie/rpc/mainnet'; +const MAIN_NET = 'https://mainnet.ecadinfra.com'; const GHOST_NET = 'https://ghostnet.ecadinfra.com'; const TZKT_API_MAINNET = 'https://api.tzkt.io/v1'; From f71220f472d3e7d3adad87d31c1762ed7b761b8b Mon Sep 17 00:00:00 2001 From: ltminhthu Date: Wed, 10 Jul 2024 16:34:42 +0700 Subject: [PATCH 2/3] fix landing page build failed --- .../components/layouts/Home/Navigation/HomeButton.tsx | 8 ++++---- apps/landing/components/layouts/Home/Navigation/index.tsx | 1 - 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/apps/landing/components/layouts/Home/Navigation/HomeButton.tsx b/apps/landing/components/layouts/Home/Navigation/HomeButton.tsx index 608410716..28dbf6f7b 100644 --- a/apps/landing/components/layouts/Home/Navigation/HomeButton.tsx +++ b/apps/landing/components/layouts/Home/Navigation/HomeButton.tsx @@ -1,12 +1,12 @@ import type { FC } from 'react'; import { Button, Image } from '@walless/ui'; -import Anchor from 'components/Anchor'; +import Link from 'next/link'; import { resources } from 'utils/config'; export const HomeButton: FC = () => { return ( - - - + ); }; diff --git a/apps/landing/components/layouts/Home/Navigation/index.tsx b/apps/landing/components/layouts/Home/Navigation/index.tsx index 8ed1c103b..9e03634f8 100644 --- a/apps/landing/components/layouts/Home/Navigation/index.tsx +++ b/apps/landing/components/layouts/Home/Navigation/index.tsx @@ -8,7 +8,6 @@ import { modalActions, View, } from '@walless/gui'; -import { View } from '@walless/gui'; import { Button } from '@walless/ui'; import { ContainerStack } from 'components/styled'; import { useRouter } from 'next/router'; From 534bbb315f397696404dcc38504ae1ce6b1ed84a Mon Sep 17 00:00:00 2001 From: Tan Le Date: Mon, 15 Jul 2024 13:01:58 +0700 Subject: [PATCH 3/3] [wallet] chore: remove recaptcha argon link --- apps/wallet/browser/bundler/webpack.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/wallet/browser/bundler/webpack.js b/apps/wallet/browser/bundler/webpack.js index da4cea54f..a9e8b05af 100644 --- a/apps/wallet/browser/bundler/webpack.js +++ b/apps/wallet/browser/bundler/webpack.js @@ -147,6 +147,10 @@ const replaceExtensionArgonLinks = (config) => { search: 'https://www.googletagmanager.com/gtag/js', replace: '', }, + { + search: 'https://www.google.com/recaptcha/enterprise.js', + replace: '', + }, ], }, ]),