@turnkey/http 0.7.0 → 0.7.1-beta.0
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 +8 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,9 +33,9 @@ const data = await PublicApiService.postGetWhoami({
|
|
|
33
33
|
|
|
34
34
|
## HTTP fetchers
|
|
35
35
|
|
|
36
|
-
`@turnkey/http` provides fully typed http fetchers for interacting with the Turnkey API. You can find all available methods [here](
|
|
36
|
+
`@turnkey/http` provides fully typed http fetchers for interacting with the Turnkey API. You can find all available methods [here](/packages/http/src/__generated__/services/coordinator/public/v1/public_api.fetcher.ts). The types of input parameters and output responses are also exported for convenience.
|
|
37
37
|
|
|
38
|
-
The OpenAPI spec that generates all fetchers is also [included](
|
|
38
|
+
The OpenAPI spec that generates all fetchers is also [included](/packages/http/src/__generated__/services/coordinator/public/v1/public_api.swagger.json) in the package.
|
|
39
39
|
|
|
40
40
|
## `withAsyncPolling(...)` helper
|
|
41
41
|
|
|
@@ -78,6 +78,10 @@ try {
|
|
|
78
78
|
}
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
## More
|
|
81
|
+
## More examples
|
|
82
82
|
|
|
83
|
-
See [`createNewEthereumPrivateKey.ts`](
|
|
83
|
+
See [`createNewEthereumPrivateKey.ts`](/examples/with-ethers/src/createNewEthereumPrivateKey.ts) in the [`with-ethers`](/examples/with-ethers/) example.
|
|
84
|
+
|
|
85
|
+
## See also
|
|
86
|
+
|
|
87
|
+
- [`@turnkey/ethers`](/packages/ethers/): higher-level Turnkey Signer for [`Ethers`](https://docs.ethers.org/v5/api/signer/)
|