juno-network 0.1.6 → 0.1.7
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 +15 -16
- package/package.json +2 -2
package/README.md
CHANGED
@@ -37,6 +37,21 @@ const main = async () => {
|
|
37
37
|
import { contracts } from 'juno-network';
|
38
38
|
```
|
39
39
|
|
40
|
+
### CosmWasm Messages
|
41
|
+
|
42
|
+
```js
|
43
|
+
import { cosmwasm } from "juno-network";
|
44
|
+
|
45
|
+
const {
|
46
|
+
clearAdmin,
|
47
|
+
executeContract,
|
48
|
+
instantiateContract,
|
49
|
+
migrateContract,
|
50
|
+
storeCode,
|
51
|
+
updateAdmin
|
52
|
+
} = cosmwasm.wasm.v1.MessageComposer.withTypeUrl;
|
53
|
+
```
|
54
|
+
|
40
55
|
### IBC Messages
|
41
56
|
|
42
57
|
```js
|
@@ -79,22 +94,6 @@ const {
|
|
79
94
|
voteWeighted
|
80
95
|
} = cosmos.gov.v1beta1.MessageComposer.fromPartial;
|
81
96
|
```
|
82
|
-
|
83
|
-
### CosmWasm Messages
|
84
|
-
|
85
|
-
```js
|
86
|
-
import { cosmwasm } from "osmojs";
|
87
|
-
|
88
|
-
const {
|
89
|
-
clearAdmin,
|
90
|
-
executeContract,
|
91
|
-
instantiateContract,
|
92
|
-
migrateContract,
|
93
|
-
storeCode,
|
94
|
-
updateAdmin
|
95
|
-
} = cosmwasm.wasm.v1.MessageComposer.withTypeUrl;
|
96
|
-
```
|
97
|
-
|
98
97
|
## Credits
|
99
98
|
|
100
99
|
Code built with the help of these related projects:
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "juno-network",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.7",
|
4
4
|
"description": "juno",
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
6
6
|
"homepage": "https://github.com/CosmosContracts/typescript#readme",
|
@@ -90,5 +90,5 @@
|
|
90
90
|
"@tanstack/react-query": "^4.1.3",
|
91
91
|
"protobufjs": "^6.11.2"
|
92
92
|
},
|
93
|
-
"gitHead": "
|
93
|
+
"gitHead": "a8ee78125dfc382061a3edecf135af5362d7ee1a"
|
94
94
|
}
|