bandkit 0.0.1
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/LICENSE +21 -0
- package/README.md +22 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/package.json +27 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 [TO_FILL]
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# bandkit
|
|
2
|
+
|
|
3
|
+
Open-source scaffolding for building Ethereum band-bound trading strategies.
|
|
4
|
+
|
|
5
|
+
> **This is a placeholder release.** The full package is in active development and will publish as `0.1.0`. Do not depend on this `0.0.1` release for anything other than reserving the name.
|
|
6
|
+
|
|
7
|
+
## What it will be
|
|
8
|
+
|
|
9
|
+
`bandkit` is scaffolding for deploying a strategy contract, funding it, and routing pre-approved swap calldata through a restricted executor on Ethereum. It will provide React hooks for wallet, deployment, and engine state — designed to pair with `rainbowkit` and `wagmi`.
|
|
10
|
+
|
|
11
|
+
It will not include a trading strategy, signal generation, or risk management. The integrator brings the logic.
|
|
12
|
+
|
|
13
|
+
## Coming in 0.1.0
|
|
14
|
+
|
|
15
|
+
- Solidity strategy contract and restricted executor
|
|
16
|
+
- React hooks (`useRangeDashboard`, `useStrategyContract`, etc.)
|
|
17
|
+
- RainbowKit/wagmi config helper
|
|
18
|
+
- Engine execution scaffold for owner-approved swap routes
|
|
19
|
+
|
|
20
|
+
## License
|
|
21
|
+
|
|
22
|
+
MIT
|
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bandkit",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Open-source scaffolding for Ethereum band-bound trading strategies. Placeholder release — full package coming soon.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js",
|
|
9
|
+
"index.d.ts",
|
|
10
|
+
"README.md",
|
|
11
|
+
"LICENSE"
|
|
12
|
+
],
|
|
13
|
+
"keywords": [
|
|
14
|
+
"ethereum",
|
|
15
|
+
"uniswap",
|
|
16
|
+
"rainbowkit",
|
|
17
|
+
"wagmi",
|
|
18
|
+
"range-trading",
|
|
19
|
+
"defi",
|
|
20
|
+
"open-source"
|
|
21
|
+
],
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"author": "",
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18"
|
|
26
|
+
}
|
|
27
|
+
}
|