-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Serialize local config before comparison * Env and flags checks + cleanup * Read RDD from environment if --rdd flag is missing Also, add appropriate defaults for RDD to network-specific env files * Moving preparation for diff in a separate function * Reading RDD from env * Referencing issue and workaround message Co-authored-by: Domino Valdano <[email protected]>
- Loading branch information
1 parent
35d4908
commit c36a496
Showing
10 changed files
with
57 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
NODE_URL= | ||
CHAIN_ID=columbus-5 | ||
DEFAULT_GAS_PRICE=0.5 | ||
RDD=../reference-data-directory/directory-terra-mainnet.json | ||
|
||
LINK= | ||
BILLING_ACCESS_CONTROLLER= | ||
REQUESTER_ACCESS_CONTROLLER= | ||
|
||
CW4_GROUP= | ||
CW3_FLEX_MULTISIG= |
2 changes: 2 additions & 0 deletions
2
packages-ts/gauntlet-terra-contracts/networks/.env.testnet-bombay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
NODE_URL=https://bombay-lcd.terra.dev | ||
CHAIN_ID=bombay-12 | ||
DEFAULT_GAS_PRICE=0.5 | ||
RDD=../reference-data-directory/directory-terra-testnet-bombay.json | ||
|
||
LINK=terra167ccv2h0z7k0p8j6qpuzwsgu5au5qvfwgmkjsl | ||
BILLING_ACCESS_CONTROLLER=terra1anfm045fgautt6mm5wc7uk6njx30n3cwlgvv8p | ||
REQUESTER_ACCESS_CONTROLLER=terra1urknnpgcmgvptdmhdvex53hl72prwgcnn49t47 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
// Doesn't work as expected - https://github.com/smartcontractkit/chainlink-terra/issues/199 | ||
// As a workaround, default RDD flag is set from env in gauntlet-terra/src/lib/rdd.ts | ||
export const defaultFlags = { | ||
delta: 'delta.json', | ||
codeIdsPath: './codeIds', | ||
artifactsPath: './artifacts', | ||
// TODO: when enabled it will overwrite --rdd flag always, not just when -rdd flag missing | ||
// Default path is set as next to chainlink-terra repo folder | ||
// rdd: '../../../../../reference-data-directory/directory-${network}.json', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters