diff --git a/mobile-app/app/components/icons/assets/XCHF.tsx b/mobile-app/app/components/icons/assets/XCHF.tsx
new file mode 100644
index 0000000000..5314e74790
--- /dev/null
+++ b/mobile-app/app/components/icons/assets/XCHF.tsx
@@ -0,0 +1,18 @@
+import Svg, { Path, SvgProps } from "react-native-svg";
+
+export function XCHF(props: SvgProps): JSX.Element {
+ return (
+
+ );
+}
diff --git a/mobile-app/app/components/icons/assets/dSUI.tsx b/mobile-app/app/components/icons/assets/dSUI.tsx
new file mode 100644
index 0000000000..38ad607ac9
--- /dev/null
+++ b/mobile-app/app/components/icons/assets/dSUI.tsx
@@ -0,0 +1,25 @@
+import Svg, { ClipPath, Defs, G, Path, Rect, SvgProps } from "react-native-svg";
+
+export function dSUI(props: SvgProps): JSX.Element {
+ return (
+
+ );
+}
diff --git a/mobile-app/app/components/icons/assets/dXCHF.tsx b/mobile-app/app/components/icons/assets/dXCHF.tsx
new file mode 100644
index 0000000000..fa490cf7dc
--- /dev/null
+++ b/mobile-app/app/components/icons/assets/dXCHF.tsx
@@ -0,0 +1,18 @@
+import Svg, { Path, SvgProps } from "react-native-svg";
+
+export function dXCHF(props: SvgProps): JSX.Element {
+ return (
+
+ );
+}
diff --git a/mobile-app/app/components/icons/assets/index.ts b/mobile-app/app/components/icons/assets/index.ts
index 273227a159..b33f9ba119 100644
--- a/mobile-app/app/components/icons/assets/index.ts
+++ b/mobile-app/app/components/icons/assets/index.ts
@@ -18,6 +18,9 @@ import { MATIC } from "./MATIC";
import { dDOT } from "./dDOT";
import { dMATIC } from "./dMATIC";
import { dSOL } from "./dSOL";
+import { dSUI } from "./dSUI";
+import { XCHF } from "./XCHF";
+import { dXCHF } from "./dXCHF";
import { EvmDFI } from "./EvmDFI";
@@ -46,6 +49,9 @@ const mapping: Record JSX.Element> = {
dDOT: dDOT,
dMATIC: dMATIC,
dSOL: dSOL,
+ dSUI: dSUI,
+ XCHF: XCHF,
+ dXCHF: dXCHF,
};
/**
diff --git a/mobile-app/cypress/e2e/functional/wallet/settings/networkDetails.spec.ts b/mobile-app/cypress/e2e/functional/wallet/settings/networkDetails.spec.ts
index b20467f18d..52568059bb 100644
--- a/mobile-app/cypress/e2e/functional/wallet/settings/networkDetails.spec.ts
+++ b/mobile-app/cypress/e2e/functional/wallet/settings/networkDetails.spec.ts
@@ -32,7 +32,7 @@ context("Wallet - Network detail screen - outside wallet context", () => {
cy.getByTestID(`button_network_${network}_check`).should(
"have.css",
"color",
- statusBgColor
+ statusBgColor,
);
});
});
@@ -55,7 +55,7 @@ context("Wallet - Network detail screen - outside wallet context", () => {
cy.getByTestID(`button_network_${network}_check`).should(
"have.css",
"color",
- statusBgColor
+ statusBgColor,
);
cy.go("back");
cy.url().should("include", "wallet/onboarding/guidelines");
@@ -78,13 +78,13 @@ context("Wallet - Network detail screen - outside wallet context", () => {
.filter(":visible")
.click();
cy.getByTestID(`button_network_${network}_uncheck`).should(
- "exist"
+ "exist",
);
cy.getByTestID(
- `button_network_${updatedNetwork}_check`
+ `button_network_${updatedNetwork}_check`,
).should("exist");
cy.getByTestID(
- `button_network_${updatedNetwork}_check`
+ `button_network_${updatedNetwork}_check`,
).should("have.css", "color", updatedStatusBgColor);
});
});
@@ -161,7 +161,7 @@ context("Wallet - Network detail screen - outside wallet context", () => {
cy.getByTestID(`button_network_${network}_check`).should(
"have.css",
"color",
- statusBgColor
+ statusBgColor,
);
cy.getByTestID("network_details_block_height")
.should("exist")
@@ -177,7 +177,9 @@ context("Wallet - Network detail screen - outside wallet context", () => {
.invoke("text")
.then((updatedLastSync) => {
expect(
- dayjs(lastSuccessfulSync).isBefore(dayjs(updatedLastSync))
+ dayjs(lastSuccessfulSync).isBefore(
+ dayjs(updatedLastSync),
+ ),
).to.be.eq(true);
});
});
@@ -208,7 +210,7 @@ context("Wallet - Network detail screen - with wallet context", () => {
cy.getByTestID(`button_network_${network}_check`).should(
"have.css",
"color",
- "rgb(0, 173, 29)"
+ "rgb(0, 173, 29)",
);
});
});
@@ -231,7 +233,7 @@ context("Wallet - Network detail screen - with wallet context", () => {
cy.getByTestID(`button_network_${network}_check`).should(
"have.css",
"color",
- statusBgColor
+ statusBgColor,
);
cy.getByTestID("button_network_Playground").click();
cy.exitWallet();
@@ -254,7 +256,7 @@ context("Wallet - Network detail screen - with wallet context", () => {
.should("exist")
.contains(updatedNetwork);
cy.getByTestID(
- `button_network_${updatedNetwork}_check`
+ `button_network_${updatedNetwork}_check`,
).should("have.css", "color", updatedStatusBgColor);
});
});
@@ -266,6 +268,7 @@ context("Wallet - Network detail screen - with wallet context", () => {
cy.getByTestID("bottom_tab_portfolio").click();
cy.getByTestID("header_settings").click().wait(3000);
cy.getByTestID("header_network_icon").filter(":visible").click();
+ cy.getByTestID("block_detail_explorer_url").scrollIntoView();
cy.getByTestID("block_detail_explorer_url")
.invoke("text")
.then(() => {
@@ -333,5 +336,5 @@ context(
cy.go("back");
cy.url().should("include", "app/Settings");
});
- }
+ },
);
diff --git a/package-lock.json b/package-lock.json
index 6343691515..b3f72cddd3 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -23,8 +23,8 @@
"@reduxjs/toolkit": "^1.9.5",
"@shopify/flash-list": "1.4.3",
"@waveshq/standard-defichain-jellyfishsdk": "^2.2.0",
- "@waveshq/walletkit-core": "^1.3.2",
- "@waveshq/walletkit-ui": "^1.3.2",
+ "@waveshq/walletkit-core": "^1.3.5",
+ "@waveshq/walletkit-ui": "^1.3.5",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
@@ -139,6 +139,11 @@
"node": ">=0.10.0"
}
},
+ "node_modules/@adraffy/ens-normalize": {
+ "version": "1.9.2",
+ "resolved": "https://registry.npmjs.org/@adraffy/ens-normalize/-/ens-normalize-1.9.2.tgz",
+ "integrity": "sha512-0h+FrQDqe2Wn+IIGFkTCd4aAwTJ+7834Ek1COohCyV26AXhwQ7WQaz+4F/nLOeVl/3BtWHOHLPsq46V8YB46Eg=="
+ },
"node_modules/@ampproject/remapping": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
@@ -2569,61 +2574,61 @@
}
},
"node_modules/@defichain/jellyfish-address": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-address/-/jellyfish-address-4.0.0-beta.10.tgz",
- "integrity": "sha512-9UXUNs6Y6n9p6/19GxVls1MbVsf5F32BscfhR3Z6VE7rtNnAaq4WSSBDZ3dTObRImgcz3fsXIcCbM/smUuWCLw==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-address/-/jellyfish-address-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-ErcMIsfMQUkdabg2UIqfsRv04pPu3UNKG/0vx4WrYtroDG8VVOv1EWyrBCIuV4O/wM2qFJOn9Pwp3UWDVYqLXA==",
"dependencies": {
- "@defichain/jellyfish-crypto": "4.0.0-beta.10",
- "@defichain/jellyfish-network": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction": "4.0.0-beta.10",
+ "@defichain/jellyfish-crypto": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-network": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction": "4.0.0-rc.1.2",
"bech32": "^2.0.0",
"bs58": "^4.0.1"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-api-core": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-api-core/-/jellyfish-api-core-4.0.0-beta.10.tgz",
- "integrity": "sha512-YhG1934sBkldIwmmw2h5UAVacHueEethwUL9m1tf2r5AXCl7DY47DOEyQR1ZatKEKifgH1bQu8+llYUo2eSCIQ==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-api-core/-/jellyfish-api-core-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-GM7iPiWkt8bspPS+RZGokzGwyUJp6Lqq8VmNKPow6OzHqtpVheLmhQwg2oWWQTc0yFOTHbiEXn9NK/k/gQl1Jw==",
"dependencies": {
- "@defichain/jellyfish-json": "4.0.0-beta.10"
+ "@defichain/jellyfish-json": "4.0.0-rc.1.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-api-jsonrpc": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-api-jsonrpc/-/jellyfish-api-jsonrpc-4.0.0-beta.10.tgz",
- "integrity": "sha512-FyBN+crA0vz4R3q3QH3gyEAvsSwk7zzyPbEpkTgxHIyC55p1fzyhxlLMABnvneaWzAgjxvxYVvcbooZFDAoZvg==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-api-jsonrpc/-/jellyfish-api-jsonrpc-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-dZI2tapqoYJGg2VE90cOMkjHZmIAak/uyIZo58eIKX57Nu3Qqu7s/LOQYnFOhRnttdanEujExee2GedzvyKZ2g==",
"dependencies": {
- "@defichain/jellyfish-api-core": "4.0.0-beta.10",
+ "@defichain/jellyfish-api-core": "4.0.0-rc.1.2",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-buffer": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-buffer/-/jellyfish-buffer-4.0.0-beta.10.tgz",
- "integrity": "sha512-gnEbvZxuPKQpFXjaqdyNWEz3Cw4ngfA4LD66wVrPPu83F7BEITLQLHFXY9CjSeky26cOwSlWFic1RlT4UXXjBg==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-buffer/-/jellyfish-buffer-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-Z62pzcG3+/a1pQTYJ4HQlmpnLFJKQNOjZZ8YhbaKn210HxxktYZga1kfu4qsSQp4fOTyxhsl4UaUTRc1XcNtUA==",
"dependencies": {
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.1",
"smart-buffer": "^4.2.0"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-crypto": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-crypto/-/jellyfish-crypto-4.0.0-beta.10.tgz",
- "integrity": "sha512-jouoUIlYwHy7Qcq+vTK4qxi7sZ3XPUmfHfgx2oBA9MA0BNI7yc+TgXtfsGivkrZNSfI2IWuF2CbT5AqWck+pwQ==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-crypto/-/jellyfish-crypto-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-AoahaWw/3RXTXA3TXzwfLnFgIYxDQjL13CDooZJC67vruMN0iQGK/hDDFE0bHm09WOmr77jShqsVz2Tlp05AJQ==",
"dependencies": {
"bech32": "^2.0.0",
"bip66": "^1.1.5",
@@ -2636,160 +2641,229 @@
"wif": "^2.0.6"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-json": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-json/-/jellyfish-json-4.0.0-beta.10.tgz",
- "integrity": "sha512-MePFrdoMB21D2V4Xp6Qa+RDxvemFvzIvXnwgA2/ICIvVPDrOZO98bcTMfcQZQlIYIf78HF0+xkvLZoZV+NGTJQ==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-json/-/jellyfish-json-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-tjpj7VSb5n2pwZbXGwuoTeYzrkw13Ejc1FLdMuCK+vw1vl/DsQJbAlqmgKEHCenlXnzzqYku2HpS5ncHrZUXnQ==",
"dependencies": {
"@types/lossless-json": "^1.0.1",
"bignumber.js": "^9.0.2",
"lossless-json": "^1.0.5"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-network": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-network/-/jellyfish-network-4.0.0-beta.10.tgz",
- "integrity": "sha512-iGdarmM7WAENUNZlC+yzwsdoJZ/eIvsGhDi/SprbB2+4fL3inolvHq1HDaN6+JF2qAGIR8CqJL6XOeWPbHq6ZA==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-network/-/jellyfish-network-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-DXVfv8wNR9AyKAD6c1kTT1bYEYMU//lyoKVupux4I2WG5LUuMyY6aExPgT41XZ0Bh+Je4KvNAS+U5yjR29zvkQ==",
"dependencies": {
"bignumber.js": "^9.0.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-testing": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-testing/-/jellyfish-testing-4.0.0-beta.10.tgz",
- "integrity": "sha512-1ZJp6Jn4TXfuNq0ZDoHQMzr88wxEi2v+1S9X9fzx6lOMtNEnzZ8zRa/k+Dlf/tUdDioQCvUTM9CpFEPocZMfVA==",
- "dependencies": {
- "@defichain/jellyfish-api-jsonrpc": "4.0.0-beta.10",
- "@defichain/jellyfish-crypto": "4.0.0-beta.10",
- "@defichain/jellyfish-network": "4.0.0-beta.10",
- "@defichain/testcontainers": "4.0.0-beta.10",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-testing/-/jellyfish-testing-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-iWGpjZcVBRxcENvLWh7/hG3os4jxtIKuD5Ip3BBy7edPdpIXPb55IkiTnnGHXSCM3kRU//3NH0wsi/J7bMMj9w==",
+ "dependencies": {
+ "@defichain/jellyfish-api-jsonrpc": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-crypto": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-network": "4.0.0-rc.1.2",
+ "@defichain/testcontainers": "4.0.0-rc.1.2",
"cross-fetch": "^3.1.5"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-transaction": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-transaction/-/jellyfish-transaction-4.0.0-beta.10.tgz",
- "integrity": "sha512-g9bmNEIVolfL4VdDsNDkACej2XmYYW3Uod4ogi/Y9Yq8MYfhAVLAHIhuASXQ0q1x7g0sAOHWdPK4T3eX4mUVGQ==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-transaction/-/jellyfish-transaction-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-NA4wr1skMcfP3R0xcvM12RRrbPBtJpKaaI9sPM5kxYF6ZTBg1CEHbaVhgU+MXMaO+kdAuagFNIvjuP4GMgd0mQ==",
"dependencies": {
- "@defichain/jellyfish-buffer": "4.0.0-beta.10",
- "@defichain/jellyfish-crypto": "4.0.0-beta.10"
+ "@defichain/jellyfish-buffer": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-crypto": "4.0.0-rc.1.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-transaction-builder": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-transaction-builder/-/jellyfish-transaction-builder-4.0.0-beta.10.tgz",
- "integrity": "sha512-x0QoVultE1nLW8hYH2oVGuGA0mfdmKgiSVaaQaHRsIeBa4uMRfkVkaANaJmHlgTYtZjoUbQoKTXA5W6PGjtkXA==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-transaction-builder/-/jellyfish-transaction-builder-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-7mIMsInAHQi7BWnjNJj6k8jHE0q+KzPNE+F5JQihS48pUnFd6kWiU8VMkzn/9dzW1xxPTlz1wTMmUyIFcZFilA==",
"dependencies": {
- "@defichain/jellyfish-crypto": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction-signature": "4.0.0-beta.10"
+ "@defichain/jellyfish-crypto": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction-signature": "4.0.0-rc.1.2",
+ "ethers": "^6.7.1"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
+ }
+ },
+ "node_modules/@defichain/jellyfish-transaction-builder/node_modules/@noble/hashes": {
+ "version": "1.1.2",
+ "resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.1.2.tgz",
+ "integrity": "sha512-KYRCASVTv6aeUi1tsF8/vpyR7zpfs3FUzy2Jqm+MU+LmUKhQ0y2FpfwqkCcxSg2ua4GALJd8k2R76WxwZGbQpA==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ ]
+ },
+ "node_modules/@defichain/jellyfish-transaction-builder/node_modules/@types/node": {
+ "version": "18.15.13",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.15.13.tgz",
+ "integrity": "sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q=="
+ },
+ "node_modules/@defichain/jellyfish-transaction-builder/node_modules/aes-js": {
+ "version": "4.0.0-beta.5",
+ "resolved": "https://registry.npmjs.org/aes-js/-/aes-js-4.0.0-beta.5.tgz",
+ "integrity": "sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q=="
+ },
+ "node_modules/@defichain/jellyfish-transaction-builder/node_modules/ethers": {
+ "version": "6.7.1",
+ "resolved": "https://registry.npmjs.org/ethers/-/ethers-6.7.1.tgz",
+ "integrity": "sha512-qX5kxIFMfg1i+epfgb0xF4WM7IqapIIu50pOJ17aebkxxa4BacW5jFrQRmCJpDEg2ZK2oNtR5QjrQ1WDBF29dA==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://github.com/sponsors/ethers-io/"
+ },
+ {
+ "type": "individual",
+ "url": "https://www.buymeacoffee.com/ricmoo"
+ }
+ ],
+ "dependencies": {
+ "@adraffy/ens-normalize": "1.9.2",
+ "@noble/hashes": "1.1.2",
+ "@noble/secp256k1": "1.7.1",
+ "@types/node": "18.15.13",
+ "aes-js": "4.0.0-beta.5",
+ "tslib": "2.4.0",
+ "ws": "8.5.0"
+ },
+ "engines": {
+ "node": ">=14.0.0"
+ }
+ },
+ "node_modules/@defichain/jellyfish-transaction-builder/node_modules/ws": {
+ "version": "8.5.0",
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.5.0.tgz",
+ "integrity": "sha512-BWX0SWVgLPzYwF8lTzEy1egjhS4S4OEAHfsO8o65WOVsrnSRGaSiUaa9e0ggGlkMTtBlmOpEXiie9RUcBO86qg==",
+ "engines": {
+ "node": ">=10.0.0"
+ },
+ "peerDependencies": {
+ "bufferutil": "^4.0.1",
+ "utf-8-validate": "^5.0.2"
+ },
+ "peerDependenciesMeta": {
+ "bufferutil": {
+ "optional": true
+ },
+ "utf-8-validate": {
+ "optional": true
+ }
}
},
"node_modules/@defichain/jellyfish-transaction-signature": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-transaction-signature/-/jellyfish-transaction-signature-4.0.0-beta.10.tgz",
- "integrity": "sha512-qRUdOiN0W+LgIMG/+Y3hLaUQKutxUu1jWqA9thBubt0Tx9Ve5TtpkJhVw9bMw8lW3eSRfh3iSd7sB25mDMa7yA==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-transaction-signature/-/jellyfish-transaction-signature-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-Cqyz99UClM/nAlz0NkoKU1Fl12OBPYIABHW1Lb4p+TPm03lvtYvOd8VeHhejNY3gKLb7hfonexg8cWnnsXRYIw==",
"dependencies": {
- "@defichain/jellyfish-buffer": "4.0.0-beta.10",
- "@defichain/jellyfish-crypto": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction": "4.0.0-beta.10"
+ "@defichain/jellyfish-buffer": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-crypto": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction": "4.0.0-rc.1.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-wallet": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-wallet/-/jellyfish-wallet-4.0.0-beta.10.tgz",
- "integrity": "sha512-UtPryqcMSgCjExyBVVU5dhpi6And91goV4+wEo5wCQqrqAmn0Zo02k3XJ8DNaVqEJfGYpEbPBSdsIJMiO9YTfw==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-wallet/-/jellyfish-wallet-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-FsKGt42spRTp/83mtnVp4RCY1tfLvvED7wZzssX3X0cypfBMKOySgoI2TDEqtn3iR/nVRAFnWaoOpSqhNrjObA==",
"dependencies": {
- "@defichain/jellyfish-address": "4.0.0-beta.10",
- "@defichain/jellyfish-crypto": "4.0.0-beta.10",
- "@defichain/jellyfish-network": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction-builder": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction-signature": "4.0.0-beta.10"
+ "@defichain/jellyfish-address": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-crypto": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-network": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction-builder": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction-signature": "4.0.0-rc.1.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-wallet-encrypted": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-wallet-encrypted/-/jellyfish-wallet-encrypted-4.0.0-beta.10.tgz",
- "integrity": "sha512-BCSCOTGKgsiVUdsJs1kJVXZPkGOOx3bzi25zyPE5oZ3j+75Kqza9CrIhSi0b8zKnvUg+rABw9WvUZBksUlRqkw==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-wallet-encrypted/-/jellyfish-wallet-encrypted-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-/QCGAV1lPPmWLcXvIIBxxf8v3lWrt7DRJm5NJLbQp++y8kr6wJLcEnOSM6EIXm3sMC0u80vQcWMgKlI4JJaXXw==",
"dependencies": {
- "@defichain/jellyfish-wallet-mnemonic": "4.0.0-beta.10",
+ "@defichain/jellyfish-wallet-mnemonic": "4.0.0-rc.1.2",
"scrypt-js": "^3.0.1"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/jellyfish-wallet-mnemonic": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/jellyfish-wallet-mnemonic/-/jellyfish-wallet-mnemonic-4.0.0-beta.10.tgz",
- "integrity": "sha512-hsPh2431chj7sFBe3uYMWA3cTw0Q9RIe+J9LurkmbByn/1aXzDiFRIpOUt2a3mR7OCDIahXCwCzGzRILISFxpQ==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/jellyfish-wallet-mnemonic/-/jellyfish-wallet-mnemonic-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-D5QY8AKLw9yLN4BdlX+36yk8hAc8lrSIiJPyujJ1qLlbe80wac4PNuRqa3m7tl+8DHOHAeE1IMy5d2yiTYkz3g==",
"dependencies": {
- "@defichain/jellyfish-transaction": "4.0.0-beta.10",
- "@defichain/jellyfish-wallet": "4.0.0-beta.10",
+ "@defichain/jellyfish-transaction": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-wallet": "4.0.0-rc.1.2",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"create-hmac": "^1.1.7"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/ocean-api-client": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/ocean-api-client/-/ocean-api-client-4.0.0-beta.10.tgz",
- "integrity": "sha512-sV8FLmbD6R0vQsUTZ9ozxbC2CAvGEJmVY2gDjGZjOW3doS2LbtOOqrI3wFDmlomRrfMWiVh/ENqN/ncJw6V0Sg==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/ocean-api-client/-/ocean-api-client-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-kiZpzHiXTbbx5sW5abuJaNyEMpkkLq3bm6ORhvXLXM2kTFAe5NlE1GvFLVHPXMIA1tPl+tqqx4VVpxp2FKwMJw==",
"dependencies": {
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5",
"url-search-params-polyfill": "8.1.1"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/playground-api-client": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/playground-api-client/-/playground-api-client-4.0.0-beta.10.tgz",
- "integrity": "sha512-e7YdLbAwxVI3kDH21yxIta08KwKKYqCMvQJSH1qwm5xZMyMNkB2aiUjXxgDjAMUZ/h+cbFfrloqtsGkDlpPTog==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/playground-api-client/-/playground-api-client-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-1ph/mRVa5oIT5EAxcXPsOejV/LoXKlB1u6o4X53RvF82FvzDwVhu4/swns2Cq+HCndql3L/UkonUdC8wt2M2xQ==",
"dependencies": {
- "@defichain/jellyfish-api-core": "4.0.0-beta.10",
- "@defichain/ocean-api-client": "4.0.0-beta.10"
+ "@defichain/jellyfish-api-core": "4.0.0-rc.1.2",
+ "@defichain/ocean-api-client": "4.0.0-rc.1.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/testcontainers": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/testcontainers/-/testcontainers-4.0.0-beta.10.tgz",
- "integrity": "sha512-uymLLU5P+IY6WkGxQWr+ns8D6k+BGnuJT4Q76oJlpl2TpIl897MoQj/MR+QPqtTQPb9YVOUsTiXo9iULChSWHA==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/testcontainers/-/testcontainers-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-ywyb0BrY7kCvg2xdt2HyTDrLuYubd8jPq4VPsCsHcu5UXuszXolfn/dN2WShM0lxZ6uouBr48E8uTHUUoj9o7Q==",
"dependencies": {
- "@defichain/jellyfish-network": "4.0.0-beta.10",
+ "@defichain/jellyfish-network": "4.0.0-rc.1.2",
"cross-fetch": "^3.1.5",
"dockerode": "^3.3.5",
"tar-fs": "^2.1.1",
@@ -2798,35 +2872,35 @@
},
"peerDependencies": {
"@types/tar-fs": "^2.0.1",
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/whale-api-client": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/whale-api-client/-/whale-api-client-4.0.0-beta.10.tgz",
- "integrity": "sha512-4r5DKCAlHNlqv/o0HcdhRhND3HJ7qiNF5n1lGC+P3SLc9Gw6tejKwbiVVN8sakXporJwb5UUM/GRDXRHlq/mTQ==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/whale-api-client/-/whale-api-client-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-ecdELKLdt+BAJt44P55YEJkymNdHMxQIyhmLM768FI8bKVVLgdWNZAywcLVwPQWs1smSAA42wk+5RKT0cv9k0Q==",
"dependencies": {
- "@defichain/jellyfish-api-core": "4.0.0-beta.10",
- "@defichain/jellyfish-api-jsonrpc": "4.0.0-beta.10",
+ "@defichain/jellyfish-api-core": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-api-jsonrpc": "4.0.0-rc.1.2",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5",
"url-search-params-polyfill": "8.1.1"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@defichain/whale-api-wallet": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/@defichain/whale-api-wallet/-/whale-api-wallet-4.0.0-beta.10.tgz",
- "integrity": "sha512-SRthiQnd/oichvZ+eN9VgAJJrooEYv0ROZ7bHYfmGKM/wBfeoTP5JLoKYA28pUNCnMCaGtTNssUABFBuR9yICA==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/@defichain/whale-api-wallet/-/whale-api-wallet-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-h2M2etOrZ2OdL2eCP68wieBA/rHEjKokX0Y1Ke4Z5gv5Y7o8KR/TO04y/clLx3uedlHM2DhnD1fQZsCXJBx7MQ==",
"dependencies": {
- "@defichain/jellyfish-transaction-builder": "4.0.0-beta.10",
- "@defichain/jellyfish-wallet": "4.0.0-beta.10",
- "@defichain/whale-api-client": "4.0.0-beta.10"
+ "@defichain/jellyfish-transaction-builder": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-wallet": "4.0.0-rc.1.2",
+ "@defichain/whale-api-client": "4.0.0-rc.1.2"
},
"peerDependencies": {
- "defichain": "^4.0.0-beta.10"
+ "defichain": "^4.0.0-rc.1.2"
}
},
"node_modules/@egjs/hammerjs": {
@@ -2967,9 +3041,9 @@
}
},
"node_modules/@eslint/js": {
- "version": "8.48.0",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.48.0.tgz",
- "integrity": "sha512-ZSjtmelB7IJfWD2Fvb7+Z+ChTIKWq6kjda95fLcQKNS5aheVHn4IkfgRQE3sIIzTcSLwLcLZUD9UBt+V7+h+Pw==",
+ "version": "8.50.0",
+ "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.50.0.tgz",
+ "integrity": "sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
@@ -5081,9 +5155,9 @@
}
},
"node_modules/@humanwhocodes/config-array": {
- "version": "0.11.10",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
- "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
+ "version": "0.11.11",
+ "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz",
+ "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.1",
"debug": "^4.1.1",
@@ -6501,14 +6575,14 @@
}
},
"node_modules/@next/env": {
- "version": "13.4.19",
- "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.19.tgz",
- "integrity": "sha512-FsAT5x0jF2kkhNkKkukhsyYOrRqtSxrEhfliniIq0bwWbuXLgyt3Gv0Ml+b91XwjwArmuP7NxCiGd++GGKdNMQ=="
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-13.5.3.tgz",
+ "integrity": "sha512-X4te86vsbjsB7iO4usY9jLPtZ827Mbx+WcwNBGUOIuswuTAKQtzsuoxc/6KLxCMvogKG795MhrR1LDhYgDvasg=="
},
"node_modules/@next/eslint-plugin-next": {
- "version": "13.4.19",
- "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.19.tgz",
- "integrity": "sha512-N/O+zGb6wZQdwu6atMZHbR7T9Np5SUFUjZqCbj0sXm+MwQO35M8TazVB4otm87GkXYs2l6OPwARd3/PUWhZBVQ==",
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.5.3.tgz",
+ "integrity": "sha512-lbZOoEjzSuTtpk9UgV9rOmxYw+PsSfNR+00mZcInqooiDMZ1u+RqT1YQYLsEZPW1kumZoQe5+exkCBtZ2xn0uw==",
"dependencies": {
"glob": "7.1.7"
}
@@ -6533,9 +6607,9 @@
}
},
"node_modules/@next/swc-darwin-arm64": {
- "version": "13.4.19",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.19.tgz",
- "integrity": "sha512-vv1qrjXeGbuF2mOkhkdxMDtv9np7W4mcBtaDnHU+yJG+bBwa6rYsYSCI/9Xm5+TuF5SbZbrWO6G1NfTh1TMjvQ==",
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.5.3.tgz",
+ "integrity": "sha512-6hiYNJxJmyYvvKGrVThzo4nTcqvqUTA/JvKim7Auaj33NexDqSNwN5YrrQu+QhZJCIpv2tULSHt+lf+rUflLSw==",
"cpu": [
"arm64"
],
@@ -6547,6 +6621,126 @@
"node": ">= 10"
}
},
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.5.3.tgz",
+ "integrity": "sha512-UpBKxu2ob9scbpJyEq/xPgpdrgBgN3aLYlxyGqlYX5/KnwpJpFuIHU2lx8upQQ7L+MEmz+fA1XSgesoK92ppwQ==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.5.3.tgz",
+ "integrity": "sha512-5AzM7Yx1Ky+oLY6pHs7tjONTF22JirDPd5Jw/3/NazJ73uGB05NqhGhB4SbeCchg7SlVYVBeRMrMSZwJwq/xoA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.5.3.tgz",
+ "integrity": "sha512-A/C1shbyUhj7wRtokmn73eBksjTM7fFQoY2v/0rTM5wehpkjQRLOXI8WJsag2uLhnZ4ii5OzR1rFPwoD9cvOgA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.5.3.tgz",
+ "integrity": "sha512-FubPuw/Boz8tKkk+5eOuDHOpk36F80rbgxlx4+xty/U71e3wZZxVYHfZXmf0IRToBn1Crb8WvLM9OYj/Ur815g==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.5.3.tgz",
+ "integrity": "sha512-DPw8nFuM1uEpbX47tM3wiXIR0Qa+atSzs9Q3peY1urkhofx44o7E1svnq+a5Q0r8lAcssLrwiM+OyJJgV/oj7g==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.5.3.tgz",
+ "integrity": "sha512-zBPSP8cHL51Gub/YV8UUePW7AVGukp2D8JU93IHbVDu2qmhFAn9LWXiOOLKplZQKxnIPUkJTQAJDCWBWU4UWUA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-ia32-msvc": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.5.3.tgz",
+ "integrity": "sha512-ONcL/lYyGUj4W37D4I2I450SZtSenmFAvapkJQNIJhrPMhzDU/AdfLkW98NvH1D2+7FXwe7yclf3+B7v28uzBQ==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.5.3.tgz",
+ "integrity": "sha512-2Vz2tYWaLqJvLcWbbTlJ5k9AN6JD7a5CN2pAeIzpbecK8ZF/yobA39cXtv6e+Z8c5UJuVOmaTldEAIxvsIux/Q==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
"node_modules/@noble/hashes": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@noble/hashes/-/hashes-1.3.2.tgz",
@@ -6558,6 +6752,17 @@
"url": "https://paulmillr.com/funding/"
}
},
+ "node_modules/@noble/secp256k1": {
+ "version": "1.7.1",
+ "resolved": "https://registry.npmjs.org/@noble/secp256k1/-/secp256k1-1.7.1.tgz",
+ "integrity": "sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==",
+ "funding": [
+ {
+ "type": "individual",
+ "url": "https://paulmillr.com/funding/"
+ }
+ ]
+ },
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
@@ -6670,6 +6875,25 @@
"@parcel/watcher-win32-x64": "2.3.0"
}
},
+ "node_modules/@parcel/watcher-android-arm64": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.3.0.tgz",
+ "integrity": "sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "android"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
"node_modules/@parcel/watcher-darwin-arm64": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.3.0.tgz",
@@ -6689,6 +6913,139 @@
"url": "https://opencollective.com/parcel"
}
},
+ "node_modules/@parcel/watcher-darwin-x64": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.3.0.tgz",
+ "integrity": "sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-freebsd-x64": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.3.0.tgz",
+ "integrity": "sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "freebsd"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm-glibc": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.3.0.tgz",
+ "integrity": "sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ==",
+ "cpu": [
+ "arm"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm64-glibc": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.3.0.tgz",
+ "integrity": "sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-arm64-musl": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.3.0.tgz",
+ "integrity": "sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-x64-glibc": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.3.0.tgz",
+ "integrity": "sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-linux-x64-musl": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.3.0.tgz",
+ "integrity": "sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
"node_modules/@parcel/watcher-wasm": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.3.0.tgz",
@@ -6714,6 +7071,63 @@
"inBundle": true,
"license": "MIT"
},
+ "node_modules/@parcel/watcher-win32-arm64": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.3.0.tgz",
+ "integrity": "sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-ia32": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.3.0.tgz",
+ "integrity": "sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow==",
+ "cpu": [
+ "ia32"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
+ "node_modules/@parcel/watcher-win32-x64": {
+ "version": "2.3.0",
+ "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.3.0.tgz",
+ "integrity": "sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10.0.0"
+ },
+ "funding": {
+ "type": "opencollective",
+ "url": "https://opencollective.com/parcel"
+ }
+ },
"node_modules/@parcel/watcher/node_modules/node-addon-api": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.0.0.tgz",
@@ -8380,9 +8794,9 @@
}
},
"node_modules/@reduxjs/toolkit": {
- "version": "1.9.5",
- "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.5.tgz",
- "integrity": "sha512-Rt97jHmfTeaxL4swLRNPD/zV4OxTes4la07Xc4hetpUW/vc75t5m1ANyxG6ymnEQ2FsLQsoMlYB2vV1sO3m8tQ==",
+ "version": "1.9.6",
+ "resolved": "https://registry.npmjs.org/@reduxjs/toolkit/-/toolkit-1.9.6.tgz",
+ "integrity": "sha512-Gc4ikl90ORF4viIdAkY06JNUnODjKfGxZRwATM30EdHq8hLSVoSrwXne5dd739yenP5bJxAX7tLuOWK5RPGtrw==",
"dependencies": {
"immer": "^9.0.21",
"redux": "^4.2.1",
@@ -8414,9 +8828,9 @@
}
},
"node_modules/@rushstack/eslint-patch": {
- "version": "1.3.3",
- "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.3.tgz",
- "integrity": "sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw=="
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.4.0.tgz",
+ "integrity": "sha512-cEjvTPU32OM9lUFegJagO0mRnIn+rbqrG89vV8/xLnLFX0DoR0r1oy5IlTga71Q7uT3Qus7qm7wgeiMT/+Irlg=="
},
"node_modules/@segment/loosely-validate-event": {
"version": "2.0.0",
@@ -8504,9 +8918,9 @@
}
},
"node_modules/@swc/helpers": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
- "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz",
+ "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==",
"dependencies": {
"tslib": "^2.4.0"
}
@@ -8523,20 +8937,20 @@
}
},
"node_modules/@tanstack/query-core": {
- "version": "5.0.0-beta.20",
- "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.0.0-beta.20.tgz",
- "integrity": "sha512-KTI6b4DLXq39n/VNLvWqxM0K/bmCyL5SvOfPGZ1cZGOvVfZxpo/81ZF9cuRDyPjInmzz8d8jUZOHZVJDKSDcvQ==",
+ "version": "5.0.0-rc.1",
+ "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.0.0-rc.1.tgz",
+ "integrity": "sha512-6jzPCwvEHS+Y3QCildpOlIrqJXXJ+v2EvbtCnbKUi6FpOrrfoSPacVB3nr0cjSBG/rCXnTB0aaevx9T8iT9CrQ==",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
}
},
"node_modules/@tanstack/react-query": {
- "version": "5.0.0-beta.20",
- "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.0.0-beta.20.tgz",
- "integrity": "sha512-L5YP1zwEMBwZJ/oCnFXLnb6S60srU7Oyj/oM5TVLcC/efdKpcdToMZTHA9Vjq3oFA9ysxFgrskkideIMa3fB4A==",
+ "version": "5.0.0-rc.1",
+ "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.0.0-rc.1.tgz",
+ "integrity": "sha512-hFz2j/pp+faqwaBbp0KV8kgn01GfErfA1BtcwHVE/E+GJINU2ZOAiVJ43LR05JCWnIu4b9pAnOBMHv55GshMZQ==",
"dependencies": {
- "@tanstack/query-core": "5.0.0-beta.20",
+ "@tanstack/query-core": "5.0.0-rc.1",
"client-only": "0.0.1"
},
"funding": {
@@ -8749,9 +9163,9 @@
"devOptional": true
},
"node_modules/@types/archiver": {
- "version": "5.3.2",
- "resolved": "https://registry.npmjs.org/@types/archiver/-/archiver-5.3.2.tgz",
- "integrity": "sha512-IctHreBuWE5dvBDz/0WeKtyVKVRs4h75IblxOACL92wU66v+HGAfEYAOyXkOFphvRJMhuXdI9huDXpX0FC6lCw==",
+ "version": "5.3.3",
+ "resolved": "https://registry.npmjs.org/@types/archiver/-/archiver-5.3.3.tgz",
+ "integrity": "sha512-0ABdVcXL6jOwNGY+hjWPqrxUvKelBEwNLcuv/SV2vZ4YCH8w9NttFCt+/QqI5zgMX+iX/XqVy89/r7EmLJmMpQ==",
"dependencies": {
"@types/readdir-glob": "*"
}
@@ -8811,18 +9225,18 @@
}
},
"node_modules/@types/docker-modem": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@types/docker-modem/-/docker-modem-3.0.3.tgz",
- "integrity": "sha512-i1A2Etnav7uHizZ87vUf4EqwJehY3JOcTfBS0pGBlO+HQ0jg2lUMCaJRg9VQM8ldZkpYdIfsenxcTOCpwxPXEg==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/@types/docker-modem/-/docker-modem-3.0.4.tgz",
+ "integrity": "sha512-INK4TOrJ9hbgaSqHA1HaEOCcYVftJRH0v03gCg6R57JGKgltkDvdFYBtoN4lHrJ3h8aF1upvEPN2eWVLIvKStQ==",
"dependencies": {
"@types/node": "*",
"@types/ssh2": "*"
}
},
"node_modules/@types/dockerode": {
- "version": "3.3.19",
- "resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.19.tgz",
- "integrity": "sha512-7CC5yIpQi+bHXwDK43b/deYXteP3Lem9gdocVVHJPSRJJLMfbiOchQV3rDmAPkMw+n3GIVj7m1six3JW+VcwwA==",
+ "version": "3.3.20",
+ "resolved": "https://registry.npmjs.org/@types/dockerode/-/dockerode-3.3.20.tgz",
+ "integrity": "sha512-Q+1e3z6SPWXR/Sk+WIyJFVsSDg78S7MDaGcwAh1WKlveO1tVO8TF1rOzJir5GLnqzEdUbclFKlw/4rhwESxwPw==",
"dependencies": {
"@types/docker-modem": "*",
"@types/node": "*"
@@ -8991,9 +9405,9 @@
"dev": true
},
"node_modules/@types/lossless-json": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@types/lossless-json/-/lossless-json-1.0.1.tgz",
- "integrity": "sha512-zPE8kmpeL5/6L5gtTQHSOkAW/OSYYNTDRt6/2oEgLO1Zd3Rj5WVDoMloTtLJxQJhZGLGbL4pktKSh3NbzdaWdw=="
+ "version": "1.0.2",
+ "resolved": "https://registry.npmjs.org/@types/lossless-json/-/lossless-json-1.0.2.tgz",
+ "integrity": "sha512-RdV8M8qlWUpmk7gnY3fBB4TNn3Ab8hMMqhJC/sG77t8Zk+hjVwvZGTFv+upEBUkxXbq0+UxGAPhOml83w1IkIQ=="
},
"node_modules/@types/minimist": {
"version": "1.2.2",
@@ -9011,9 +9425,9 @@
"integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="
},
"node_modules/@types/nprogress": {
- "version": "0.2.0",
- "resolved": "https://registry.npmjs.org/@types/nprogress/-/nprogress-0.2.0.tgz",
- "integrity": "sha512-1cYJrqq9GezNFPsWTZpFut/d4CjpZqA0vhqDUPFWYKF1oIyBz5qnoYMzR+0C/T96t3ebLAC1SSnwrVOm5/j74A=="
+ "version": "0.2.1",
+ "resolved": "https://registry.npmjs.org/@types/nprogress/-/nprogress-0.2.1.tgz",
+ "integrity": "sha512-TYuyVnp+nOnimgdOydDIDYIxv2kSeuJZw4tF0p/KG7hpzcMF1WkHaREwM8O4blqfT1F7rq0nht6Ko2KVUfWzBA=="
},
"node_modules/@types/parse-json": {
"version": "4.0.0",
@@ -9037,9 +9451,9 @@
"dev": true
},
"node_modules/@types/react": {
- "version": "18.2.21",
- "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.21.tgz",
- "integrity": "sha512-neFKG/sBAwGxHgXiIxnbm3/AAVQ/cMRS93hvBpg8xYRbeQSPVABp9U2bRnPf0iI4+Ucdv3plSxKK+3CW2ENJxA==",
+ "version": "18.2.22",
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.22.tgz",
+ "integrity": "sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
@@ -9122,25 +9536,25 @@
"dev": true
},
"node_modules/@types/ssh2": {
- "version": "1.11.13",
- "resolved": "https://registry.npmjs.org/@types/ssh2/-/ssh2-1.11.13.tgz",
- "integrity": "sha512-08WbG68HvQ2YVi74n2iSUnYHYpUdFc/s2IsI0BHBdJwaqYJpWlVv9elL0tYShTv60yr0ObdxJR5NrCRiGJ/0CQ==",
+ "version": "1.11.14",
+ "resolved": "https://registry.npmjs.org/@types/ssh2/-/ssh2-1.11.14.tgz",
+ "integrity": "sha512-O/U38mvV4jVVrdtZz8KpmitkmeD/PUDeDNNueQhm34166dmaqb1iZ3sfarSxBArM2/iX4PZVJY3EOta0Zks9hw==",
"dependencies": {
"@types/node": "^18.11.18"
}
},
"node_modules/@types/ssh2-streams": {
- "version": "0.1.9",
- "resolved": "https://registry.npmjs.org/@types/ssh2-streams/-/ssh2-streams-0.1.9.tgz",
- "integrity": "sha512-I2J9jKqfmvXLR5GomDiCoHrEJ58hAOmFrekfFqmCFd+A6gaEStvWnPykoWUwld1PNg4G5ag1LwdA+Lz1doRJqg==",
+ "version": "0.1.10",
+ "resolved": "https://registry.npmjs.org/@types/ssh2-streams/-/ssh2-streams-0.1.10.tgz",
+ "integrity": "sha512-r3HYPL0kPxRwk7Nk1P4JxaWPyJ2Mfnfm5efuK0vYgYZu16RerZUTyun6Yqu5KEfc3AR7BvTL1x+nzf7+kbKftQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/ssh2/node_modules/@types/node": {
- "version": "18.17.12",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-18.17.12.tgz",
- "integrity": "sha512-d6xjC9fJ/nSnfDeU0AMDsaJyb1iHsqCSOdi84w4u+SlN/UgQdY5tRhpMzaFYsI4mnpvgTivEaQd0yOUhAtOnEQ=="
+ "version": "18.18.0",
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.0.tgz",
+ "integrity": "sha512-3xA4X31gHT1F1l38ATDIL9GpRLdwVhnEFC8Uikv5ZLlXATwrCYyPq7ZWHxzxc3J/30SUiwiYT+bQe0/XvKlWbw=="
},
"node_modules/@types/stack-utils": {
"version": "2.0.1",
@@ -9148,9 +9562,9 @@
"integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw=="
},
"node_modules/@types/tar-fs": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/@types/tar-fs/-/tar-fs-2.0.1.tgz",
- "integrity": "sha512-qlsQyIY9sN7p221xHuXKNoMfUenOcvEBN4zI8dGsYbYCqHtTarXOEXSIgUnK+GcR0fZDse6pAIc5pIrCh9NefQ==",
+ "version": "2.0.2",
+ "resolved": "https://registry.npmjs.org/@types/tar-fs/-/tar-fs-2.0.2.tgz",
+ "integrity": "sha512-XuZRAvdo7FbDfgQCNkc8NOdSae5XtG+of2mTSgJ85G4OG0miN4E8BTGT+JBTLO87RQ7iCwsIDCqCsHnf2IaSXA==",
"peer": true,
"dependencies": {
"@types/node": "*",
@@ -9158,9 +9572,9 @@
}
},
"node_modules/@types/tar-stream": {
- "version": "2.2.2",
- "resolved": "https://registry.npmjs.org/@types/tar-stream/-/tar-stream-2.2.2.tgz",
- "integrity": "sha512-1AX+Yt3icFuU6kxwmPakaiGrJUwG44MpuiqPg4dSolRFk6jmvs4b3IbUol9wKDLIgU76gevn3EwE8y/DkSJCZQ==",
+ "version": "3.1.0",
+ "resolved": "https://registry.npmjs.org/@types/tar-stream/-/tar-stream-3.1.0.tgz",
+ "integrity": "sha512-U05c7l6K5VdO1ZV+j3E0NJOX1hfJB497M1+QT2rXx2QqyMbEQJqBw3Utk9eUVnWPyLLqYKt5Ja1kPV1ejm6cZw==",
"peer": true,
"dependencies": {
"@types/node": "*"
@@ -9432,59 +9846,59 @@
}
},
"node_modules/@waveshq/standard-defichain-jellyfishsdk": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@waveshq/standard-defichain-jellyfishsdk/-/standard-defichain-jellyfishsdk-2.2.0.tgz",
- "integrity": "sha512-Wx/kVFDMzI04HQpjylQgFrXOlFncIxD6Me0/AFR+CA6555Bi1nMP8fDoKQgcvgZ7VqMt5UikP3WF3g5sibCqaA==",
- "dependencies": {
- "@defichain/jellyfish-address": "4.0.0-beta.10",
- "@defichain/jellyfish-api-core": "4.0.0-beta.10",
- "@defichain/jellyfish-network": "4.0.0-beta.10",
- "@defichain/jellyfish-testing": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction": "4.0.0-beta.10",
- "@defichain/jellyfish-transaction-builder": "4.0.0-beta.10",
- "@defichain/jellyfish-wallet": "4.0.0-beta.10",
- "@defichain/jellyfish-wallet-encrypted": "4.0.0-beta.10",
- "@defichain/jellyfish-wallet-mnemonic": "4.0.0-beta.10",
- "@defichain/playground-api-client": "4.0.0-beta.10",
- "@defichain/testcontainers": "4.0.0-beta.10",
- "@defichain/whale-api-client": "4.0.0-beta.10",
- "@defichain/whale-api-wallet": "4.0.0-beta.10",
- "defichain": "4.0.0-beta.10"
+ "version": "2.11.3",
+ "resolved": "https://registry.npmjs.org/@waveshq/standard-defichain-jellyfishsdk/-/standard-defichain-jellyfishsdk-2.11.3.tgz",
+ "integrity": "sha512-miD1adVBTft4aFQnKcOXVpu5kZl+MksZh144UgCLRM9xaSAWWBj1iK/me+Dwro2lSobIqM6i8DFrRbwGzbxjlQ==",
+ "dependencies": {
+ "@defichain/jellyfish-address": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-api-core": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-network": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-testing": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-transaction-builder": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-wallet": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-wallet-encrypted": "4.0.0-rc.1.2",
+ "@defichain/jellyfish-wallet-mnemonic": "4.0.0-rc.1.2",
+ "@defichain/playground-api-client": "4.0.0-rc.1.2",
+ "@defichain/testcontainers": "4.0.0-rc.1.2",
+ "@defichain/whale-api-client": "4.0.0-rc.1.2",
+ "@defichain/whale-api-wallet": "4.0.0-rc.1.2",
+ "defichain": "4.0.0-rc.1.2"
}
},
"node_modules/@waveshq/standard-web": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@waveshq/standard-web/-/standard-web-2.2.0.tgz",
- "integrity": "sha512-NGdLji/7kDIj4fy9Gr8YViJTyzri2qxl6WCHCufRF5oRkArmvAYQU4nYh13ocbptFgmVdwk69inZzO98gBCnfQ==",
+ "version": "2.11.3",
+ "resolved": "https://registry.npmjs.org/@waveshq/standard-web/-/standard-web-2.11.3.tgz",
+ "integrity": "sha512-M3IzfeSeSeJCjrw8oZO/YOMoTp8YKgqwj3YZgHmRQ4L4zjhX9msyWTvsdJN5PRyQAu4moVcmlQbqCpkEzQUUxQ==",
"dependencies": {
"@netlify/ipx": "^1.4.4",
- "@reduxjs/toolkit": "^1.9.5",
- "@tanstack/react-query": "^5.0.0-beta.20",
- "@types/react": "18.2.21",
+ "@reduxjs/toolkit": "^1.9.6",
+ "@tanstack/react-query": "^5.0.0-rc.1",
+ "@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
- "follow-redirects": "^1.15.2",
- "next": "13.4.19",
- "next-sitemap": "^4.2.2",
+ "follow-redirects": "^1.15.3",
+ "next": "13.5.3",
+ "next-sitemap": "^4.2.3",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
- "react-icons": "^4.10.1",
+ "react-icons": "^4.11.0",
"react-redux": "^8.1.2",
"react-responsive": "^9.0.2",
- "typescript": "4.9.5"
+ "typescript": "*"
}
},
"node_modules/@waveshq/standard-web-linter": {
- "version": "2.2.0",
- "resolved": "https://registry.npmjs.org/@waveshq/standard-web-linter/-/standard-web-linter-2.2.0.tgz",
- "integrity": "sha512-GkNAinp4p4+45hCbozCPN33AeouZRB8PzIRn8Cbqw3ghKKnCOLiTM0oif2A923EK+q7E8JHBt13XjXuGtygHzg==",
+ "version": "2.11.3",
+ "resolved": "https://registry.npmjs.org/@waveshq/standard-web-linter/-/standard-web-linter-2.11.3.tgz",
+ "integrity": "sha512-+u+zQQpvQ8efX5ZkFsqBolKyjlFJpPat1c/w9aNXHLstgoeK7x4JiFKJw5c58d/X+B+sPJr33IjJKK3tn0la4A==",
"dependencies": {
- "eslint": "^8.48.0",
+ "eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
- "eslint-config-next": "13.4.19",
+ "eslint-config-next": "13.5.3",
"eslint-config-prettier": "^9.0.0",
- "eslint-plugin-cypress": "^2.14.0",
+ "eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-node": "^11.1.0",
@@ -9494,54 +9908,30 @@
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
- "next": "13.4.19",
- "prettier": "^3.0.2",
- "typescript": "4.9.5"
- }
- },
- "node_modules/@waveshq/standard-web-linter/node_modules/typescript": {
- "version": "4.9.5",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
- "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=4.2.0"
- }
- },
- "node_modules/@waveshq/standard-web/node_modules/typescript": {
- "version": "4.9.5",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
- "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
- "bin": {
- "tsc": "bin/tsc",
- "tsserver": "bin/tsserver"
- },
- "engines": {
- "node": ">=4.2.0"
+ "next": "13.5.3",
+ "prettier": "^3.0.3",
+ "typescript": "^5.2.2"
}
},
"node_modules/@waveshq/walletkit-core": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@waveshq/walletkit-core/-/walletkit-core-1.3.2.tgz",
- "integrity": "sha512-h0COj+RxfhXKmYyvo3MKdx94fJax5k/+kqs/zJ9LZhrcw7HhORmVVrfMXomPS7kdH3+gs+g6xVIGh0AzRlNTyw==",
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/@waveshq/walletkit-core/-/walletkit-core-1.3.5.tgz",
+ "integrity": "sha512-n8CX/+FBOl8v/8Xqdi3phlx0teleRxjwo1kmXPnT7SmGC0ASRa2l46YQRMxBrqBS4mXRSTyQU9ufnpzY31UjfQ==",
"dependencies": {
"bignumber.js": "^9.1.1",
"ethers": "^5.7.2"
}
},
"node_modules/@waveshq/walletkit-ui": {
- "version": "1.3.2",
- "resolved": "https://registry.npmjs.org/@waveshq/walletkit-ui/-/walletkit-ui-1.3.2.tgz",
- "integrity": "sha512-eqBaPOA/Ztg4jzLQALKKgeL6yp0B3SKfJnWbLuUKeOfeiCUIjO1Nooyvh44tEII+HDeLNg7M3CseZrQlPsJEdg==",
+ "version": "1.3.5",
+ "resolved": "https://registry.npmjs.org/@waveshq/walletkit-ui/-/walletkit-ui-1.3.5.tgz",
+ "integrity": "sha512-0EtBk44BTZA4MuGcmvr04o2TDskoYvxOhWv1rc701soD7jfbdfjbDup9vxEZF0OgXNdmW6A5ckTbg1qNS4geDg==",
"dependencies": {
"@stickyjs/jest": "^1.3.2",
- "@waveshq/standard-defichain-jellyfishsdk": "^2.2.0",
- "@waveshq/standard-web": "^2.2.0",
- "@waveshq/standard-web-linter": "^2.2.0",
- "@waveshq/walletkit-core": "1.3.2",
+ "@waveshq/standard-defichain-jellyfishsdk": "^2.11.2",
+ "@waveshq/standard-web": "^2.11.2",
+ "@waveshq/standard-web-linter": "^2.11.2",
+ "@waveshq/walletkit-core": "1.3.5",
"bignumber.js": "^9.1.1",
"dayjs": "^1.11.9",
"immer": "^9.0.21",
@@ -11953,9 +12343,9 @@
}
},
"node_modules/citty": {
- "version": "0.1.3",
- "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.3.tgz",
- "integrity": "sha512-tb6zTEb2BDSrzFedqFYFUKUuKNaxVJWCm7o02K4kADGkBDyyiz7D40rDMpguczdZyAN3aetd5fhpB01HkreNyg==",
+ "version": "0.1.4",
+ "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.4.tgz",
+ "integrity": "sha512-Q3bK1huLxzQrvj7hImJ7Z1vKYJRPQCDnd0EjXfHMidcjecGOMuLrmuQmtWmFkuKLcMThlGh1yCKG8IEc6VeNXQ==",
"dependencies": {
"consola": "^3.2.3"
}
@@ -12319,9 +12709,9 @@
"integrity": "sha512-Kgy+2+Uwr75vAi6ChWXgHuLvd+QLD7ssgpaRq2zCvt80ptvAfMc/hijcJxXkBa2wMlEZcJvC2H8Ubo+A9ATHIg=="
},
"node_modules/compress-commons": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.1.tgz",
- "integrity": "sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==",
+ "version": "4.1.2",
+ "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz",
+ "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==",
"dependencies": {
"buffer-crc32": "^0.2.13",
"crc32-stream": "^4.0.2",
@@ -12893,9 +13283,9 @@
}
},
"node_modules/crc32-stream": {
- "version": "4.0.2",
- "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.2.tgz",
- "integrity": "sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==",
+ "version": "4.0.3",
+ "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz",
+ "integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==",
"dependencies": {
"crc-32": "^1.2.0",
"readable-stream": "^3.4.0"
@@ -13886,9 +14276,9 @@
}
},
"node_modules/defichain": {
- "version": "4.0.0-beta.10",
- "resolved": "https://registry.npmjs.org/defichain/-/defichain-4.0.0-beta.10.tgz",
- "integrity": "sha512-6+OxGSFm1C0nDCOavmyGTFtSPWjpRt/bUk8gd2hCdfKPw2N7VAVoYdIGleYvrs00btRIdJ0XgmFnaq8v12NjlA==",
+ "version": "4.0.0-rc.1.2",
+ "resolved": "https://registry.npmjs.org/defichain/-/defichain-4.0.0-rc.1.2.tgz",
+ "integrity": "sha512-GKZ14ci0X+kJyYqU+GXS3Bwcc9GJq8yrDR5WXbwKIKKbUJbkntQIWAUGNOrDUqjOkhHIcbdx/9JKOqvash5r5g==",
"engines": {
"node": ">=v16.17.0"
}
@@ -14012,9 +14402,9 @@
}
},
"node_modules/destr": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/destr/-/destr-1.2.2.tgz",
- "integrity": "sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA=="
+ "version": "2.0.1",
+ "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.1.tgz",
+ "integrity": "sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA=="
},
"node_modules/destroy": {
"version": "1.2.0",
@@ -14789,15 +15179,15 @@
}
},
"node_modules/eslint": {
- "version": "8.48.0",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.48.0.tgz",
- "integrity": "sha512-sb6DLeIuRXxeM1YljSe1KEx9/YYeZFQWcV8Rq9HfigmdDEugjLEVEa1ozDjL6YDjBpQHPJxJzze+alxi4T3OLg==",
+ "version": "8.50.0",
+ "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.50.0.tgz",
+ "integrity": "sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==",
"dependencies": {
"@eslint-community/eslint-utils": "^4.2.0",
"@eslint-community/regexpp": "^4.6.1",
"@eslint/eslintrc": "^2.1.2",
- "@eslint/js": "8.48.0",
- "@humanwhocodes/config-array": "^0.11.10",
+ "@eslint/js": "8.50.0",
+ "@humanwhocodes/config-array": "^0.11.11",
"@humanwhocodes/module-importer": "^1.0.1",
"@nodelib/fs.walk": "^1.2.8",
"ajv": "^6.12.4",
@@ -15326,18 +15716,18 @@
}
},
"node_modules/eslint-config-next": {
- "version": "13.4.19",
- "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.19.tgz",
- "integrity": "sha512-WE8367sqMnjhWHvR5OivmfwENRQ1ixfNE9hZwQqNCsd+iM3KnuMc1V8Pt6ytgjxjf23D+xbesADv9x3xaKfT3g==",
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.5.3.tgz",
+ "integrity": "sha512-VN2qbCpq2DMWgs7SVF8KTmc8bVaWz3s4nmcFqRLs7PNBt5AXejOhJuZ4zg2sCEHOvz5RvqdwLeI++NSCV6qHVg==",
"dependencies": {
- "@next/eslint-plugin-next": "13.4.19",
- "@rushstack/eslint-patch": "^1.1.3",
+ "@next/eslint-plugin-next": "13.5.3",
+ "@rushstack/eslint-patch": "^1.3.3",
"@typescript-eslint/parser": "^5.4.2 || ^6.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.5.2",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-jsx-a11y": "^6.5.1",
- "eslint-plugin-react": "^7.31.7",
+ "eslint-plugin-import": "^2.28.1",
+ "eslint-plugin-jsx-a11y": "^6.7.1",
+ "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
},
"peerDependencies": {
@@ -15802,9 +16192,9 @@
}
},
"node_modules/eslint-import-resolver-typescript": {
- "version": "3.6.0",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.0.tgz",
- "integrity": "sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==",
+ "version": "3.6.1",
+ "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz",
+ "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==",
"dependencies": {
"debug": "^4.3.4",
"enhanced-resolve": "^5.12.0",
@@ -15865,9 +16255,9 @@
}
},
"node_modules/eslint-plugin-cypress": {
- "version": "2.14.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.14.0.tgz",
- "integrity": "sha512-eW6tv7iIg7xujleAJX4Ujm649Bf5jweqa4ObPEIuueYRyLZt7qXGWhCY/n4bfeFW/j6nQZwbIBHKZt6EKcL/cg==",
+ "version": "2.15.1",
+ "resolved": "https://registry.npmjs.org/eslint-plugin-cypress/-/eslint-plugin-cypress-2.15.1.tgz",
+ "integrity": "sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w==",
"dependencies": {
"globals": "^13.20.0"
},
@@ -17755,9 +18145,9 @@
}
},
"node_modules/follow-redirects": {
- "version": "1.15.2",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz",
- "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==",
+ "version": "1.15.3",
+ "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz",
+ "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==",
"funding": [
{
"type": "individual",
@@ -18229,9 +18619,9 @@
}
},
"node_modules/get-port-please": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.0.2.tgz",
- "integrity": "sha512-c14cAITf0E+uqdxGALvyYHwOL7UsnWcv3oDtgDAZksiVSGN87xlWVUWGZcmWQU3cICdaOxT+6LdQzUfK2ei1SA=="
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.1.tgz",
+ "integrity": "sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA=="
},
"node_modules/get-stream": {
"version": "5.2.0",
@@ -18263,9 +18653,9 @@
}
},
"node_modules/get-tsconfig": {
- "version": "4.7.0",
- "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.0.tgz",
- "integrity": "sha512-pmjiZ7xtB8URYm74PlGJozDNyhvsVLUcpBa8DZBG3bWHwaHa9bPiRpiSfovw+fjhwONSCWKRyk+JQHEGZmMrzw==",
+ "version": "4.7.2",
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz",
+ "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==",
"dependencies": {
"resolve-pkg-maps": "^1.0.0"
},
@@ -18671,11 +19061,6 @@
"unenv": "^1.7.4"
}
},
- "node_modules/h3/node_modules/destr": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.1.tgz",
- "integrity": "sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA=="
- },
"node_modules/handlebars": {
"version": "4.7.8",
"resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz",
@@ -19497,21 +19882,21 @@
}
},
"node_modules/ipx": {
- "version": "1.2.0",
- "resolved": "https://registry.npmjs.org/ipx/-/ipx-1.2.0.tgz",
- "integrity": "sha512-FkEP56C08HdlqlWKm3pMhatywPtDBTlePTdzskksCR1+7xnB6fQs6pXOTXPTG5i+gGPgCOxbNMUSZEH/DQcWDA==",
+ "version": "1.3.0",
+ "resolved": "https://registry.npmjs.org/ipx/-/ipx-1.3.0.tgz",
+ "integrity": "sha512-Jfu+zQ0NGZwSeZ11CGMOnqWFlIyVcT8dW48e5UxKnMjQXXDy8VLTl8FIP7vRIJ9hd3ZPaJ/RIXXLJfZmBqRXWQ==",
"dependencies": {
"@fastify/accept-negotiator": "^1.1.0",
- "consola": "^3.1.0",
+ "consola": "^3.2.3",
"defu": "^6.1.2",
- "destr": "^1.2.2",
+ "destr": "^2.0.1",
"etag": "^1.8.1",
"image-meta": "^0.1.1",
- "listhen": "^1.0.4",
- "node-fetch-native": "^1.1.1",
+ "listhen": "^1.4.4",
+ "node-fetch-native": "^1.4.0",
"pathe": "^1.1.1",
- "sharp": "^0.32.1",
- "ufo": "^1.1.2",
+ "sharp": "^0.32.5",
+ "ufo": "^1.3.0",
"xss": "^1.0.14"
},
"bin": {
@@ -19519,9 +19904,9 @@
}
},
"node_modules/iron-webcrypto": {
- "version": "0.8.0",
- "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-0.8.0.tgz",
- "integrity": "sha512-gScdcWHjTGclCU15CIv2r069NoQrys1UeUFFfaO1hL++ytLHkVw7N5nXJmFf3J2LEDMz1PkrvC0m62JEeu1axQ==",
+ "version": "0.8.2",
+ "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-0.8.2.tgz",
+ "integrity": "sha512-jGiwmpgTuF19Vt4hn3+AzaVFGpVZt7A1ysd5ivFel2r4aNVFwqaYa6aU6qsF1PM7b+WFivZHz3nipwUOXaOnHg==",
"funding": {
"url": "https://github.com/sponsors/brc-dd"
}
@@ -22468,9 +22853,9 @@
"dev": true
},
"node_modules/jiti": {
- "version": "1.19.3",
- "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.3.tgz",
- "integrity": "sha512-5eEbBDQT/jF1xg6l36P+mWGGoH9Spuy0PCdSr2dtWRDGC6ph/w9ZCL4lmESW8f8F7MwT3XKescfP0wnZWAKL9w==",
+ "version": "1.20.0",
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.20.0.tgz",
+ "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==",
"bin": {
"jiti": "bin/jiti.js"
}
@@ -22869,9 +23254,9 @@
}
},
"node_modules/keccak": {
- "version": "3.0.3",
- "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.3.tgz",
- "integrity": "sha512-JZrLIAJWuZxKbCilMpNz5Vj7Vtb4scDG3dMXLOsbzBmQGyjwE61BbW7bJkfKKCShXiQZt3T6sBgALRtmd+nZaQ==",
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/keccak/-/keccak-3.0.4.tgz",
+ "integrity": "sha512-3vKuW0jV8J3XNTzvfyicFR5qvxrSAGl7KIhvgOu5cmWwM7tZRj3fMbj/pfIf4be7aznbc+prBWGjywox/g2Y6Q==",
"hasInstallScript": true,
"dependencies": {
"node-addon-api": "^2.0.0",
@@ -23445,23 +23830,24 @@
}
},
"node_modules/listhen": {
- "version": "1.4.3",
- "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.4.3.tgz",
- "integrity": "sha512-qVWeM07q7q5R3jwB+Zm603khFQ3yq5OLmAwLIlE3Ftv1K9yfwx4R6/tbCkkr0/SrIyKnHK9xY1C6j03uGOSnIQ==",
+ "version": "1.5.5",
+ "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.5.5.tgz",
+ "integrity": "sha512-LXe8Xlyh3gnxdv4tSjTjscD1vpr/2PRpzq8YIaMJgyKzRG8wdISlWVWnGThJfHnlJ6hmLt2wq1yeeix0TEbuoA==",
"dependencies": {
"@parcel/watcher": "^2.3.0",
"@parcel/watcher-wasm": "2.3.0",
- "citty": "^0.1.3",
+ "citty": "^0.1.4",
"clipboardy": "^3.0.0",
"consola": "^3.2.3",
"defu": "^6.1.2",
- "get-port-please": "^3.0.2",
+ "get-port-please": "^3.1.1",
"h3": "^1.8.1",
"http-shutdown": "^1.2.2",
- "jiti": "^1.19.3",
- "mlly": "^1.4.1",
+ "jiti": "^1.20.0",
+ "mlly": "^1.4.2",
"node-forge": "^1.3.1",
"pathe": "^1.1.1",
+ "std-env": "^3.4.3",
"ufo": "^1.3.0",
"untun": "^0.1.2",
"uqr": "^0.1.2"
@@ -25361,9 +25747,9 @@
"integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="
},
"node_modules/mlly": {
- "version": "1.4.1",
- "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.1.tgz",
- "integrity": "sha512-SCDs78Q2o09jiZiE2WziwVBEqXQ02XkGdUy45cbJf+BpYRIjArXRJ1Wbowxkb+NaM9DWvS3UC9GiO/6eqvQ/pg==",
+ "version": "1.4.2",
+ "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.2.tgz",
+ "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==",
"dependencies": {
"acorn": "^8.10.0",
"pathe": "^1.1.1",
@@ -25480,9 +25866,9 @@
}
},
"node_modules/nan": {
- "version": "2.17.0",
- "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz",
- "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ=="
+ "version": "2.18.0",
+ "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz",
+ "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w=="
},
"node_modules/nanoid": {
"version": "3.3.6",
@@ -25539,12 +25925,12 @@
"integrity": "sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A=="
},
"node_modules/next": {
- "version": "13.4.19",
- "resolved": "https://registry.npmjs.org/next/-/next-13.4.19.tgz",
- "integrity": "sha512-HuPSzzAbJ1T4BD8e0bs6B9C1kWQ6gv8ykZoRWs5AQoiIuqbGHHdQO7Ljuvg05Q0Z24E2ABozHe6FxDvI6HfyAw==",
+ "version": "13.5.3",
+ "resolved": "https://registry.npmjs.org/next/-/next-13.5.3.tgz",
+ "integrity": "sha512-4Nt4HRLYDW/yRpJ/QR2t1v63UOMS55A38dnWv3UDOWGezuY0ZyFO1ABNbD7mulVzs9qVhgy2+ppjdsANpKP1mg==",
"dependencies": {
- "@next/env": "13.4.19",
- "@swc/helpers": "0.5.1",
+ "@next/env": "13.5.3",
+ "@swc/helpers": "0.5.2",
"busboy": "1.6.0",
"caniuse-lite": "^1.0.30001406",
"postcss": "8.4.14",
@@ -25556,18 +25942,18 @@
"next": "dist/bin/next"
},
"engines": {
- "node": ">=16.8.0"
+ "node": ">=16.14.0"
},
"optionalDependencies": {
- "@next/swc-darwin-arm64": "13.4.19",
- "@next/swc-darwin-x64": "13.4.19",
- "@next/swc-linux-arm64-gnu": "13.4.19",
- "@next/swc-linux-arm64-musl": "13.4.19",
- "@next/swc-linux-x64-gnu": "13.4.19",
- "@next/swc-linux-x64-musl": "13.4.19",
- "@next/swc-win32-arm64-msvc": "13.4.19",
- "@next/swc-win32-ia32-msvc": "13.4.19",
- "@next/swc-win32-x64-msvc": "13.4.19"
+ "@next/swc-darwin-arm64": "13.5.3",
+ "@next/swc-darwin-x64": "13.5.3",
+ "@next/swc-linux-arm64-gnu": "13.5.3",
+ "@next/swc-linux-arm64-musl": "13.5.3",
+ "@next/swc-linux-x64-gnu": "13.5.3",
+ "@next/swc-linux-x64-musl": "13.5.3",
+ "@next/swc-win32-arm64-msvc": "13.5.3",
+ "@next/swc-win32-ia32-msvc": "13.5.3",
+ "@next/swc-win32-x64-msvc": "13.5.3"
},
"peerDependencies": {
"@opentelemetry/api": "^1.1.0",
@@ -25585,9 +25971,9 @@
}
},
"node_modules/next-sitemap": {
- "version": "4.2.2",
- "resolved": "https://registry.npmjs.org/next-sitemap/-/next-sitemap-4.2.2.tgz",
- "integrity": "sha512-cz5PyFibUNSJSXOY5mllq5TW0OH6SGG+8GJ9fR9pl1Thu4rvkDye+0N0790h+9kQihDStuVw2xfwC3qihDkflA==",
+ "version": "4.2.3",
+ "resolved": "https://registry.npmjs.org/next-sitemap/-/next-sitemap-4.2.3.tgz",
+ "integrity": "sha512-vjdCxeDuWDzldhCnyFCQipw5bfpl4HmZA7uoo3GAaYGjGgfL4Cxb1CiztPuWGmS+auYs7/8OekRS8C2cjdAsjQ==",
"funding": [
{
"url": "https://github.com/iamvishnusankar/next-sitemap.git"
@@ -26387,11 +26773,6 @@
"ufo": "^1.3.0"
}
},
- "node_modules/ofetch/node_modules/destr": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.1.tgz",
- "integrity": "sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA=="
- },
"node_modules/omggif": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz",
@@ -27383,9 +27764,9 @@
}
},
"node_modules/prettier": {
- "version": "3.0.2",
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.2.tgz",
- "integrity": "sha512-o2YR9qtniXvwEZlOKbveKfDQVyqxbEIWn48Z8m3ZJjBjcCmUy3xZGIv+7AkaeuaTr6yPXJjwv07ZWlsWbEy1rQ==",
+ "version": "3.0.3",
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz",
+ "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==",
"bin": {
"prettier": "bin/prettier.cjs"
},
@@ -28075,9 +28456,9 @@
}
},
"node_modules/react-icons": {
- "version": "4.10.1",
- "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.10.1.tgz",
- "integrity": "sha512-/ngzDP/77tlCfqthiiGNZeYFACw85fUjZtLbedmJ5DTlNDIwETxhwBzdOJ21zj4iJdvc0J3y7yOsX3PpxAJzrw==",
+ "version": "4.11.0",
+ "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-4.11.0.tgz",
+ "integrity": "sha512-V+4khzYcE5EBk/BvcuYRq6V/osf11ODUM2J8hg2FDSswRrGvqiYUYPRy4OdrWaQOBj4NcpJfmHZLNaD+VH0TyA==",
"peerDependencies": {
"react": "*"
}
@@ -29794,9 +30175,9 @@
"integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA=="
},
"node_modules/sharp": {
- "version": "0.32.5",
- "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.5.tgz",
- "integrity": "sha512-0dap3iysgDkNaPOaOL4X/0akdu0ma62GcdC2NBQ+93eqpePdDdr2/LM0sFdDSMmN7yS+odyZtPsb7tx/cYBKnQ==",
+ "version": "0.32.6",
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.32.6.tgz",
+ "integrity": "sha512-KyLTWwgcR9Oe4d9HwCwNM2l7+J0dUQwn/yf7S0EnTtb0eVS4RxO0eUSvxPtzT4F3SY+C4K6fqdv/DO27sJ/v/w==",
"hasInstallScript": true,
"dependencies": {
"color": "^4.2.3",
@@ -30902,6 +31283,11 @@
"node": ">= 0.6"
}
},
+ "node_modules/std-env": {
+ "version": "3.4.3",
+ "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.4.3.tgz",
+ "integrity": "sha512-f9aPhy8fYBuMN+sNfakZV18U39PbalgjXG3lLB9WkaYTxijru61wb57V9wxxNthXM5Sd88ETBWi29qLAsHO52Q=="
+ },
"node_modules/stop-iteration-iterator": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
@@ -32725,9 +33111,9 @@
"integrity": "sha512-7uc1O8h1M1g0rArakJdf0uLRSSgFcYexrVoKo+bzJd32gd4gDy2L/Z+8/FjPnU9ydY3pEnVPtr9FyscYY60K1g=="
},
"node_modules/typescript": {
- "version": "5.1.6",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
- "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==",
+ "version": "5.2.2",
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz",
+ "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
@@ -32994,11 +33380,6 @@
}
}
},
- "node_modules/unstorage/node_modules/destr": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.1.tgz",
- "integrity": "sha512-M1Ob1zPSIvlARiJUkKqvAZ3VAqQY6Jcuth/pBKQ2b1dX/Qx0OnJ8Vux6J2H5PTMQeRzWrrbTu70VxBfv/OPDJA=="
- },
"node_modules/unstorage/node_modules/lru-cache": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz",
@@ -33269,9 +33650,13 @@
}
},
"node_modules/uuid": {
- "version": "9.0.0",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz",
- "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==",
+ "version": "9.0.1",
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
+ "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
+ "funding": [
+ "https://github.com/sponsors/broofa",
+ "https://github.com/sponsors/ctavan"
+ ],
"bin": {
"uuid": "dist/bin/uuid"
}
@@ -34104,18 +34489,57 @@
}
},
"node_modules/zip-stream": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.0.tgz",
- "integrity": "sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==",
+ "version": "4.1.1",
+ "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz",
+ "integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==",
"dependencies": {
- "archiver-utils": "^2.1.0",
- "compress-commons": "^4.1.0",
+ "archiver-utils": "^3.0.4",
+ "compress-commons": "^4.1.2",
+ "readable-stream": "^3.6.0"
+ },
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/zip-stream/node_modules/archiver-utils": {
+ "version": "3.0.4",
+ "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz",
+ "integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==",
+ "dependencies": {
+ "glob": "^7.2.3",
+ "graceful-fs": "^4.2.0",
+ "lazystream": "^1.0.0",
+ "lodash.defaults": "^4.2.0",
+ "lodash.difference": "^4.5.0",
+ "lodash.flatten": "^4.4.0",
+ "lodash.isplainobject": "^4.0.6",
+ "lodash.union": "^4.6.0",
+ "normalize-path": "^3.0.0",
"readable-stream": "^3.6.0"
},
"engines": {
"node": ">= 10"
}
},
+ "node_modules/zip-stream/node_modules/glob": {
+ "version": "7.2.3",
+ "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
+ "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
+ "dependencies": {
+ "fs.realpath": "^1.0.0",
+ "inflight": "^1.0.4",
+ "inherits": "2",
+ "minimatch": "^3.1.1",
+ "once": "^1.3.0",
+ "path-is-absolute": "^1.0.0"
+ },
+ "engines": {
+ "node": "*"
+ },
+ "funding": {
+ "url": "https://github.com/sponsors/isaacs"
+ }
+ },
"node_modules/zod": {
"version": "3.21.4",
"resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
diff --git a/package.json b/package.json
index 325043944f..1b100fe310 100644
--- a/package.json
+++ b/package.json
@@ -34,8 +34,8 @@
"@reduxjs/toolkit": "^1.9.5",
"@shopify/flash-list": "1.4.3",
"@waveshq/standard-defichain-jellyfishsdk": "^2.2.0",
- "@waveshq/walletkit-core": "^1.3.2",
- "@waveshq/walletkit-ui": "^1.3.2",
+ "@waveshq/walletkit-core": "^1.3.5",
+ "@waveshq/walletkit-ui": "^1.3.5",
"bignumber.js": "^9.1.1",
"buffer": "^6.0.3",
"classnames": "^2.3.2",