mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
fix: Fix typo of tenderlyRPC for tenderlyNetwork
This commit is contained in:
parent
64d37bcc70
commit
34c9bf209e
|
@ -9,7 +9,7 @@ export const usingTenderly = () =>
|
||||||
|
|
||||||
export const verifyAtTenderly = async (id: string, instance: Contract) => {
|
export const verifyAtTenderly = async (id: string, instance: Contract) => {
|
||||||
console.log('\n- Doing Tenderly contract verification of', id);
|
console.log('\n- Doing Tenderly contract verification of', id);
|
||||||
await (DRE as any).tenderlyRPC.verify({
|
await (DRE as any).tenderlyNetwork.verify({
|
||||||
name: id,
|
name: id,
|
||||||
address: instance.address,
|
address: instance.address,
|
||||||
});
|
});
|
||||||
|
|
|
@ -82,7 +82,7 @@ task('full:deploy-lending-pool', 'Deploy lending pool for dev enviroment')
|
||||||
if (DRE.network.name.includes('tenderly')) {
|
if (DRE.network.name.includes('tenderly')) {
|
||||||
const transactionLink = `https://dashboard.tenderly.co/${DRE.config.tenderly.username}/${
|
const transactionLink = `https://dashboard.tenderly.co/${DRE.config.tenderly.username}/${
|
||||||
DRE.config.tenderly.project
|
DRE.config.tenderly.project
|
||||||
}/fork/${DRE.tenderlyRPC.getFork()}/simulation/${DRE.tenderlyRPC.getHead()}`;
|
}/fork/${DRE.tenderlyNetwork.getFork()}/simulation/${DRE.tenderlyNetwork.getHead()}`;
|
||||||
console.error('Check tx error:', transactionLink);
|
console.error('Check tx error:', transactionLink);
|
||||||
}
|
}
|
||||||
throw error;
|
throw error;
|
||||||
|
|
|
@ -84,7 +84,7 @@ task('full:deploy-oracles', 'Deploy oracles for dev enviroment')
|
||||||
if (DRE.network.name.includes('tenderly')) {
|
if (DRE.network.name.includes('tenderly')) {
|
||||||
const transactionLink = `https://dashboard.tenderly.co/${DRE.config.tenderly.username}/${
|
const transactionLink = `https://dashboard.tenderly.co/${DRE.config.tenderly.username}/${
|
||||||
DRE.config.tenderly.project
|
DRE.config.tenderly.project
|
||||||
}/fork/${DRE.tenderlyRPC.getFork()}/simulation/${DRE.tenderlyRPC.getHead()}`;
|
}/fork/${DRE.tenderlyNetwork.getFork()}/simulation/${DRE.tenderlyNetwork.getHead()}`;
|
||||||
console.error('Check tx error:', transactionLink);
|
console.error('Check tx error:', transactionLink);
|
||||||
}
|
}
|
||||||
throw error;
|
throw error;
|
||||||
|
|
|
@ -46,8 +46,8 @@ task('aave:mainnet', 'Deploy development enviroment')
|
||||||
}
|
}
|
||||||
|
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
const postDeployHead = DRE.tenderlyRPC.getHead();
|
const postDeployHead = DRE.tenderlyNetwork.getHead();
|
||||||
const postDeployFork = DRE.tenderlyRPC.getFork();
|
const postDeployFork = DRE.tenderlyNetwork.getFork();
|
||||||
console.log('Tenderly Info');
|
console.log('Tenderly Info');
|
||||||
console.log('- Head', postDeployHead);
|
console.log('- Head', postDeployHead);
|
||||||
console.log('- Fork', postDeployFork);
|
console.log('- Fork', postDeployFork);
|
||||||
|
|
|
@ -46,8 +46,8 @@ task('amm:mainnet', 'Deploy development enviroment')
|
||||||
}
|
}
|
||||||
|
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
const postDeployHead = DRE.tenderlyRPC.getHead();
|
const postDeployHead = DRE.tenderlyNetwork.getHead();
|
||||||
const postDeployFork = DRE.tenderlyRPC.getFork();
|
const postDeployFork = DRE.tenderlyNetwork.getFork();
|
||||||
console.log('Tenderly Info');
|
console.log('Tenderly Info');
|
||||||
console.log('- Head', postDeployHead);
|
console.log('- Head', postDeployHead);
|
||||||
console.log('- Fork', postDeployFork);
|
console.log('- Fork', postDeployFork);
|
||||||
|
|
|
@ -49,8 +49,8 @@ task('sidechain:mainnet', 'Deploy market at sidechain')
|
||||||
}
|
}
|
||||||
|
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
const postDeployHead = DRE.tenderlyRPC.getHead();
|
const postDeployHead = DRE.tenderlyNetwork.getHead();
|
||||||
const postDeployFork = DRE.tenderlyRPC.getFork();
|
const postDeployFork = DRE.tenderlyNetwork.getFork();
|
||||||
console.log('Tenderly Info');
|
console.log('Tenderly Info');
|
||||||
console.log('- Head', postDeployHead);
|
console.log('- Head', postDeployHead);
|
||||||
console.log('- Fork', postDeployFork);
|
console.log('- Fork', postDeployFork);
|
||||||
|
|
|
@ -163,7 +163,7 @@ export async function initializeMakeSuite() {
|
||||||
const setSnapshot = async () => {
|
const setSnapshot = async () => {
|
||||||
const hre = DRE as HardhatRuntimeEnvironment;
|
const hre = DRE as HardhatRuntimeEnvironment;
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
setBuidlerevmSnapshotId((await hre.tenderlyRPC.getHead()) || '0x1');
|
setBuidlerevmSnapshotId((await hre.tenderlyNetwork.getHead()) || '0x1');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
setBuidlerevmSnapshotId(await evmSnapshot());
|
setBuidlerevmSnapshotId(await evmSnapshot());
|
||||||
|
@ -172,7 +172,7 @@ const setSnapshot = async () => {
|
||||||
const revertHead = async () => {
|
const revertHead = async () => {
|
||||||
const hre = DRE as HardhatRuntimeEnvironment;
|
const hre = DRE as HardhatRuntimeEnvironment;
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
await hre.tenderlyRPC.setHead(buidlerevmSnapshotId);
|
await hre.tenderlyNetwork.setHead(buidlerevmSnapshotId);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await evmRevert(buidlerevmSnapshotId);
|
await evmRevert(buidlerevmSnapshotId);
|
||||||
|
|
|
@ -163,7 +163,7 @@ export async function initializeMakeSuite() {
|
||||||
const setSnapshot = async () => {
|
const setSnapshot = async () => {
|
||||||
const hre = DRE as HardhatRuntimeEnvironment;
|
const hre = DRE as HardhatRuntimeEnvironment;
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
setBuidlerevmSnapshotId((await hre.tenderlyRPC.getHead()) || '0x1');
|
setBuidlerevmSnapshotId((await hre.tenderlyNetwork.getHead()) || '0x1');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
setBuidlerevmSnapshotId(await evmSnapshot());
|
setBuidlerevmSnapshotId(await evmSnapshot());
|
||||||
|
@ -172,7 +172,7 @@ const setSnapshot = async () => {
|
||||||
const revertHead = async () => {
|
const revertHead = async () => {
|
||||||
const hre = DRE as HardhatRuntimeEnvironment;
|
const hre = DRE as HardhatRuntimeEnvironment;
|
||||||
if (usingTenderly()) {
|
if (usingTenderly()) {
|
||||||
await hre.tenderlyRPC.setHead(buidlerevmSnapshotId);
|
await hre.tenderlyNetwork.setHead(buidlerevmSnapshotId);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
await evmRevert(buidlerevmSnapshotId);
|
await evmRevert(buidlerevmSnapshotId);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user