Skip to content

Commit

Permalink
merged in contract update
Browse files Browse the repository at this point in the history
  • Loading branch information
svub committed Oct 6, 2024
1 parent 5122edb commit b305820
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/hardhat/deploy/00_deploy_your_contract.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const deployYourContract: DeployFunction = async function (hre: HardhatRuntimeEn

// Get the deployed contract to interact with it after deploying.
const nunya = await hre.ethers.getContract<Contract>("NunyaBusiness", deployer);
console.log("👋 Nunya contract:", nunya, await nunya.newSecretUser());
console.log("👋 Nunya contract:", nunya, await nunya.getAddress());
};

export default deployYourContract;
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/contracts/deployedContracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { GenericContractsDeclaration } from "~~/utils/scaffold-eth/contract";
const deployedContracts = {
31337: {
NunyaBusiness: {
address: "0x0165878A594ca255338adfa4d48449f69242Eb8F",
address: "0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0",
abi: [
{
inputs: [
Expand Down

0 comments on commit b305820

Please sign in to comment.