Skip to content

Commit

Permalink
chore: deployment script correction
Browse files Browse the repository at this point in the history
  • Loading branch information
kupermind committed Nov 8, 2024
1 parent 910b28e commit 083d12c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async function main() {
const providerName = parsedData.providerName;
const gasPriceInGwei = parsedData.gasPriceInGwei;
const contributorsProxyAddress = parsedData.contributorsProxyAddress;
const contributeAgentAddress = parsedData.contributeAgentAddress;
const contributeServiceAddress = parsedData.contributeServiceAddress;

let networkURL = parsedData.networkURL;
if (providerName === "polygon") {
Expand Down Expand Up @@ -50,7 +50,7 @@ async function main() {
// Transaction signing and execution
console.log("12. EOA to set contribute agent statuses in ContributorsProxy");
console.log("You are signing the following transaction: ContributorsProxy.connect(EOA).setContributeAgentStatuses()");
const result = await contributorsProxy.connect(EOA).setContributeAgentStatuses([contributeAgentAddress], [true], { gasPrice });
const result = await contributorsProxy.connect(EOA).setContributeServiceStatuses([contributeServiceAddress], [true], { gasPrice });

// Transaction details
console.log("Contract deployment: ContributorsProxy");
Expand Down

0 comments on commit 083d12c

Please sign in to comment.