juno-network 0.1.9 → 0.1.10
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 +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
@@ -33,7 +33,7 @@ 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';
|
@@ -45,7 +45,7 @@ const {
|
|
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(
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "juno-network",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.10",
|
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": "31c820fed29c87ae6a98a3cfeef29910ed6bc0b0"
|
94
94
|
}
|