@bit-buccaneers/wallet-abstraction 0.0.32 → 0.0.34
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/dev.js +7 -2
- package/dist/dev.jsx +7 -2
- package/dist/index.js +7 -2
- package/dist/index.jsx +7 -2
- package/package.json +1 -1
package/dist/dev.js
CHANGED
|
@@ -16,7 +16,11 @@ var config = null;
|
|
|
16
16
|
var configuredChains = [mainnet];
|
|
17
17
|
var createEvmConfig = (chains) => {
|
|
18
18
|
if (chains) configuredChains = chains;
|
|
19
|
-
const connectors = [
|
|
19
|
+
const connectors = [
|
|
20
|
+
injected(),
|
|
21
|
+
metaMask(),
|
|
22
|
+
coinbaseWallet({ appName: "Wallet Abstraction", preference: "eoaOnly" })
|
|
23
|
+
];
|
|
20
24
|
const transports = {};
|
|
21
25
|
for (const chain of configuredChains) {
|
|
22
26
|
transports[chain.id] = http();
|
|
@@ -895,7 +899,8 @@ var handleSolflareSignCallback = () => {
|
|
|
895
899
|
var TRUST_CONFIG = {
|
|
896
900
|
walletId: "trust",
|
|
897
901
|
wcDeeplink: "https://link.trustwallet.com/wc",
|
|
898
|
-
injectedKey: "isTrust"
|
|
902
|
+
injectedKey: "isTrust",
|
|
903
|
+
signDeeplink: "trust://"
|
|
899
904
|
};
|
|
900
905
|
var buildTrustBrowseUrl = () => `https://link.trustwallet.com/open_url?url=${encodeURIComponent(window.location.href)}`;
|
|
901
906
|
var createTrustEvmMobileConnector = () => createWcEvmConnector(TRUST_CONFIG);
|
package/dist/dev.jsx
CHANGED
|
@@ -7,7 +7,11 @@ var config = null;
|
|
|
7
7
|
var configuredChains = [mainnet];
|
|
8
8
|
var createEvmConfig = (chains) => {
|
|
9
9
|
if (chains) configuredChains = chains;
|
|
10
|
-
const connectors = [
|
|
10
|
+
const connectors = [
|
|
11
|
+
injected(),
|
|
12
|
+
metaMask(),
|
|
13
|
+
coinbaseWallet({ appName: "Wallet Abstraction", preference: "eoaOnly" })
|
|
14
|
+
];
|
|
11
15
|
const transports = {};
|
|
12
16
|
for (const chain of configuredChains) {
|
|
13
17
|
transports[chain.id] = http();
|
|
@@ -902,7 +906,8 @@ var handleSolflareSignCallback = () => {
|
|
|
902
906
|
var TRUST_CONFIG = {
|
|
903
907
|
walletId: "trust",
|
|
904
908
|
wcDeeplink: "https://link.trustwallet.com/wc",
|
|
905
|
-
injectedKey: "isTrust"
|
|
909
|
+
injectedKey: "isTrust",
|
|
910
|
+
signDeeplink: "trust://"
|
|
906
911
|
};
|
|
907
912
|
var buildTrustBrowseUrl = () => `https://link.trustwallet.com/open_url?url=${encodeURIComponent(window.location.href)}`;
|
|
908
913
|
var createTrustEvmMobileConnector = () => createWcEvmConnector(TRUST_CONFIG);
|
package/dist/index.js
CHANGED
|
@@ -16,7 +16,11 @@ var config = null;
|
|
|
16
16
|
var configuredChains = [mainnet];
|
|
17
17
|
var createEvmConfig = (chains) => {
|
|
18
18
|
if (chains) configuredChains = chains;
|
|
19
|
-
const connectors = [
|
|
19
|
+
const connectors = [
|
|
20
|
+
injected(),
|
|
21
|
+
metaMask(),
|
|
22
|
+
coinbaseWallet({ appName: "Wallet Abstraction", preference: "eoaOnly" })
|
|
23
|
+
];
|
|
20
24
|
const transports = {};
|
|
21
25
|
for (const chain of configuredChains) {
|
|
22
26
|
transports[chain.id] = http();
|
|
@@ -895,7 +899,8 @@ var handleSolflareSignCallback = () => {
|
|
|
895
899
|
var TRUST_CONFIG = {
|
|
896
900
|
walletId: "trust",
|
|
897
901
|
wcDeeplink: "https://link.trustwallet.com/wc",
|
|
898
|
-
injectedKey: "isTrust"
|
|
902
|
+
injectedKey: "isTrust",
|
|
903
|
+
signDeeplink: "trust://"
|
|
899
904
|
};
|
|
900
905
|
var buildTrustBrowseUrl = () => `https://link.trustwallet.com/open_url?url=${encodeURIComponent(window.location.href)}`;
|
|
901
906
|
var createTrustEvmMobileConnector = () => createWcEvmConnector(TRUST_CONFIG);
|
package/dist/index.jsx
CHANGED
|
@@ -7,7 +7,11 @@ var config = null;
|
|
|
7
7
|
var configuredChains = [mainnet];
|
|
8
8
|
var createEvmConfig = (chains) => {
|
|
9
9
|
if (chains) configuredChains = chains;
|
|
10
|
-
const connectors = [
|
|
10
|
+
const connectors = [
|
|
11
|
+
injected(),
|
|
12
|
+
metaMask(),
|
|
13
|
+
coinbaseWallet({ appName: "Wallet Abstraction", preference: "eoaOnly" })
|
|
14
|
+
];
|
|
11
15
|
const transports = {};
|
|
12
16
|
for (const chain of configuredChains) {
|
|
13
17
|
transports[chain.id] = http();
|
|
@@ -902,7 +906,8 @@ var handleSolflareSignCallback = () => {
|
|
|
902
906
|
var TRUST_CONFIG = {
|
|
903
907
|
walletId: "trust",
|
|
904
908
|
wcDeeplink: "https://link.trustwallet.com/wc",
|
|
905
|
-
injectedKey: "isTrust"
|
|
909
|
+
injectedKey: "isTrust",
|
|
910
|
+
signDeeplink: "trust://"
|
|
906
911
|
};
|
|
907
912
|
var buildTrustBrowseUrl = () => `https://link.trustwallet.com/open_url?url=${encodeURIComponent(window.location.href)}`;
|
|
908
913
|
var createTrustEvmMobileConnector = () => createWcEvmConnector(TRUST_CONFIG);
|