Skip to content

Commit fd4891f

Browse files
committed
Update to Taquito 24.2.0-beta.0 and ECAD Beacon fork
Switch from upstream @airgap/beacon-* packages to the ECAD Labs fork (@ecadlabs/beacon-*) at 4.8.1-ecad.2 which includes beacon fixes. Pin all @taquito/* packages to 24.2.0-beta.0.
1 parent 10f9c46 commit fd4891f

File tree

13 files changed

+4861
-4002
lines changed

13 files changed

+4861
-4002
lines changed

package-lock.json

Lines changed: 4834 additions & 3972 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
"test:ui": "npx playwright test --ui"
2121
},
2222
"dependencies": {
23-
"@airgap/beacon-sdk": "^4.6.1",
24-
"@airgap/beacon-types": "^4.6.1",
23+
"@ecadlabs/beacon-dapp": "^4.8.1-ecad",
24+
"@ecadlabs/beacon-types": "^4.8.1-ecad",
2525
"@ledgerhq/hw-transport-webhid": "^6.30.8",
2626
"@sentry/vue": "^10.17.0",
2727
"@tailwindcss/vite": "^4.1.14",
28-
"@taquito/beacon-wallet": "^24.1.0-beta.0",
29-
"@taquito/ledger-signer": "^24.1.0-beta.0",
30-
"@taquito/michel-codec": "^24.1.0-beta.0",
31-
"@taquito/remote-signer": "^24.1.0-beta.0",
32-
"@taquito/sapling": "^24.1.0-beta.0",
33-
"@taquito/signer": "^24.1.0-beta.0",
34-
"@taquito/taquito": "^24.1.0-beta.0",
35-
"@taquito/tzip12": "^24.1.0-beta.0",
36-
"@taquito/tzip16": "^24.1.0-beta.0",
37-
"@taquito/utils": "^24.1.0-beta.0",
38-
"@taquito/wallet-connect": "^24.1.0-beta.0",
28+
"@taquito/beacon-wallet": "24.2.0-beta.0",
29+
"@taquito/ledger-signer": "24.2.0-beta.0",
30+
"@taquito/michel-codec": "24.2.0-beta.0",
31+
"@taquito/remote-signer": "24.2.0-beta.0",
32+
"@taquito/sapling": "24.2.0-beta.0",
33+
"@taquito/signer": "24.2.0-beta.0",
34+
"@taquito/taquito": "24.2.0-beta.0",
35+
"@taquito/tzip12": "24.2.0-beta.0",
36+
"@taquito/tzip16": "24.2.0-beta.0",
37+
"@taquito/utils": "24.2.0-beta.0",
38+
"@taquito/wallet-connect": "24.2.0-beta.0",
3939
"@tezos-core-tools/crypto-utils": "^0.0.7",
4040
"@vueuse/core": "^13.9.0",
4141
"@web3auth/base": "^9.7.0",

src/components/settings-dialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ import {
200200
useSettingsStore,
201201
type IndexerOption,
202202
} from "@/stores/settingsStore";
203-
import type { NetworkType } from "@airgap/beacon-types";
203+
import type { NetworkType } from "@ecadlabs/beacon-types";
204204
import { useDebounce } from "@vueuse/core";
205205
import { LoaderCircle, TriangleAlert, Undo2 } from "lucide-vue-next";
206206
import { computed, ref, watch } from "vue";

src/composables/useTaquitoModules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const useTaquitoModules = () => {
1313
};
1414

1515
const loadBeaconTypes = async () => {
16-
const module = await import("@airgap/beacon-types");
16+
const module = await import("@ecadlabs/beacon-types");
1717
return {
1818
SigningType: module.SigningType,
1919
};

src/lib/walletEvents.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { WalletStoreState } from "@/stores/createWalletStore";
2-
import { BeaconEvent } from "@airgap/beacon-dapp";
2+
import { BeaconEvent } from "@ecadlabs/beacon-dapp";
33
import type { BeaconWallet } from "@taquito/beacon-wallet";
44
import type { WalletConnect } from "@taquito/wallet-connect";
55

src/modules/tests/components/test-wrapper.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ import type { TestMetadata } from "@/modules/tests/test";
228228
import { getTestById } from "@/modules/tests/tests";
229229
import { useDiagramStore } from "@/stores/diagramStore";
230230
import { useWalletStore } from "@/stores/walletStore";
231-
import type { NetworkType } from "@airgap/beacon-types";
231+
import type { NetworkType } from "@ecadlabs/beacon-types";
232232
import {
233233
ArrowRight,
234234
BookOpenText,

src/modules/tests/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { NetworkType } from "@airgap/beacon-types";
1+
import type { NetworkType } from "@ecadlabs/beacon-types";
22
import type { Component } from "vue";
33

44
export interface DiagramNode {

src/modules/tests/tests.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { TestDiagram, TestMetadata } from "@/modules/tests/test";
2-
import { NetworkType } from "@airgap/beacon-types";
2+
import { NetworkType } from "@ecadlabs/beacon-types";
33
import {
44
ArrowRightLeft,
55
ArrowUp10,
@@ -183,9 +183,7 @@ export const AvailableTests: Record<string, TestMetadata> = {
183183
"https://octez.tezos.com/docs/alpha/blocks_ops.html#manager-operations",
184184
},
185185
component: () =>
186-
import(
187-
"@/modules/tests/tests/increase-paid-storage/increase-paid-storage.vue"
188-
),
186+
import("@/modules/tests/tests/increase-paid-storage/increase-paid-storage.vue"),
189187
icon: Plus,
190188
diagrams: {
191189
increase: {

src/stores/createWalletStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { web3AuthService } from "@/services/web3AuthService";
22
import type { ProgrammaticWallet, WalletProvider } from "@/types/wallet";
3-
import { NetworkType } from "@airgap/beacon-types";
3+
import { NetworkType } from "@ecadlabs/beacon-types";
44
import TransportWebHID from "@ledgerhq/hw-transport-webhid";
55
import * as Sentry from "@sentry/vue";
66
import { BeaconWallet } from "@taquito/beacon-wallet";

src/stores/settingsStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NetworkType } from "@airgap/beacon-types";
1+
import { NetworkType } from "@ecadlabs/beacon-types";
22
import { defineStore } from "pinia";
33
import { computed, ref, watch } from "vue";
44

0 commit comments

Comments
 (0)