add package script and remove trailing whitespace

This commit is contained in:
shivani 2021-10-21 15:47:34 +05:30
parent 3732a1ed30
commit 3683b48941
2 changed files with 3 additions and 2 deletions

View File

@ -9,8 +9,8 @@ import { ICommonConfiguration, eEthereumNetwork } from '../../helpers/types';
export const CommonsConfig: ICommonConfiguration = {
MarketId: 'RealT',
ATokenNamePrefix: 'Aave RealT market',
StableDebtTokenNamePrefix: 'Aave RealT stable debt ',
VariableDebtTokenNamePrefix: 'Aave RealT variable debt ',
StableDebtTokenNamePrefix: 'Aave RealT Market stable debt',
VariableDebtTokenNamePrefix: 'Aave RealT Market variable debt',
SymbolPrefix: '',
ProviderId: 0, // Overridden in index.ts
OracleQuoteCurrency: 'ETH',

View File

@ -20,6 +20,7 @@
"hardhat:avalanche": "hardhat --network avalanche",
"compile": "SKIP_LOAD=true hardhat compile",
"console:fork": "FORK=main hardhat console",
"console:fork:kovan": "FORK=kovan hardhat console",
"test": "npm run compile && TS_NODE_TRANSPILE_ONLY=1 hardhat test ./test-suites/test-aave/*.spec.ts",
"test-amm": "npm run compile && TS_NODE_TRANSPILE_ONLY=1 hardhat test ./test-suites/test-amm/*.spec.ts",
"test-amm-scenarios": "npm run compile && TS_NODE_TRANSPILE_ONLY=1 hardhat test ./test-suites/test-amm/__setup.spec.ts test-suites/test-amm/scenario.spec.ts",