cruzo-web3 0.1.0 → 0.1.1
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.
|
@@ -3,7 +3,7 @@ import styles from "./web3-signing.component.module.css";
|
|
|
3
3
|
import { AbstractComponent, componentsRegistryService, routerService, RxBucket } from "cruzo";
|
|
4
4
|
import { UI_KIT } from "cruzo/ui-components/const";
|
|
5
5
|
|
|
6
|
-
import "../web3-signer/web3-signer.component";
|
|
6
|
+
import { Web3SignerComponent } from "../web3-signer/web3-signer.component";
|
|
7
7
|
import { detectInjectedWallets, getInjectedWalletLabel } from "../../providers/injected";
|
|
8
8
|
import {
|
|
9
9
|
buildSearchWithSigning,
|
|
@@ -23,7 +23,7 @@ const PAYLOAD_INPUT_ID = "payload";
|
|
|
23
23
|
export class Web3SigningComponent extends AbstractComponent {
|
|
24
24
|
static selector = "web3-signing-component";
|
|
25
25
|
|
|
26
|
-
dependencies = new Set([
|
|
26
|
+
dependencies = new Set([Web3SignerComponent.selector]);
|
|
27
27
|
|
|
28
28
|
walletHint$ = this.newRx("");
|
|
29
29
|
stateOverview$ = this.newRx("");
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cruzo-web3",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Web3 addon for cruzo: wallet providers, sign, verify",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"sideEffects": [
|
|
8
8
|
"*.css",
|
|
9
|
-
"*.module.css"
|
|
9
|
+
"*.module.css",
|
|
10
|
+
"lib/**/*.component.ts"
|
|
10
11
|
],
|
|
11
12
|
"files": [
|
|
12
13
|
"lib",
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
"@tonconnect/sdk": ">=3.0.0",
|
|
35
36
|
"@tonconnect/ui": ">=3.0.0",
|
|
36
37
|
"@walletconnect/ethereum-provider": ">=2.0.0",
|
|
37
|
-
"cruzo": "
|
|
38
|
+
"cruzo": "0.9.889"
|
|
38
39
|
},
|
|
39
40
|
"peerDependenciesMeta": {
|
|
40
41
|
"@tonconnect/sdk": {
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
"@tonconnect/ui": "^3.0.0",
|
|
53
54
|
"@types/node": "20.0.0",
|
|
54
55
|
"@walletconnect/ethereum-provider": "^2.23.9",
|
|
55
|
-
"cruzo": "
|
|
56
|
+
"cruzo": "0.9.889",
|
|
56
57
|
"typescript": "5.9.3"
|
|
57
58
|
}
|
|
58
59
|
}
|