Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,532 changes: 2,979 additions & 3,553 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"@airgap/beacon-sdk": "4.6.2",
"@baking-bad/vjsf": "^1.21.3",
"@braintree/sanitize-url": "^6.0.0",
"@sentry/tracing": "^6.19.2",
"@sentry/vue": "^6.19.2",
"@taquito/beacon-wallet": "21.0.4",
"@taquito/taquito": "21.0.4",
"@tezos-x/octez.connect-sdk": "^4.8.2",
"async-wait-until": "^2.0.12",
"axios": "^0.21.4",
"bignumber.js": "^9.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/schema/Schema.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ import SchemaMichelson from "./schemaDialog/SchemaMichelson";
import SchemaAlertOpHashSuccess from "./schemaAlert/SchemaAlertOpHashSuccess";
import SchemaHeader from "./schemaComponents/SchemaHeader";
import SchemaAlertCustomSuccess from "./schemaAlert/SchemaAlertCustomSuccess";
import { TezosOperationType, AbortedBeaconError, BroadcastBeaconError, defaultEventCallbacks } from '@airgap/beacon-sdk'
import { TezosOperationType, AbortedBeaconError, BroadcastBeaconError, defaultEventCallbacks } from '@tezos-x/octez.connect-sdk';
import {Wallet, isCustom} from "@/utils/wallet";
import { approveData } from "@/utils/approve";
import ConfirmDialog from "@/components/Dialogs/ConfirmDialog";
Expand Down
2 changes: 1 addition & 1 deletion src/utils/approve.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {checkAddress} from './tz.js';
import { TezosOperationType } from '@airgap/beacon-sdk'
import { TezosOperationType } from "@tezos-x/octez.connect-sdk";


const approveEntrypoint = 'approve';
Expand Down
5 changes: 1 addition & 4 deletions src/utils/tzkt.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
import {
BlockExplorer,
NetworkType,
} from "@airgap/beacon-sdk";
import { BlockExplorer, NetworkType } from "@tezos-x/octez.connect-sdk";

export function openTzktContract(network, contract) {
window.open(`https://${network === 'mainnet' ? '' : `${network}.`}tzkt.io/${contract.address}`, '_blank');
Expand Down
2 changes: 1 addition & 1 deletion src/utils/wallet.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DAppClient, ColorMode, NetworkType, PermissionScope } from "@airgap/beacon-sdk";
import { DAppClient, ColorMode, NetworkType, PermissionScope } from "@tezos-x/octez.connect-sdk";
import TZKTBlockExplorer from "@/utils/tzkt";

const CORRECT_NETWORK_TYPES = {
Expand Down
Loading