juno-network 0.1.8 → 0.1.11
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 +7 -4
- package/package.json +2 -2
package/README.md
CHANGED
@@ -33,19 +33,19 @@ const main = async () => {
|
|
33
33
|
|
34
34
|
### JunoSwap contracts
|
35
35
|
|
36
|
-
|
36
|
+
#### clients
|
37
37
|
|
38
38
|
```js
|
39
39
|
import { contracts } from 'juno-network';
|
40
40
|
const {
|
41
41
|
JunoSwap: {
|
42
|
-
|
42
|
+
JunoSwapClient,
|
43
43
|
JunoSwapQueryClient
|
44
44
|
}
|
45
45
|
} = contracts;
|
46
46
|
```
|
47
47
|
|
48
|
-
|
48
|
+
#### Queries
|
49
49
|
|
50
50
|
```js
|
51
51
|
const queries = new JunoSwapQueryClient(
|
@@ -56,7 +56,7 @@ const amount = await queries.token1ForToken2Price({
|
|
56
56
|
token1Amount
|
57
57
|
});
|
58
58
|
```
|
59
|
-
|
59
|
+
#### Mutations
|
60
60
|
|
61
61
|
```js
|
62
62
|
const client = new JunoSwapClient(
|
@@ -132,7 +132,10 @@ const {
|
|
132
132
|
```
|
133
133
|
## Credits
|
134
134
|
|
135
|
+
Built by Cosmology — if you like our tools, please consider delegating to [our validator](https://www.mintscan.io/juno/validators/junovaloper1pr5qgj4jg47lvsnejtfvk78090shvuctgdwdm5)
|
136
|
+
|
135
137
|
Code built with the help of these related projects:
|
136
138
|
|
137
139
|
* [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) for generated CosmWasm contract Typescript classes
|
138
140
|
* [@osmonauts/telescope](https://github.com/osmosis-labs/telescope) a "babel for the Cosmos", Telescope is a TypeScript Transpiler for Cosmos Protobufs.
|
141
|
+
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "juno-network",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.11",
|
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": "92ee4f33752404bc57c78b25e2ad38a880986206"
|
94
94
|
}
|