Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contract_manager/scripts/deploy_evm_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function main() {
const address = await chain.deploy(
toPrivateKey(argv["private-key"]),
artifact["abi"],
artifact["bytecode"],
artifact["bytecode"].object, // As per the artifacts generated by forge, bytecode is an object with an 'object' property
argv["deploy-args"] || [],
);

Expand Down
2 changes: 1 addition & 1 deletion contract_manager/scripts/upgrade_evm_entropy_contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ async function main() {
return contract.chain.deploy(
toPrivateKey(argv["private-key"]),
artifact["abi"],
artifact["bytecode"],
artifact["bytecode"].object, // As per the artifacts generated by forge, bytecode is an object with an 'object' property
[],
2,
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function main() {
return chain.deploy(
toPrivateKey(argv["private-key"]),
artifact["abi"],
artifact["bytecode"],
artifact["bytecode"].object, // As per the artifacts generated by forge, bytecode is an object with an 'object' property
[],
);
});
Expand Down
Loading