@percolatortool/sdk 0.1.1 → 0.1.3
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 +4 -4
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ TypeScript SDK for building on top of **Percolator** — [Anatoly Yakovenko (@ae
|
|
|
10
10
|
|
|
11
11
|
- **Wrapper builders** — Build a Solana program that uses Percolator as the risk layer; use the SDK to encode `deposit`, `withdraw`, `execute_trade`, and `keeper_crank` instruction data.
|
|
12
12
|
- **Frontends & bots** — Compose transactions that invoke your wrapper (and thus Percolator) with correctly formatted instruction data.
|
|
13
|
-
- **Keepers** — The
|
|
13
|
+
- **Keepers** — The percolator-tools keeper (in this repo) can use this SDK for full types; it also ships with an inline crank builder so it works standalone.
|
|
14
14
|
|
|
15
15
|
## Install
|
|
16
16
|
|
|
@@ -64,8 +64,8 @@ Instruction **layout** (discriminators, field order) is defined by your **wrappe
|
|
|
64
64
|
## Links
|
|
65
65
|
|
|
66
66
|
- **Percolator (risk engine):** [github.com/aeyakovenko/percolator](https://github.com/aeyakovenko/percolator)
|
|
67
|
-
- **
|
|
67
|
+
- **This SDK + keeper + dashboard:** [github.com/cryptoduke01/percolator](https://github.com/cryptoduke01/percolator) (fork with percolator-tools).
|
|
68
68
|
|
|
69
69
|
## Credits
|
|
70
70
|
|
|
71
|
-
SDK and Percolator tooling (dashboard, keeper) by [
|
|
71
|
+
SDK and Percolator tooling (dashboard, keeper) by [duke.sol](https://x.com/cryptoduke01) as part of the Percolator audit and ecosystem tooling. Percolator itself by [Anatoly Yakovenko (@aeyakovenko)](https://x.com/aeyakovenko).
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percolatortool/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "TypeScript SDK for Percolator — types and instruction builders (deposit, withdraw, trade, keeper crank) for wrapper programs and frontends on Solana. Built for the Percolator audit and ecosystem tooling.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/
|
|
9
|
+
"url": "https://github.com/cryptoduke01/percolator.git",
|
|
10
10
|
"directory": "percolator-tools/sdk"
|
|
11
11
|
},
|
|
12
|
-
"homepage": "https://github.com/
|
|
12
|
+
"homepage": "https://github.com/cryptoduke01/percolator/tree/master/percolator-tools/sdk#readme",
|
|
13
13
|
"keywords": [
|
|
14
14
|
"percolator",
|
|
15
15
|
"solana",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"wrapper",
|
|
20
20
|
"keeper"
|
|
21
21
|
],
|
|
22
|
-
"author": "https://x.com/
|
|
22
|
+
"author": "https://x.com/cryptoduke01",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@types/node": "^20.10.0",
|