Skip to content

Commit f26730c

Browse files
committed
Merge branch 'main' of gitlab.com:ututrust/utu-protocol/utu-trust-token-solidity
* 'main' of gitlab.com:ututrust/utu-protocol/utu-trust-token-solidity: (178 commits) Update OpenZeppelin base-sepolia conf Update Base testnet proxy contract delpoyment args after re-deployment of oracle operator, and fix job ids. v1.4-alpha1 User staging cluster by default for direct deployment of Chainlink node from Makefile Redeploy Base Sepolia testnet oracle operator contract with existing Chainlink LINK token address. Add content of Deploy Proxy Contract section. Add Changes to EVM configurations for Lisk and Base Add architecture description to README.md Finish Base Deployment Configurations and Deploy the UTT Proxy Contract to Base Add Configuration for Deploying to Base Update README to reflect the new way of (automated) job deployment. - Add lisk related URLs for RCPs task-48[ignore, jobs]: update .gitignore and job template #48: log more detailed error output to console if endorse hardhat task fails. #48: update new LISK UTT contract addresses in README. #48: update openzeppelin deployment info for LISK main- and testnet. #48: fix LINK token address in LISK main- and testnet deploy args. #48: add bridged UTU Coin on LISK mainnet and testnet addresses and explorer links. #48: fix misformatted config and remove non-existing entries. #48: v1.3 ...
2 parents 6b10393 + ec17798 commit f26730c

121 files changed

Lines changed: 43712 additions & 42910 deletions

File tree

Some content is hidden

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

.env.example

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1-
ETHERSCAN_API_KEY=ABC123ABC123ABC123ABC123ABC123ABC1
1+
# Default network to work on; can be overridden with --network param
2+
HARDHAT_NETWORK="testnet_ethereum"
23

3-
ROPSTEN_URL=https://eth-ropsten.alchemyapi.io/v2/<YOUR ALCHEMY KEY>
4-
MATIC_URL=https://polygon-mainnet.alchemyapi.io/v2/<YOUR ALCHEMY KEY>
5-
MUMBAI_URL=https://mumbai.alchemyapi.io/v2/<YOUR ALCHEMY KEY>
4+
ETHERSCAN_API_KEY=<Etherscan API Key>
65

7-
TEST_PRIVATE_KEY=0xabc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc1
8-
MAIN_PRIVATE_KEY=0xabc123abc123abc123abc123abc123abc123abc123abc123abc123abc123abc1
9-
NETWORK="mumbai"
6+
TESTNET_ETHEREUM_URL=<ETHEREUM testnet (Sepolia) node URL>
7+
8+
POLYGON_URL=<POLYGON mainnet node URL>
9+
TESTNET_POLYGON_URL=<POLYGON testnet (Amoy) node URL>
10+
11+
AURORA_URL=<AURORA mainnet node URL>
12+
TESTNET_AURORA_URL=<AURORA testnet node URL>
13+
14+
OPTIMISM_URL=<OPTIMISM mainnet node URL>
15+
TESTNET_OPTIMISM_URL=<OPTIMISM testnet node URL>
16+
17+
TEST_PRIVATE_KEY=<Deployer testnet wallet private key>
18+
MAIN_PRIVATE_KEY=<Deployer mainnet wallet private key>
19+
20+
TESTNET_LISK_URL=<Lisk testnet node URL>
21+
LISK_URL=<Lisk mainnet node URL>
22+
23+
TESTNET_BASE_URL=<Base testnet node URL>
24+
BASE_URL=<Base mainnet node URL>

.gitignore

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,24 @@ node_modules
33
coverage
44
coverage.json
55
typechain
6+
.history
67

78
#Hardhat files
89
cache
910
artifacts
1011

12+
# OpenZeppelin according to
13+
# https://docs.openzeppelin.com/cli/2.8/configuration#configuration-files-in-version-control
14+
.openzeppelin/dev-*.json
15+
.openzeppelin/.session
16+
17+
# Project-specific
1118
UTT.flattened.sol
12-
exports
19+
exports
20+
typechain-types
21+
tasks/chainlink-jobs/generated/*.toml
22+
env.toml
23+
.cursorignore
24+
25+
26+

0 commit comments

Comments
 (0)