Skip to content

Commit 1a4f697

Browse files
committed
rename to Jodobix; Deploy on Op Mainnet
1 parent e3da827 commit 1a4f697

36 files changed

Lines changed: 1410 additions & 252 deletions

.yarn/releases/yarn-3.2.3.cjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Critter
1+
# Jodobix
22

33
_(codename, will change)_
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//SPDX-License-Identifier: MIT
22
pragma solidity >=0.8.0 <0.9.0;
33

4-
contract Critter {
4+
contract Jodobix {
55

66
// #region Constants
77
uint256 constant MAX_PUBLIC_AVAILABLE_GAMES = 10; // Max number of public available games, this limitation is to improve the performance

packages/hardhat/deploy/00_deploy_critter.ts renamed to packages/hardhat/deploy/00_deploy_jodobix.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import { DeployFunction } from "hardhat-deploy/types";
33
import { ethers } from "ethers";
44

55
/**
6-
* Deploys a contract named "Critter" using the deployer account and
6+
* Deploys a contract named "Jodobix" using the deployer account and
77
* constructor arguments set to the deployer address
88
*
99
* @param hre HardhatRuntimeEnvironment object.
1010
*/
11-
const deployCritter: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
11+
const deployJodobix: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
1212
/*
1313
On localhost, the deployer account is the one that comes with Hardhat, which is already funded.
1414
@@ -22,7 +22,7 @@ const deployCritter: DeployFunction = async function (hre: HardhatRuntimeEnviron
2222
const { deployer } = await hre.getNamedAccounts();
2323
const { deploy } = hre.deployments;
2424

25-
await deploy("Critter", {
25+
await deploy("Jodobix", {
2626
from: deployer,
2727
// Contract constructor arguments:
2828
// uint256 endingBetPeriodReward,
@@ -36,8 +36,8 @@ const deployCritter: DeployFunction = async function (hre: HardhatRuntimeEnviron
3636
});
3737
};
3838

39-
export default deployCritter;
39+
export default deployJodobix;
4040

4141
// Tags are useful if you have multiple deploy files and only want to run one of them.
42-
// e.g. yarn deploy --tags Critter
43-
deployCritter.tags = ["Critter"];
42+
// e.g. yarn deploy --tags Jodobix
43+
deployJodobix.tags = ["Jodobix"];

packages/hardhat/deployments/arbitrumSepolia/Critter.json renamed to packages/hardhat/deployments/arbitrumSepolia/Jodobix.json

Lines changed: 32 additions & 36 deletions
Large diffs are not rendered by default.

packages/hardhat/deployments/arbitrumSepolia/solcInputs/d2d0eaa13a6a112933136ab4f2cc809a.json

Lines changed: 4 additions & 6 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
10

0 commit comments

Comments
 (0)