Skip to content

Commit

Permalink
Merge pull request #68 from FIL-Builders/new-branch-name
Browse files Browse the repository at this point in the history
Feat: Add CI to Axelar integration
  • Loading branch information
xBalbinus authored Nov 25, 2024
2 parents 44c46e4 + c2529df commit 412dd89
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 368 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Lint
on:
push:
branches:
- main
- '*'
pull_request:
branches:
- main
Expand Down
6 changes: 0 additions & 6 deletions packages/hardhat/deploy/00_deploy_your_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,6 @@ const deploySendMessage: DeployFunction = async function (
console.log("🚀 SendMessage deployed at: ", SendMessage.address);
const SendMessageAddress = SendMessage.address;

// Get the deployed contract to interact with it after deploying.
const sendMessage = await hre.ethers.getContractAt(
"SendMessage",
SendMessageAddress
);

// Check if the --verify flag is present
const shouldVerify = process.env.VERIFY === "true";

Expand Down
23 changes: 0 additions & 23 deletions packages/hardhat/scripts/deploy.ts

This file was deleted.

32 changes: 0 additions & 32 deletions packages/hardhat/scripts/deployFactory.ts

This file was deleted.

38 changes: 0 additions & 38 deletions packages/hardhat/scripts/deployYourContract.ts

This file was deleted.

6 changes: 3 additions & 3 deletions packages/nextjs/app/axelar/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import deployedContracts from "../../contracts/deployedContracts";
import { ethers } from "ethers";
import { useWriteContract } from "wagmi";

const FIL_CONTRACT_ADDRESS = deployedContracts[314159].SendMessage.address;
const ETH_CONTRACT_ADDRESS = deployedContracts[11155111].SendMessage.address;
const ABI = deployedContracts[11155111].SendMessage.abi;
const FIL_CONTRACT_ADDRESS = (deployedContracts as any)[314159].SendMessage.address;
const ETH_CONTRACT_ADDRESS = (deployedContracts as any)[11155111].SendMessage.address;
const ABI = (deployedContracts as any)[11155111].SendMessage.abi;

const AxelarPage: React.FC = () => {
const [message, setMessage] = useState("");
Expand Down

This file was deleted.

58 changes: 0 additions & 58 deletions packages/nextjs/hooks/lighthouse/index.ts

This file was deleted.

0 comments on commit 412dd89

Please sign in to comment.