Skip to content

Commit c0adf6c

Browse files
forshtatdrortirosh
authored andcommitted
Initial commit
0 parents  commit c0adf6c

File tree

111 files changed

+6927
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+6927
-0
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
with:
16+
submodules: 'recursive'
17+
- name: Set up Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: '25.2.1'
21+
cache: 'yarn'
22+
- name: Install dependencies
23+
run: yarn install --frozen-lockfile
24+
- name: Run "yarn build"
25+
run: yarn build

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
/dist/
3+
/.idea/
4+
/packages/sdk/dist/
5+
/packages/accounts/dist/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "packages/contracts"]
2+
path = packages/contracts
3+
url = [email protected]:eth-infinitism/eil-contracts.git

package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": "0.1.0",
3+
"private": true,
4+
"type": "module",
5+
"main": "index.js",
6+
"license": "MIT",
7+
"workspaces": [
8+
"packages/*"
9+
],
10+
"scripts": {
11+
"build-contracts": "yarn workspace @eil-protocol/contracts build",
12+
"build-sdk": "yarn workspace @eil-protocol/sdk build",
13+
"build-accounts": "yarn workspace @eil-protocol/accounts build",
14+
"build": "yarn build-contracts && yarn build-sdk && yarn build-accounts",
15+
"clean": "for p in packages/*; do echo pwd/$p; yarn --cwd $p clean; done"
16+
},
17+
"devDependencies": {
18+
"@typescript/native-preview": "^7.0.0-dev.20251117.1"
19+
}
20+
}

packages/accounts/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "@eil-protocol/accounts",
3+
"type": "module",
4+
"scripts": {
5+
"build": "tsgo",
6+
"clean": "rm -rf dist"
7+
},
8+
"version": "0.1.0",
9+
"main": "index.js",
10+
"license": "MIT"
11+
}

0 commit comments

Comments
 (0)