@wonderland/interop 0.3.2 → 0.3.3
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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -52,11 +52,11 @@ Available scripts that can be run using `pnpm`:
|
|
|
52
52
|
import { InteropAddressProvider, nameToBinary } from "@wonderland/interop";
|
|
53
53
|
|
|
54
54
|
// Using the Provider
|
|
55
|
-
const interoperableName = "alice.eth@eip155:1
|
|
55
|
+
const interoperableName = "alice.eth@eip155:1";
|
|
56
56
|
const binaryAddress = await InteropAddressProvider.nameToBinary(interoperableName);
|
|
57
57
|
|
|
58
58
|
// Or just importing the method directly
|
|
59
|
-
const binaryAddress2 = await nameToBinary("alice.eth@eip155:1
|
|
59
|
+
const binaryAddress2 = await nameToBinary("alice.eth@eip155:1");
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
### Cross-Chain Operations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wonderland/interop",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Complete SDK for blockchain interoperability with cross-chain operations and address utilities",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"test:cov": "vitest run --config vitest.config.ts --coverage"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@wonderland/interop-addresses": "0.5.
|
|
36
|
-
"@wonderland/interop-cross-chain": "0.
|
|
35
|
+
"@wonderland/interop-addresses": "0.5.1",
|
|
36
|
+
"@wonderland/interop-cross-chain": "0.5.0"
|
|
37
37
|
}
|
|
38
38
|
}
|