hardhat-deploy
Advanced tools
Comparing version 0.11.28 to 0.11.29
@@ -282,2 +282,7 @@ "use strict"; | ||
} | ||
else if (protocolSplit[0].toLowerCase() === 'trezor') { | ||
address = protocolSplit[1]; | ||
addressesToProtocol[address.toLowerCase()] = | ||
protocolSplit[0].toLowerCase(); | ||
} | ||
else if (protocolSplit[0].toLowerCase() === 'ledger') { | ||
@@ -284,0 +289,0 @@ const addressSplit = protocolSplit[1].split(':'); |
{ | ||
"name": "hardhat-deploy", | ||
"version": "0.11.28", | ||
"version": "0.11.29", | ||
"description": "Hardhat Plugin For Replicable Deployments And Tests", | ||
@@ -5,0 +5,0 @@ "repository": "github:wighawag/hardhat-deploy", |
@@ -343,2 +343,8 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ | ||
// knownAccountsDict[address.toLowerCase()] = true; // TODO ? this would prevent auto impersonation in fork/test | ||
} else if ( | ||
protocolSplit[0].toLowerCase() === 'trezor' | ||
) { | ||
address = protocolSplit[1]; | ||
addressesToProtocol[address.toLowerCase()] = | ||
protocolSplit[0].toLowerCase(); | ||
} else if (protocolSplit[0].toLowerCase() === 'ledger') { | ||
@@ -345,0 +351,0 @@ const addressSplit = protocolSplit[1].split(':'); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11872830
154
164138