Skip to content

Commit

Permalink
fix: Update deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
rbajollari committed Nov 17, 2023
1 parent 11b101c commit 1027d12
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions scripts/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import { ethers } from "hardhat";

async function main() {
const axelarGatewayAddress = "";
const axelarGasReceiverAddress = "";
const axelarGatewayAddress = "0xe432150cce91c13a887f7D836923d5597adD8E31"; // Goerli Testnet Address
const axelarGasReceiverAddress = "0xbE406F0189A0B4cf3A05C286473D23791Dd44Cc6"; // Goerli Testnet Address
const ojoChain = "";
const ojoAddress = "";


const Ojo = await ethers.getContractFactory("Ojo");
const ojo = await Ojo.deploy(axelarGatewayAddress, axelarGasReceiverAddress);
const ojo = await Ojo.deploy(axelarGatewayAddress, axelarGasReceiverAddress, ojoChain, ojoAddress);

await ojo.waitForDeployment();

Expand Down

0 comments on commit 1027d12

Please sign in to comment.