Skip to content

Commit

Permalink
chore: more renames to vea, removed rinkeby artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybuidl committed Jun 12, 2023
1 parent 3c7e8f8 commit 1c1249b
Show file tree
Hide file tree
Showing 20 changed files with 11 additions and 6,315 deletions.
1 change: 0 additions & 1 deletion contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ Refresh the list of deployed contracts by running `./scripts/generateDeployments
- [BlockHashRNG](https://goerli.arbiscan.io/address/0x68eE49dfD9d76f3386257a3D0e0A85c0A5519bBD)
- [DisputeKitClassic](https://goerli.arbiscan.io/address/0x0b24767Ae86Da2F5B442B2A524d3D9809CD0B5B2)
- [DisputeResolver](https://goerli.arbiscan.io/address/0x311eB7f0fcA3037DF4F02f2F3470d295228F474D)
- [FastBridgeSenderToGnosis](https://goerli.arbiscan.io/address/0x4d18b9792e0D8F5aF696E71dBEDff8fcBEed6e8C)
- [HomeGatewayToEthereum](https://goerli.arbiscan.io/address/0xed12799915180a257985631fbD2ead261eD838cf)
- [HomeGatewayToGnosis](https://goerli.arbiscan.io/address/0x12613A66F1E5A2086374e103F66BF0eddA5d1478)
- [KlerosCore](https://goerli.arbiscan.io/address/0xD08Ab99480d02bf9C092828043f611BcDFEA917b)
Expand Down
3 changes: 2 additions & 1 deletion contracts/deploy/01-foreign-gateway-on-ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ const deployForeignGateway: DeployFunction = async (hre: HardhatRuntimeEnvironme
const homeGatewayAddress = getContractAddress(deployer, nonce);
console.log("Calculated future HomeGatewayToEthereum address for nonce %d: %s", nonce, homeGatewayAddress);

const veaReceiver = await deployments.get("FastBridgeReceiverOnEthereum");
const veaReceiver = await deployments.get("VeaInboxArbToEthDevnet");
console.log("Using VeaInboxArbToEthDevnet at %s", veaReceiver.address);

const foreignGateway = await deploy("ForeignGatewayOnEthereum", {
from: deployer,
Expand Down
4 changes: 2 additions & 2 deletions contracts/deploy/01-foreign-gateway-on-gnosis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const deployForeignGateway: DeployFunction = async (hre: HardhatRuntimeEnvironme
const homeGatewayAddress = getContractAddress(deployer, nonce); // HomeGateway deploy tx will be the next tx home network
console.log("Calculated future HomeGatewayToEthereum address for nonce %d: %s", nonce, homeGatewayAddress);

const veaReceiver = await deployments.get("FastBridgeReceiverOnGnosis");
console.log("Using FastBridgeReceiverOnGnosis at %s", veaReceiver.address);
const veaReceiver = await deployments.get("VeaInboxArbToGnosisDevnet");
console.log("Using VeaInboxArbToGnosisDevnet at %s", veaReceiver.address);

if (!wethByChain.get(chainId)) {
const weth = await deploy("WETH", {
Expand Down
2 changes: 1 addition & 1 deletion contracts/deploy/02-home-gateway-to-ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const deployHomeGateway: DeployFunction = async (hre: HardhatRuntimeEnvironment)
const chainId = Number(await getChainId());
console.log("Deploying to chainId %s with deployer %s", chainId, deployer);

const veaSender = await deployments.get("FastBridgeSenderToEthereum");
const veaSender = await deployments.get("VeaOutboxArbToEthDevnet");
const klerosCore = await deployments.get("KlerosCore");

const foreignGateway = await hre.companionNetworks.foreignGoerli.deployments.get("ForeignGatewayOnEthereum");
Expand Down
2 changes: 1 addition & 1 deletion contracts/deploy/02-home-gateway-to-gnosis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const deployHomeGateway: DeployFunction = async (hre: HardhatRuntimeEnvironment)
const chainId = Number(await getChainId());
console.log("Deploying to chainId %s with deployer %s", chainId, deployer);

const veaSender = await deployments.get("FastBridgeSenderToGnosis");
const veaSender = await deployments.get("VeaOutboxArbToGnosisDevnet");
const klerosCore = await deployments.get("KlerosCore");

const foreignGateway = await hre.companionNetworks.foreignChiado.deployments.get("ForeignGatewayOnGnosis");
Expand Down
1 change: 0 additions & 1 deletion contracts/deployments/arbitrumRinkeby/.chainId

This file was deleted.

73 changes: 0 additions & 73 deletions contracts/deployments/arbitrumRinkeby/Blockhash.json

This file was deleted.

Loading

0 comments on commit 1c1249b

Please sign in to comment.