Skip to content

Commit

Permalink
update contract addr to fix devnet issue
Browse files Browse the repository at this point in the history
  • Loading branch information
HJCrypto committed Nov 1, 2022
1 parent 68b04ac commit f3f77df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mint-site/helpers/candyMachineInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const collectionCoverUrl = "https://cloudflare-ipfs.com/ipfs/QmbNB4GzfpZJ
export const mode = "dev"; // "dev" or "test" or "mainnet"

export let NODE_URL;
export const CONTRACT_ADDRESS = "0x481efbf0c3cbec627b5f5674287d4ae6ee770da5949dcfe698a8520108236a33";
export const CONTRACT_ADDRESS = "0xc17197699c1a5c2d594bda3482e06cda9a7fe87378cbaec2b55aacd03e3f45d3";
export const COLLECTION_SIZE = 10
let FAUCET_URL;
if (mode == "dev") {
Expand Down
4 changes: 2 additions & 2 deletions script/src/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

MODE = "test"
MODE = "dev"
if MODE == "dev":
NODE_URL = os.getenv("APTOS_NODE_URL", "https://fullnode.devnet.aptoslabs.com/v1")
FAUCET_URL = os.getenv("APTOS_FAUCET_URL", "https://faucet.devnet.aptoslabs.com")
Expand All @@ -17,7 +17,7 @@
DEV_NET_NODE = os.getenv("APTOS_NODE_URL", "https://fullnode.devnet.aptoslabs.com/v1")
DEV_NET_FAUCET = os.getenv("APTOS_FAUCET_URL", "https://faucet.devnet.aptoslabs.com")

CONTRACT_ADDRESS = "0x481efbf0c3cbec627b5f5674287d4ae6ee770da5949dcfe698a8520108236a33::candy_machine_v2"
CONTRACT_ADDRESS = "0xc17197699c1a5c2d594bda3482e06cda9a7fe87378cbaec2b55aacd03e3f45d3::candy_machine_v2"
MAX_GAS = 1500000
GAS_UNIT = 100
BATCH_NUMBER = 200
Expand Down

1 comment on commit f3f77df

@vercel
Copy link

@vercel vercel bot commented on f3f77df Nov 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ftmtest – ./

ftmtest.vercel.app
ftmtest-git-main-ftm-test.vercel.app
ftmtest-ftm-test.vercel.app

Please sign in to comment.