Skip to content

Commit 78d166b

Browse files
authored
Merge pull request #439 from lu-bann/dev
bump 0.1.3 version merge to main
2 parents 119a8f6 + 77fea82 commit 78d166b

File tree

164 files changed

+11604
-2790
lines changed

Some content is hidden

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

164 files changed

+11604
-2790
lines changed

.env.ci

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
ENCLAVE_NAME=luban
2+
RUST_LOG=info
3+
4+
# https://iancoleman.io/eip2333/
5+
GATEWAY_BLS_PRIVATE_KEY=4942d3308d3fbfbdb977c0bf4c09cb6990aec9fd5ce24709eaf23d96dba71148
6+
GATEWAY_BLS_PUBLIC_KEY=a6767d972d21a17843ea94da59461a04d8d0baf92f7c518653170e708f4b21d537db56f9b73810252e0f4e99cc9184cb
7+
GATEWAY_ECDSA_PRIVATE_KEY=5d2344259f42259f82d2c140aa66102ba89b57b4883ee441a8b312622bd42491
8+
# GATEWAY_ECDSA_PUBLIC_KEY=$(cast wallet address --private-key $GATEWAY_ECDSA_PRIVATE_KEY)
9+
TAIYI_CONTRACTS_DEPLOYER_PRIVATE_KEY=c5114526e042343c6d1899cad05e1c00ba588314de9b96929914ee0df18d46b2
10+
11+
VALIDATOR_OPERATOR_PRIVATE_KEY=eaba42282ad33c8ef2524f07277c03a776d98ae19f581990ce75becb7cfa1c23
12+
TAIYI_OPERATOR_PRIVATE_KEY=f296c7802555da2a5a662be70e078cbd38b44f96f8615ae529da41122ce8db05
13+
14+
# this is the default mnemonic for kurtosis network
15+
# detail see: https://github.com/ethpandaops/ethereum-package/blob/main/network_params.yaml#L75-L78
16+
PRE_REGISTERED_VALIDATOR_KEYS_MNEMONIC="giant issue aisle success illegal bike spike question tent bar rely arctic volcano long crawl hungry vocal artwork sniff fantasy very lucky have athlete"
17+
PRE_REGISTERED_VALIDATOR_KEYS="0x8a8bb292bcc481070d3afdbbc8789e2ab4b29c9603936e6d85f5ff71e23fc5b6d61009f0fa636b5d5b2dc309d39e3d75,0x8aa5bbee21e98c7b9e7a4c8ea45aa99f89e22992fa4fc2d73869d77da4cc8a05b25b61931ff521986677dd7f7159e8e6,0x8aec5129a518010912215e1887191da94be419b4e75904c2ea745e2d253d707c088fa5b2c46dade1d162affe9f7ab17b,0x8c0d15baa72bfcd317e9b9402ca9bb6e7ae1db35ffce7faccae0bd19b3c8e5de7d5524aef0377770b3a90626627a9304"
18+
POD_OWNERS="0x0000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000,0x0000000000000000000000000000000000000000"

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@v4
5151
with:
52-
submodules: true
53-
- name: Initialize submodules
54-
run: |
55-
git submodule update --init --recursive
52+
submodules: recursive
5653
- name: Install Foundry
5754
uses: foundry-rs/foundry-toolchain@v1
5855
with:

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ jobs:
3535
context: .
3636
push: true
3737
tags: |
38-
${{ secrets.DOCKER_USERNAME }}/taiyi:latest
39-
${{ secrets.DOCKER_USERNAME }}/taiyi:${{ env.TAG }}
38+
${{ vars.DOCKER_REPO_NAME }}/taiyi:latest
39+
${{ vars.DOCKER_REPO_NAME }}/taiyi:${{ env.TAG }}

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
19+
with:
20+
submodules: recursive
1921
- uses: dtolnay/rust-toolchain@stable
2022
- uses: Swatinem/rust-cache@v2
2123
with:

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/target
22
.env
33
.envrc
4-
# Cargo.lock
54
/local
65
.vscode
76
/node_modules

.gitmodules

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,6 @@
44
[submodule "contracts/lib/forge-std"]
55
path = contracts/lib/forge-std
66
url = https://github.com/foundry-rs/forge-std
7-
[submodule "contracts/lib/axiom-std"]
8-
path = contracts/lib/axiom-std
9-
url = https://github.com/axiom-crypto/axiom-std
10-
[submodule "contracts/lib/axiom-v2-periphery"]
11-
path = contracts/lib/axiom-v2-periphery
12-
url = https://github.com/axiom-crypto/axiom-v2-periphery
137
[submodule "contracts/lib/openzeppelin-contracts"]
148
path = contracts/lib/openzeppelin-contracts
159
url = https://github.com/OpenZeppelin/openzeppelin-contracts
@@ -26,3 +20,9 @@
2620
[submodule "contracts/lib/eigenlayer-middleware"]
2721
path = contracts/lib/eigenlayer-middleware
2822
url = https://github.com/Layr-Labs/eigenlayer-middleware
23+
[submodule "contracts/lib/core"]
24+
path = contracts/lib/core
25+
url = https://github.com/symbioticfi/core
26+
[submodule "contracts/lib/middleware-sdk"]
27+
path = contracts/lib/middleware-sdk
28+
url = https://github.com/symbioticfi/middleware-sdk

0 commit comments

Comments
 (0)