diff --git a/.github/workflows/finalized-tag-updater-github-release.yml b/.github/workflows/finalized-tag-updater-github-release.yml index c0c63a20d..f208ab32e 100644 --- a/.github/workflows/finalized-tag-updater-github-release.yml +++ b/.github/workflows/finalized-tag-updater-github-release.yml @@ -1,11 +1,5 @@ name: Github Release for Finalized-Tag-Updater Besu Plugin on: - workflow_call: - inputs: - version: - required: true - type: string - workflow_dispatch: inputs: version: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e85df5799..ebc8e990b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,6 @@ jobs: prover: ${{ steps.filter.outputs.prover }} traces-api-facade: ${{ steps.filter.outputs.traces-api-facade }} transaction-exclusion-api: ${{ steps.filter.outputs.transaction-exclusion-api }} - finalized-tag-updater: ${{ steps.filter.outputs.finalized-tag-updater }} has-changes-requiring-build: ${{ steps.filter-out.outputs.has-changes-requiring-build }} steps: - name: Checkout @@ -105,14 +104,6 @@ jobs: - 'build.gradle' - 'gradle.properties' - 'settings.gradle' - finalized-tag-updater: - - 'jvm-libs/linea/core/long-running-service/**' - - 'jvm-libs/linea/web3j-extensions/**' - - 'jvm-libs/extensions/kotlin/**' - - 'jvm-libs/extensions/futures/**' - - 'finalized-tag-updater/**' - - '.github/workflows/main.yml' - - '.github/workflows/finalized-tag-updater-github-release.yml' - name: Filter out commit changes uses: dorny/paths-filter@v3 id: filter-out @@ -174,15 +165,6 @@ jobs: transaction_exclusion_api_image_tagged: ${{ needs.check-and-tag-images.outputs.image_tagged_transaction_exclusion_api }} secrets: inherit - # Comment out the auto build and release step below as the plugin release should be - # by manual Github action for versioning control - # finalized-tag-updater-jar-build-release: - # needs: [ filter-commit-changes ] - # if: ${{ always() && needs.filter-commit-changes.outputs.finalized-tag-updater == 'true' }} - # uses: ./.github/workflows/finalized-tag-updater-github-release.yml - # with: - # version: '0.0.1' - testing: needs: [ store-image-name-and-tags, filter-commit-changes, check-and-tag-images ] if: ${{ always() && needs.filter-commit-changes.outputs.has-changes-requiring-build == 'true' }} diff --git a/bridge-ui/package.json b/bridge-ui/package.json index 06af155cc..6712a0161 100644 --- a/bridge-ui/package.json +++ b/bridge-ui/package.json @@ -22,10 +22,11 @@ "dependencies": { "@consensys/linea-sdk": "0.3.0", "@headlessui/react": "2.1.9", - "@tanstack/react-query": "5.59.3", + "@tanstack/react-query": "5.62.16", "@wagmi/connectors": "5.1.15", - "@wagmi/core": "2.13.8", - "@web3modal/wagmi": "5.1.11", + "@wagmi/core": "2.16.3", + "@reown/appkit": "1.6.3", + "@reown/appkit-adapter-wagmi": "1.6.3", "clsx": "^2.1.1", "compare-versions": "6.1.1", "date-fns": "4.1.0", @@ -44,8 +45,8 @@ "sharp": "0.33.5", "swiper": "11.1.14", "tailwind-merge": "^2.5.3", - "viem": "2.21.19", - "wagmi": "2.12.17", + "viem": "2.22.4", + "wagmi": "2.14.6", "zustand": "4.5.4" }, "devDependencies": { diff --git a/bridge-ui/src/components/ConnectButton.tsx b/bridge-ui/src/components/ConnectButton.tsx index cf046d622..1c20f7494 100644 --- a/bridge-ui/src/components/ConnectButton.tsx +++ b/bridge-ui/src/components/ConnectButton.tsx @@ -1,4 +1,4 @@ -import { useWeb3Modal } from "@web3modal/wagmi/react"; +import { useAppKit } from "@reown/appkit/react"; import { cn } from "@/utils/cn"; import { Button } from "./ui"; @@ -7,7 +7,7 @@ type ConnectButtonProps = { }; export default function ConnectButton({ fullWidth }: ConnectButtonProps) { - const { open } = useWeb3Modal(); + const { open } = useAppKit(); return (