@@ -40,7 +40,7 @@ contract DefenderDeployTest is Test {
4040 Versions.DEFENDER_DEPLOY_CLIENT_CLI,
4141 " deploy --contractName MyContractName --contractPath test/contracts/MyContractFile.sol --chainId 31337 --buildInfoFile " ,
4242 buildInfoFile,
43- ' --licenseType "MIT" '
43+ ' --licenseType "MIT" --origin Foundry '
4444 )
4545 );
4646 }
@@ -67,7 +67,7 @@ contract DefenderDeployTest is Test {
6767 Versions.DEFENDER_DEPLOY_CLIENT_CLI,
6868 " deploy --contractName WithConstructor --contractPath test/contracts/WithConstructor.sol --chainId 31337 --buildInfoFile " ,
6969 buildInfoFile,
70- ' --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b --licenseType "MIT" '
70+ ' --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b --licenseType "MIT" --origin Foundry '
7171 )
7272 );
7373 }
@@ -105,7 +105,8 @@ contract DefenderDeployTest is Test {
105105 " deploy --contractName WithConstructor --contractPath test/contracts/WithConstructor.sol --chainId 31337 --buildInfoFile " ,
106106 buildInfoFile,
107107 ' --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b --licenseType "My License Type" --relayerId my-relayer-id --salt 0xabc0000000000000000000000000000000000000000000000000000000000123 --gasLimit 100000 --gasPrice 1000000000 --maxFeePerGas 2000000000 --maxPriorityFeePerGas 500000000 ' ,
108- ' --metadata "{ \ \" commitHash\ \" : \ \" 4ae3e0d\ \" , \ \" tag\ \" : \ \" v1.0.0\ \" , \ \" anyOtherField\ \" : \ \" anyValue\ \" }" '
108+ ' --metadata "{ \ \" commitHash\ \" : \ \" 4ae3e0d\ \" , \ \" tag\ \" : \ \" v1.0.0\ \" , \ \" anyOtherField\ \" : \ \" anyValue\ \" }" ' ,
109+ " --origin Foundry "
109110 )
110111 );
111112 }
@@ -134,7 +135,7 @@ contract DefenderDeployTest is Test {
134135 Versions.DEFENDER_DEPLOY_CLIENT_CLI,
135136 " deploy --contractName WithConstructor --contractPath test/contracts/WithConstructor.sol --chainId 31337 --buildInfoFile " ,
136137 buildInfoFile,
137- " --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b --verifySourceCode false "
138+ " --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b --verifySourceCode false --origin Foundry "
138139 )
139140 );
140141 }
@@ -163,7 +164,7 @@ contract DefenderDeployTest is Test {
163164 Versions.DEFENDER_DEPLOY_CLIENT_CLI,
164165 " deploy --contractName WithConstructor --contractPath test/contracts/WithConstructor.sol --chainId 31337 --buildInfoFile " ,
165166 buildInfoFile,
166- " --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b "
167+ " --constructorBytecode 0x000000000000000000000000000000000000000000000000000000000000007b --origin Foundry "
167168 )
168169 );
169170 }
@@ -255,7 +256,8 @@ contract DefenderDeployTest is Test {
255256 "npx @openzeppelin/defender-deploy-client-cli@ " ,
256257 Versions.DEFENDER_DEPLOY_CLIENT_CLI,
257258 " deploy --contractName NoLicense --contractPath test/contracts/NoLicense.sol --chainId 31337 --buildInfoFile " ,
258- buildInfoFile
259+ buildInfoFile,
260+ " --origin Foundry "
259261 )
260262 );
261263 }
@@ -280,7 +282,7 @@ contract DefenderDeployTest is Test {
280282 Versions.DEFENDER_DEPLOY_CLIENT_CLI,
281283 " deploy --contractName Unlicensed --contractPath test/contracts/Unlicensed.sol --chainId 31337 --buildInfoFile " ,
282284 buildInfoFile,
283- ' --licenseType "None" '
285+ ' --licenseType "None" --origin Foundry '
284286 )
285287 );
286288 }
0 commit comments