legend-cli 1.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/README.md +25 -0
- package/bun.lock +1058 -0
- package/dist/index.js +22182 -0
- package/dist/index.js.map +7 -0
- package/dist/package.json +1 -0
- package/dist/readme.md +43 -0
- package/hardhat3/README.md +57 -0
- package/hardhat3/hardhat.config.ts +38 -0
- package/hardhat3/ignition/modules/Counter.ts +9 -0
- package/hardhat3/package-lock.json +2925 -0
- package/hardhat3/package.json +14 -0
- package/hardhat3/scripts/send-op-tx.ts +31 -0
- package/hardhat3/test/Counter.ts +46 -0
- package/hardhat3/tsconfig.json +13 -0
- package/package.json +51 -0
- package/temp/createApp.js +69 -0
- package/temp/createContract--.js +77 -0
- package/temp/createContract.js +77 -0
- package/temp/createProject.js +31 -0
- package/temp/extract.js +8 -0
- package/temp/initContract.js +38 -0
- package/temp/publishContract copy.js +120 -0
- package/temp/publishContract.js +120 -0
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Onkit CLI
|
|
2
|
+
Smart Contract Publisher and Web3 App Generator
|
|
3
|
+
|
|
4
|
+
Generates code boilerplate from pre-built templates and smart contracts
|
|
5
|
+
|
|
6
|
+
## Requirements
|
|
7
|
+
```
|
|
8
|
+
Node Version: 22
|
|
9
|
+
nvm use 22
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Generates
|
|
13
|
+
- Smart Contract Published Bytecode and ABI for Solidity
|
|
14
|
+
- Smart Contract Published Bytecode and ABI for FunC (soon)
|
|
15
|
+
- Smart Contract Published Bytecode and ABI for Rust (soon)
|
|
16
|
+
- Smart Contract CMS (soon)
|
|
17
|
+
- Telegram Mini App Web3 UI Template (soon)
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
Check out documentation [Developers](https://hashkit.xyz)
|
|
21
|
+
|
|
22
|
+
## Usage
|
|
23
|
+
```bash
|
|
24
|
+
npx onkit contract publish
|
|
25
|
+
```
|