Watch heavy contract for filter and API count

This commit is contained in:
2022-05-01 14:30:47 -04:00
parent 5c346ead31
commit 8180d406ae
3 changed files with 5 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ const options = {
// initialize and connect to the api // initialize and connect to the api
const blocknative = new BlocknativeSdk(options) const blocknative = new BlocknativeSdk(options)
const contractAddress = "0x7d82a88Efb60Bb83B3f1665757c20D07E5C0f3ED" const contractAddress = "0x90Bc839511e1a8b32e2ba27f37c7632D12E872B6";
// const methodName = "ownerMint" // const methodName = "ownerMint"
const methodName = "flipSaleState" const methodName = "flipSaleState"

View File

@@ -29,7 +29,7 @@ async function mintOwnerNFT() {
}; };
const signedTx = await web3.eth.accounts.signTransaction(tx, process.env.PRIVATE_OWNER_KEY); const signedTx = await web3.eth.accounts.signTransaction(tx, process.env.PRIVATE_OWNER_KEY);
console.log("Minting punk...") console.log("Minting owner punk...")
const transactionReceipt = await web3.eth.sendSignedTransaction(signedTx.rawTransaction); const transactionReceipt = await web3.eth.sendSignedTransaction(signedTx.rawTransaction);
console.log(`Transaction receipt: ${JSON.stringify(transactionReceipt)}`); console.log(`Transaction receipt: ${JSON.stringify(transactionReceipt)}`);

View File

@@ -9,7 +9,7 @@ import { createAlchemyWeb3 } from "@alch/alchemy-web3"
const web3 = createAlchemyWeb3(API_URL); const web3 = createAlchemyWeb3(API_URL);
// import contractABI from './MoonbirdPunks.json' assert { type: 'json' } // import contractABI from './MoonbirdPunks.json' assert { type: 'json' }
import contractABI from './Kitbash.json' assert { type: 'json' } import contractABI from './Otherside.json' assert { type: 'json' }
// create options object // create options object
const options = { const options = {
@@ -24,8 +24,8 @@ const options = {
// initialize and connect to the api // initialize and connect to the api
const blocknative = new BlocknativeSdk(options) const blocknative = new BlocknativeSdk(options)
const contractAddress = "0x5ff1863753C1920C38c7BaE94576f2831eF99695" const contractAddress = "0x34d85c9CDeB23FA97cb08333b511ac86E1C4E258"
const methodName = "mint" const methodName = "nftOwnerClaimLand"
// const methodName = "flipSaleState" // const methodName = "flipSaleState"
await blocknative.configuration({ await blocknative.configuration({