Skip to content

Commit 3506ef0

Browse files
preston4896leopardraceroooLowNeoNoooletmehateu
authored
v1.1 release (#46)
* DEV-4106: tcb eval dao implemented and tested * DEV-4108: implemented and tested versioned FmspcTcb and Enclave Id DAO * tcb eval dao empty check * permissioned tcb eval dao * Fix typos and improve documentation in Resolver interface and X509Helper (#32) * Update IDaoAttestationResolver.sol * Update X509Helper.sol * Update NOTE.md * minor fixes * added tcbeval and versioned dao deployment script * ata sepolia deployment * updated deployment script * access controlled version dao scripts * ata mainnet deployment * sepolia deployment * updated deployment scripts for versioned dao * holesky deployment and configurations * updated config script * ignore all broadcast logs * updated README and added release note * v1.1: various testnet deployments * multichain scripting * updated scripts * mainnet deployment * unichain mainnet deployment * update scripts * tcb-r 20 deployment * hyperliquid evm testnet deployment * hyperevm mainnet deployment * updated .gitignore * standalone interfaces * removed holesky support * fusaka rollout to hoodi and sepolia * prepped for npm release * Merge pull request #43 from oooLowNeoNooo/ram docs: added TOC to docs/AutomataDAOStorage.md * docs: fixed old and broken link (#45) * Update README.md * Update README.md * updated release notes * patched npm --------- Co-authored-by: leopardracer <[email protected]> Co-authored-by: oooLowNeoNooo <[email protected]> Co-authored-by: iPLAY888 <[email protected]>
1 parent 5cea922 commit 3506ef0

File tree

110 files changed

+2752
-13338
lines changed

Some content is hidden

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

110 files changed

+2752
-13338
lines changed

.env.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
OWNER=0xDf841B239bE7a6b37366005107069b7410da4Ff9
33

44
ETHERSCAN_API_KEY=
5-
ETHERSCAN_API_VERSION=V2
5+
ETHERSCAN_API_VERSION=V2
6+
7+
CHAINS="ATA_SEPOLIA,SEPOLIA,OP_SEPOLIA,ARBITRUM_SEPOLIA,BASE_SEPOLIA,WORLD_SEPOLIA,AVALANCHE_C_FUJI,POLYGON_AMOY,BSC_TESTNET,HOODI_TESTNET,UNICHAIN_SEPOLIA,HYPEREVM_TESTNET,ATA,ETHEREUM,OP,ARBITRUM,BASE,WORLD,POLYGON,BSC,AVALANCHE_C,UNICHAIN,HYPEREVM"

.gitignore

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
cache/
33
out/
44

5-
# Ignores development broadcast logs
6-
broadcast/**/31337/
7-
broadcast/**/run-*.json
8-
broadcast/**/dry-run/
9-
!broadcast/**/*-latest.json
5+
# Ignores all broadcast logs
6+
broadcast/
107

118
# Dotenv file
129
.env
1310

1411
# Ignore development deployment files
12+
deployment/22444422.json
1513
deployment/31337.json
14+
deployment/33611633.json
1615

1716
# Misc
1817
**/.DS_Store

.npmignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Development and build files
2+
test/
3+
script/
4+
.github/
5+
6+
# Build artifacts
7+
cache/
8+
out/
9+
broadcast/
10+
lib/
11+
12+
# Deployment files
13+
deployment/
14+
15+
# Documentation and releases
16+
README.md
17+
docs/
18+
releases/
19+
20+
# Configuration files
21+
foundry.toml
22+
remappings.txt
23+
Makefile
24+
slither.config.json
25+
26+
# Git files
27+
.git/
28+
.gitignore
29+
.gitmodules
30+
.gitattributes
31+
32+
# IDE and OS files
33+
.vscode/
34+
.DS_Store
35+
36+
# Environment files
37+
.env
38+
.env.*
39+
40+
# Node modules (if any)
41+
node_modules/
42+
43+
# Keystore
44+
keystore/

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ deploy-dao: check_env get_owner
6060
--keystore $(KEYSTORE_PATH) --password $(KEYSTORE_PASSWORD)) \
6161
$(if $(SIMULATED),, --broadcast) \
6262
$(if $(LEGACY), --legacy) \
63-
-vv \
64-
--sig "deployAll(bool)" $(WITH_STORAGE)
63+
-vv
6564
@echo "DAO contracts deployed"
6665

6766
deploy-all: deploy-helpers deploy-dao
@@ -74,7 +73,7 @@ verify-helpers: check_env
7473
echo "Helper addresses not found. Deploy helpers first."; \
7574
exit 1; \
7675
fi
77-
@for contract in EnclaveIdentityHelper FmspcTcbHelper PCKHelper X509CRLHelper; do \
76+
@for contract in EnclaveIdentityHelper FmspcTcbHelper PCKHelper X509CRLHelper TcbEvalHelper; do \
7877
addr=$$(jq -r ".$$contract" deployment/$(CHAIN_ID).json); \
7978
if [ "$$addr" != "null" ]; then \
8079
forge verify-contract \

README.md

Lines changed: 33 additions & 193 deletions

broadcast/DeployAutomataDao.s.sol/1/deployAll-latest.json

Lines changed: 0 additions & 453 deletions
This file was deleted.

broadcast/DeployAutomataDao.s.sol/10/deployAll-latest.json

Lines changed: 0 additions & 501 deletions
This file was deleted.

broadcast/DeployAutomataDao.s.sol/11155111/deployAll-latest.json

Lines changed: 0 additions & 453 deletions
This file was deleted.

broadcast/DeployAutomataDao.s.sol/11155420/deployAll-latest.json

Lines changed: 0 additions & 501 deletions
This file was deleted.

broadcast/DeployAutomataDao.s.sol/1301/deployAll-latest.json

Lines changed: 0 additions & 501 deletions
This file was deleted.

0 commit comments

Comments
 (0)