@onekeyfe/inpage-providers-hub 1.1.29 → 1.1.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/connectButtonHack/sites/compound.js +40 -7
- package/dist/cjs/connectButtonHack/sites/gem.js +4 -5
- package/dist/cjs/connectButtonHack/sites/magiceden.js +1 -1
- package/dist/cjs/connectButtonHack/sites/oasis.js +4 -5
- package/dist/cjs/connectButtonHack/sites/opensea.js +1 -1
- package/dist/cjs/connectButtonHack/sites/rarible.js +1 -1
- package/dist/cjs/connectButtonHack/sites/sushi.js +1 -1
- package/dist/cjs/connectButtonHack/sites/yearn.js +6 -16
- package/dist/connectButtonHack/sites/compound.js +41 -8
- package/dist/connectButtonHack/sites/gem.js +4 -5
- package/dist/connectButtonHack/sites/magiceden.js +1 -1
- package/dist/connectButtonHack/sites/oasis.js +4 -5
- package/dist/connectButtonHack/sites/opensea.js +1 -1
- package/dist/connectButtonHack/sites/rarible.js +1 -1
- package/dist/connectButtonHack/sites/sushi.js +1 -1
- package/dist/connectButtonHack/sites/yearn.js +6 -16
- package/package.json +15 -15
|
@@ -4,16 +4,49 @@ const hackConnectButton_1 = require("../hackConnectButton");
|
|
|
4
4
|
const cross_inpage_provider_types_1 = require("@onekeyfe/cross-inpage-provider-types");
|
|
5
5
|
const consts_1 = require("../consts");
|
|
6
6
|
(0, hackConnectButton_1.hackConnectButton)({
|
|
7
|
-
urls: [
|
|
7
|
+
urls: [
|
|
8
|
+
'compound.finance',
|
|
9
|
+
'app.compound.finance',
|
|
10
|
+
'www.compound.finance',
|
|
11
|
+
'v2-app.compound.finance',
|
|
12
|
+
],
|
|
8
13
|
providers: [cross_inpage_provider_types_1.IInjectedProviderNames.ethereum],
|
|
9
14
|
replaceMethod() {
|
|
10
15
|
const replaceFunc = ({ findName, findIcon, icon, text, }) => {
|
|
11
|
-
|
|
12
|
-
if (
|
|
13
|
-
img
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
span
|
|
16
|
+
var _a, _b;
|
|
17
|
+
if (window.location.hostname === 'v2-app.compound.finance') {
|
|
18
|
+
const img = document.querySelector(`.connect-choices .connect-item ${findIcon || ''}`);
|
|
19
|
+
if (img) {
|
|
20
|
+
img.style.backgroundImage = `url(${icon})`;
|
|
21
|
+
const span = img.nextSibling;
|
|
22
|
+
if (span && span.innerText === findName) {
|
|
23
|
+
span.innerText = text;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
else {
|
|
28
|
+
const walletList = Array.from(document.querySelectorAll('.connect-wallet-items .connect-wallet-item__info > .heading'));
|
|
29
|
+
const span = walletList.find((item) => item.innerHTML.includes(findName));
|
|
30
|
+
if (span) {
|
|
31
|
+
span.innerHTML = text;
|
|
32
|
+
const prevImg = (_a = span.parentNode) === null || _a === void 0 ? void 0 : _a.previousSibling;
|
|
33
|
+
if (prevImg && prevImg.src) {
|
|
34
|
+
prevImg.src = icon;
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
prevImg === null || prevImg === void 0 ? void 0 : prevImg.remove();
|
|
38
|
+
const imgContainer = (_b = span.parentNode) === null || _b === void 0 ? void 0 : _b.parentNode;
|
|
39
|
+
if (imgContainer) {
|
|
40
|
+
(0, hackConnectButton_1.createNewImageToContainer)({
|
|
41
|
+
container: imgContainer,
|
|
42
|
+
icon,
|
|
43
|
+
removeSvg: true,
|
|
44
|
+
onCreated(img) {
|
|
45
|
+
img.className = 'h-8 w-8 mr-4';
|
|
46
|
+
},
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
}
|
|
17
50
|
}
|
|
18
51
|
}
|
|
19
52
|
};
|
|
@@ -4,17 +4,16 @@ const hackConnectButton_1 = require("../hackConnectButton");
|
|
|
4
4
|
const cross_inpage_provider_types_1 = require("@onekeyfe/cross-inpage-provider-types");
|
|
5
5
|
const consts_1 = require("../consts");
|
|
6
6
|
(0, hackConnectButton_1.hackConnectButton)({
|
|
7
|
-
urls: ['gem.xyz', 'www.gem.xyz'],
|
|
7
|
+
urls: ['gem.xyz', 'www.gem.xyz', 'pro.opensea.io'],
|
|
8
8
|
providers: [cross_inpage_provider_types_1.IInjectedProviderNames.ethereum],
|
|
9
9
|
replaceMethod() {
|
|
10
10
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
11
|
-
var _a, _b, _c;
|
|
12
|
-
const
|
|
13
|
-
const header = modalHeaders.find((item) => item.innerHTML.includes('Choose your wallet'));
|
|
11
|
+
var _a, _b, _c, _d;
|
|
12
|
+
const header = document.querySelector('#rk_connect_title');
|
|
14
13
|
if (!header) {
|
|
15
14
|
return;
|
|
16
15
|
}
|
|
17
|
-
const containers = Array.from((_c = (_b = (_a = header === null || header === void 0 ? void 0 : header.parentNode) === null || _a === void 0 ? void 0 : _a.parentNode) === null || _b === void 0 ? void 0 : _b.querySelectorAll('div >
|
|
16
|
+
const containers = Array.from((_d = (_c = (_b = (_a = header === null || header === void 0 ? void 0 : header.parentNode) === null || _a === void 0 ? void 0 : _a.parentNode) === null || _b === void 0 ? void 0 : _b.nextSibling) === null || _c === void 0 ? void 0 : _c.querySelectorAll('div > button > div > div > div + div')) !== null && _d !== void 0 ? _d : []);
|
|
18
17
|
const span = containers.find((item) => item.innerHTML.includes(findName));
|
|
19
18
|
if (span) {
|
|
20
19
|
span.innerHTML = text;
|
|
@@ -9,7 +9,7 @@ const consts_1 = require("../consts");
|
|
|
9
9
|
replaceMethod() {
|
|
10
10
|
const replaceFunc = ({ findName, findIconText, icon, text, }) => {
|
|
11
11
|
var _a;
|
|
12
|
-
const img = document.querySelector(`#headlessui-portal-root li > button > img[alt="${findIconText}"]`);
|
|
12
|
+
const img = document.querySelector(`#headlessui-portal-root li > button > div > img[alt="${findIconText}"]`);
|
|
13
13
|
if (img && img.src) {
|
|
14
14
|
img.src = icon;
|
|
15
15
|
const span = (_a = img.nextSibling) === null || _a === void 0 ? void 0 : _a.querySelector('span');
|
|
@@ -8,13 +8,12 @@ const consts_1 = require("../consts");
|
|
|
8
8
|
providers: [cross_inpage_provider_types_1.IInjectedProviderNames.ethereum],
|
|
9
9
|
replaceMethod() {
|
|
10
10
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
11
|
-
var _a;
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
const span = arrow === null || arrow === void 0 ? void 0 : arrow.previousSibling;
|
|
11
|
+
var _a, _b, _c, _d, _e;
|
|
12
|
+
const spans = Array.from((_d = (_c = (_b = (_a = window.document) === null || _a === void 0 ? void 0 : _a.querySelector('onboard-v2')) === null || _b === void 0 ? void 0 : _b.shadowRoot) === null || _c === void 0 ? void 0 : _c.querySelectorAll('.wallets-container .wallet-button-container .name')) !== null && _d !== void 0 ? _d : []);
|
|
13
|
+
const span = spans.find((item) => item.innerHTML === findName);
|
|
15
14
|
if (span) {
|
|
16
15
|
span.innerHTML = text;
|
|
17
|
-
const imgContainer = (
|
|
16
|
+
const imgContainer = (_e = span.previousElementSibling) === null || _e === void 0 ? void 0 : _e.querySelector('div');
|
|
18
17
|
if (imgContainer) {
|
|
19
18
|
(0, hackConnectButton_1.createNewImageToContainer)({
|
|
20
19
|
container: imgContainer,
|
|
@@ -9,7 +9,7 @@ const consts_1 = require("../consts");
|
|
|
9
9
|
replaceMethod() {
|
|
10
10
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
11
11
|
var _a, _b;
|
|
12
|
-
const listDom = (_a = window.document.querySelector('
|
|
12
|
+
const listDom = (_a = window.document.querySelector('div[data-testid="wallet-modal"] ul')) === null || _a === void 0 ? void 0 : _a.childNodes;
|
|
13
13
|
if (!listDom || !listDom.length) {
|
|
14
14
|
return;
|
|
15
15
|
}
|
|
@@ -9,7 +9,7 @@ const consts_1 = require("../consts");
|
|
|
9
9
|
callbackDelay: 0,
|
|
10
10
|
replaceMethod() {
|
|
11
11
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
12
|
-
const spans = Array.from(document.querySelectorAll('.ScrollbarsCustom ~ div > div > button > span '));
|
|
12
|
+
const spans = Array.from(document.querySelectorAll('.ScrollbarsCustom ~ div > div > button > span > span > span > span'));
|
|
13
13
|
const span = spans.find((item) => item.innerHTML === findName);
|
|
14
14
|
if (span) {
|
|
15
15
|
span.innerHTML = text;
|
|
@@ -8,7 +8,7 @@ const consts_1 = require("../consts");
|
|
|
8
8
|
providers: [cross_inpage_provider_types_1.IInjectedProviderNames.ethereum],
|
|
9
9
|
replaceMethod() {
|
|
10
10
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
11
|
-
const buttonList = Array.from(document.querySelectorAll('
|
|
11
|
+
const buttonList = Array.from(document.querySelectorAll('body header button'));
|
|
12
12
|
const btn = buttonList.find((item) => item.innerHTML.includes(findName));
|
|
13
13
|
if (btn) {
|
|
14
14
|
const childNodes = Array.from(btn.childNodes);
|
|
@@ -13,25 +13,15 @@ const utilsDomNodes_1 = __importDefault(require("../utils/utilsDomNodes"));
|
|
|
13
13
|
replaceMethod() {
|
|
14
14
|
const replaceFunc = ({ findName, findIcon, icon, text, }) => {
|
|
15
15
|
var _a;
|
|
16
|
-
const modalDom = document.querySelector('
|
|
16
|
+
const modalDom = document.querySelector('.yearn--modalLogin');
|
|
17
17
|
if (!modalDom) {
|
|
18
18
|
return;
|
|
19
19
|
}
|
|
20
|
-
const
|
|
21
|
-
const
|
|
22
|
-
if (
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
utilsDomNodes_1.default.setIsReplaced(img);
|
|
26
|
-
const span = (_a = img === null || img === void 0 ? void 0 : img.parentNode) === null || _a === void 0 ? void 0 : _a.nextElementSibling;
|
|
27
|
-
if (span && utilsDomNodes_1.default.isInnerContentMatch(span, findName)) {
|
|
28
|
-
span.childNodes[0].nodeValue = text;
|
|
29
|
-
utilsDomNodes_1.default.setIsReplaced(span);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
// WalletConnect is svg
|
|
33
|
-
if (svg) {
|
|
34
|
-
const svgContainer = svg.parentElement;
|
|
20
|
+
const names = Array.from(modalDom.querySelectorAll('.yearn--modalLogin-card>b'));
|
|
21
|
+
const name = names.find((item) => utilsDomNodes_1.default.isInnerContentMatch(item, findName));
|
|
22
|
+
if (name) {
|
|
23
|
+
const svg = (_a = name.previousElementSibling) === null || _a === void 0 ? void 0 : _a.querySelector('svg');
|
|
24
|
+
const svgContainer = svg === null || svg === void 0 ? void 0 : svg.parentElement;
|
|
35
25
|
const span = svgContainer === null || svgContainer === void 0 ? void 0 : svgContainer.nextElementSibling;
|
|
36
26
|
if (utilsDomNodes_1.default.isReplaced(svgContainer)) {
|
|
37
27
|
return;
|
|
@@ -1,17 +1,50 @@
|
|
|
1
|
-
import { hackConnectButton } from '../hackConnectButton';
|
|
1
|
+
import { createNewImageToContainer, hackConnectButton } from '../hackConnectButton';
|
|
2
2
|
import { IInjectedProviderNames } from '@onekeyfe/cross-inpage-provider-types';
|
|
3
3
|
import { WALLET_CONNECT_INFO } from '../consts';
|
|
4
4
|
hackConnectButton({
|
|
5
|
-
urls: [
|
|
5
|
+
urls: [
|
|
6
|
+
'compound.finance',
|
|
7
|
+
'app.compound.finance',
|
|
8
|
+
'www.compound.finance',
|
|
9
|
+
'v2-app.compound.finance',
|
|
10
|
+
],
|
|
6
11
|
providers: [IInjectedProviderNames.ethereum],
|
|
7
12
|
replaceMethod() {
|
|
8
13
|
const replaceFunc = ({ findName, findIcon, icon, text, }) => {
|
|
9
|
-
|
|
10
|
-
if (
|
|
11
|
-
img
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
span
|
|
14
|
+
var _a, _b;
|
|
15
|
+
if (window.location.hostname === 'v2-app.compound.finance') {
|
|
16
|
+
const img = document.querySelector(`.connect-choices .connect-item ${findIcon || ''}`);
|
|
17
|
+
if (img) {
|
|
18
|
+
img.style.backgroundImage = `url(${icon})`;
|
|
19
|
+
const span = img.nextSibling;
|
|
20
|
+
if (span && span.innerText === findName) {
|
|
21
|
+
span.innerText = text;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
const walletList = Array.from(document.querySelectorAll('.connect-wallet-items .connect-wallet-item__info > .heading'));
|
|
27
|
+
const span = walletList.find((item) => item.innerHTML.includes(findName));
|
|
28
|
+
if (span) {
|
|
29
|
+
span.innerHTML = text;
|
|
30
|
+
const prevImg = (_a = span.parentNode) === null || _a === void 0 ? void 0 : _a.previousSibling;
|
|
31
|
+
if (prevImg && prevImg.src) {
|
|
32
|
+
prevImg.src = icon;
|
|
33
|
+
}
|
|
34
|
+
else {
|
|
35
|
+
prevImg === null || prevImg === void 0 ? void 0 : prevImg.remove();
|
|
36
|
+
const imgContainer = (_b = span.parentNode) === null || _b === void 0 ? void 0 : _b.parentNode;
|
|
37
|
+
if (imgContainer) {
|
|
38
|
+
createNewImageToContainer({
|
|
39
|
+
container: imgContainer,
|
|
40
|
+
icon,
|
|
41
|
+
removeSvg: true,
|
|
42
|
+
onCreated(img) {
|
|
43
|
+
img.className = 'h-8 w-8 mr-4';
|
|
44
|
+
},
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
}
|
|
15
48
|
}
|
|
16
49
|
}
|
|
17
50
|
};
|
|
@@ -2,17 +2,16 @@ import { createNewImageToContainer, hackConnectButton } from '../hackConnectButt
|
|
|
2
2
|
import { IInjectedProviderNames } from '@onekeyfe/cross-inpage-provider-types';
|
|
3
3
|
import { WALLET_CONNECT_INFO } from '../consts';
|
|
4
4
|
hackConnectButton({
|
|
5
|
-
urls: ['gem.xyz', 'www.gem.xyz'],
|
|
5
|
+
urls: ['gem.xyz', 'www.gem.xyz', 'pro.opensea.io'],
|
|
6
6
|
providers: [IInjectedProviderNames.ethereum],
|
|
7
7
|
replaceMethod() {
|
|
8
8
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
9
|
-
var _a, _b, _c;
|
|
10
|
-
const
|
|
11
|
-
const header = modalHeaders.find((item) => item.innerHTML.includes('Choose your wallet'));
|
|
9
|
+
var _a, _b, _c, _d;
|
|
10
|
+
const header = document.querySelector('#rk_connect_title');
|
|
12
11
|
if (!header) {
|
|
13
12
|
return;
|
|
14
13
|
}
|
|
15
|
-
const containers = Array.from((_c = (_b = (_a = header === null || header === void 0 ? void 0 : header.parentNode) === null || _a === void 0 ? void 0 : _a.parentNode) === null || _b === void 0 ? void 0 : _b.querySelectorAll('div >
|
|
14
|
+
const containers = Array.from((_d = (_c = (_b = (_a = header === null || header === void 0 ? void 0 : header.parentNode) === null || _a === void 0 ? void 0 : _a.parentNode) === null || _b === void 0 ? void 0 : _b.nextSibling) === null || _c === void 0 ? void 0 : _c.querySelectorAll('div > button > div > div > div + div')) !== null && _d !== void 0 ? _d : []);
|
|
16
15
|
const span = containers.find((item) => item.innerHTML.includes(findName));
|
|
17
16
|
if (span) {
|
|
18
17
|
span.innerHTML = text;
|
|
@@ -7,7 +7,7 @@ hackConnectButton({
|
|
|
7
7
|
replaceMethod() {
|
|
8
8
|
const replaceFunc = ({ findName, findIconText, icon, text, }) => {
|
|
9
9
|
var _a;
|
|
10
|
-
const img = document.querySelector(`#headlessui-portal-root li > button > img[alt="${findIconText}"]`);
|
|
10
|
+
const img = document.querySelector(`#headlessui-portal-root li > button > div > img[alt="${findIconText}"]`);
|
|
11
11
|
if (img && img.src) {
|
|
12
12
|
img.src = icon;
|
|
13
13
|
const span = (_a = img.nextSibling) === null || _a === void 0 ? void 0 : _a.querySelector('span');
|
|
@@ -6,13 +6,12 @@ hackConnectButton({
|
|
|
6
6
|
providers: [IInjectedProviderNames.ethereum],
|
|
7
7
|
replaceMethod() {
|
|
8
8
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
9
|
-
var _a;
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const span = arrow === null || arrow === void 0 ? void 0 : arrow.previousSibling;
|
|
9
|
+
var _a, _b, _c, _d, _e;
|
|
10
|
+
const spans = Array.from((_d = (_c = (_b = (_a = window.document) === null || _a === void 0 ? void 0 : _a.querySelector('onboard-v2')) === null || _b === void 0 ? void 0 : _b.shadowRoot) === null || _c === void 0 ? void 0 : _c.querySelectorAll('.wallets-container .wallet-button-container .name')) !== null && _d !== void 0 ? _d : []);
|
|
11
|
+
const span = spans.find((item) => item.innerHTML === findName);
|
|
13
12
|
if (span) {
|
|
14
13
|
span.innerHTML = text;
|
|
15
|
-
const imgContainer = (
|
|
14
|
+
const imgContainer = (_e = span.previousElementSibling) === null || _e === void 0 ? void 0 : _e.querySelector('div');
|
|
16
15
|
if (imgContainer) {
|
|
17
16
|
createNewImageToContainer({
|
|
18
17
|
container: imgContainer,
|
|
@@ -7,7 +7,7 @@ hackConnectButton({
|
|
|
7
7
|
replaceMethod() {
|
|
8
8
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
9
9
|
var _a, _b;
|
|
10
|
-
const listDom = (_a = window.document.querySelector('
|
|
10
|
+
const listDom = (_a = window.document.querySelector('div[data-testid="wallet-modal"] ul')) === null || _a === void 0 ? void 0 : _a.childNodes;
|
|
11
11
|
if (!listDom || !listDom.length) {
|
|
12
12
|
return;
|
|
13
13
|
}
|
|
@@ -7,7 +7,7 @@ hackConnectButton({
|
|
|
7
7
|
callbackDelay: 0,
|
|
8
8
|
replaceMethod() {
|
|
9
9
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
10
|
-
const spans = Array.from(document.querySelectorAll('.ScrollbarsCustom ~ div > div > button > span '));
|
|
10
|
+
const spans = Array.from(document.querySelectorAll('.ScrollbarsCustom ~ div > div > button > span > span > span > span'));
|
|
11
11
|
const span = spans.find((item) => item.innerHTML === findName);
|
|
12
12
|
if (span) {
|
|
13
13
|
span.innerHTML = text;
|
|
@@ -6,7 +6,7 @@ hackConnectButton({
|
|
|
6
6
|
providers: [IInjectedProviderNames.ethereum],
|
|
7
7
|
replaceMethod() {
|
|
8
8
|
const replaceFunc = ({ findName, icon, text, }) => {
|
|
9
|
-
const buttonList = Array.from(document.querySelectorAll('
|
|
9
|
+
const buttonList = Array.from(document.querySelectorAll('body header button'));
|
|
10
10
|
const btn = buttonList.find((item) => item.innerHTML.includes(findName));
|
|
11
11
|
if (btn) {
|
|
12
12
|
const childNodes = Array.from(btn.childNodes);
|
|
@@ -8,25 +8,15 @@ hackConnectButton({
|
|
|
8
8
|
replaceMethod() {
|
|
9
9
|
const replaceFunc = ({ findName, findIcon, icon, text, }) => {
|
|
10
10
|
var _a;
|
|
11
|
-
const modalDom = document.querySelector('
|
|
11
|
+
const modalDom = document.querySelector('.yearn--modalLogin');
|
|
12
12
|
if (!modalDom) {
|
|
13
13
|
return;
|
|
14
14
|
}
|
|
15
|
-
const
|
|
16
|
-
const
|
|
17
|
-
if (
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
utilsDomNodes.setIsReplaced(img);
|
|
21
|
-
const span = (_a = img === null || img === void 0 ? void 0 : img.parentNode) === null || _a === void 0 ? void 0 : _a.nextElementSibling;
|
|
22
|
-
if (span && utilsDomNodes.isInnerContentMatch(span, findName)) {
|
|
23
|
-
span.childNodes[0].nodeValue = text;
|
|
24
|
-
utilsDomNodes.setIsReplaced(span);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
// WalletConnect is svg
|
|
28
|
-
if (svg) {
|
|
29
|
-
const svgContainer = svg.parentElement;
|
|
15
|
+
const names = Array.from(modalDom.querySelectorAll('.yearn--modalLogin-card>b'));
|
|
16
|
+
const name = names.find((item) => utilsDomNodes.isInnerContentMatch(item, findName));
|
|
17
|
+
if (name) {
|
|
18
|
+
const svg = (_a = name.previousElementSibling) === null || _a === void 0 ? void 0 : _a.querySelector('svg');
|
|
19
|
+
const svgContainer = svg === null || svg === void 0 ? void 0 : svg.parentElement;
|
|
30
20
|
const span = svgContainer === null || svgContainer === void 0 ? void 0 : svgContainer.nextElementSibling;
|
|
31
21
|
if (utilsDomNodes.isReplaced(svgContainer)) {
|
|
32
22
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onekeyfe/inpage-providers-hub",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"cross-inpage-provider"
|
|
6
6
|
],
|
|
@@ -28,20 +28,20 @@
|
|
|
28
28
|
"start": "tsc --watch"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@onekeyfe/cross-inpage-provider-core": "1.1.
|
|
32
|
-
"@onekeyfe/cross-inpage-provider-types": "1.1.
|
|
33
|
-
"@onekeyfe/onekey-aptos-provider": "1.1.
|
|
34
|
-
"@onekeyfe/onekey-cardano-provider": "1.1.
|
|
35
|
-
"@onekeyfe/onekey-conflux-provider": "1.1.
|
|
36
|
-
"@onekeyfe/onekey-cosmos-provider": "1.1.
|
|
37
|
-
"@onekeyfe/onekey-eth-provider": "1.1.
|
|
38
|
-
"@onekeyfe/onekey-polkadot-provider": "1.1.
|
|
39
|
-
"@onekeyfe/onekey-private-provider": "1.1.
|
|
40
|
-
"@onekeyfe/onekey-solana-provider": "1.1.
|
|
41
|
-
"@onekeyfe/onekey-starcoin-provider": "1.1.
|
|
42
|
-
"@onekeyfe/onekey-sui-provider": "1.1.
|
|
43
|
-
"@onekeyfe/onekey-tron-provider": "1.1.
|
|
31
|
+
"@onekeyfe/cross-inpage-provider-core": "1.1.30",
|
|
32
|
+
"@onekeyfe/cross-inpage-provider-types": "1.1.30",
|
|
33
|
+
"@onekeyfe/onekey-aptos-provider": "1.1.30",
|
|
34
|
+
"@onekeyfe/onekey-cardano-provider": "1.1.30",
|
|
35
|
+
"@onekeyfe/onekey-conflux-provider": "1.1.30",
|
|
36
|
+
"@onekeyfe/onekey-cosmos-provider": "1.1.30",
|
|
37
|
+
"@onekeyfe/onekey-eth-provider": "1.1.30",
|
|
38
|
+
"@onekeyfe/onekey-polkadot-provider": "1.1.30",
|
|
39
|
+
"@onekeyfe/onekey-private-provider": "1.1.30",
|
|
40
|
+
"@onekeyfe/onekey-solana-provider": "1.1.30",
|
|
41
|
+
"@onekeyfe/onekey-starcoin-provider": "1.1.30",
|
|
42
|
+
"@onekeyfe/onekey-sui-provider": "1.1.30",
|
|
43
|
+
"@onekeyfe/onekey-tron-provider": "1.1.30",
|
|
44
44
|
"web3": "^1.7.3"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "9efd9608ab6acf801f61145cc62c964941b2b340"
|
|
47
47
|
}
|