@skip-go/client 0.10.2 → 0.11.0-alpha.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 +1 -38
- package/dist/index.d.mts +1938 -0
- package/dist/index.mjs +35 -0
- package/package.json +18 -16
- package/vitest.config.mjs +17 -0
- package/vitest.e2e.config.mjs +11 -0
- package/vitest.unit.config.mjs +11 -0
- package/dist/chunk-6FNC3XMI.js +0 -45
- package/dist/chunk-F6SLLVEL.js +0 -2012
- package/dist/chunk-JRIEAGIQ.js +0 -10
- package/dist/chunk-TUX4SN3U.js +0 -3996
- package/dist/index.d.ts +0 -329
- package/dist/index.js +0 -5208
- package/dist/parser.d.ts +0 -1
- package/dist/parser.js +0 -11
- package/dist/shared-IGtrUCgc.d.ts +0 -1035
- package/dist/transactions.d.ts +0 -11
- package/dist/transactions.js +0 -23
- package/dist/types.d.ts +0 -577
- package/dist/types.js +0 -687
- package/parser.d.ts +0 -1
- package/parser.js +0 -1
- package/transactions.d.ts +0 -1
- package/transactions.js +0 -1
- package/types.d.ts +0 -1
- package/types.js +0 -1
package/README.md
CHANGED
|
@@ -20,41 +20,4 @@ yarn add @skip-go/client
|
|
|
20
20
|
|
|
21
21
|
Follow the [Getting Started](https://docs.skip.build/go/client/getting-started) guide to begin your integration.
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
# clone repository
|
|
27
|
-
git clone https://github.com/skip-mev/skip-go.git
|
|
28
|
-
cd skip-go/packages/client
|
|
29
|
-
|
|
30
|
-
# prepare submodules
|
|
31
|
-
git submodule update --init --recursive
|
|
32
|
-
|
|
33
|
-
# install dependencies
|
|
34
|
-
npm install
|
|
35
|
-
|
|
36
|
-
# run watch server to build on changes
|
|
37
|
-
npm -w @skip-go/client run watch
|
|
38
|
-
|
|
39
|
-
# build packages
|
|
40
|
-
npm run build
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
## Unit Tests
|
|
45
|
-
|
|
46
|
-
```bash
|
|
47
|
-
# run unit tests
|
|
48
|
-
npm run test
|
|
49
|
-
|
|
50
|
-
# run unit tests in watch mode
|
|
51
|
-
npm run test -- --watch
|
|
52
|
-
|
|
53
|
-
# run unit tests with coverage
|
|
54
|
-
npm run test -- --coverage
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## Documentation
|
|
58
|
-
|
|
59
|
-
- [Skip Go API documentation](https://docs.skip.build/go)
|
|
60
|
-
- [Skip Go API Reference](https://docs.skip.build/go/api-reference/prod/info/get-v2infochains)
|
|
23
|
+
Example: [Skip go client example](https://github.com/skip-mev/skip-go-example)
|