Seaport

Ancient8
Ancient8 Explorer

Getting Started

Choose a language:

Install the latest version of the SDK:

npm i thirdweb

Initialize the SDK and contract on your project:

import { createThirdwebClient, getContract } from "thirdweb";
import { defineChain } from "thirdweb/chains";
// create the client with your clientId, or secretKey if in a server environment
const client = createThirdwebClient({
clientId: "YOUR_CLIENT_ID"
});
// connect to your contract
const contract = getContract({
client,
chain: defineChain(888888888),
address: "0x00000000000000ADc04C56Bf30aC9d3c0aAF14dC"
});

You will need to pass a client ID/secret key to use thirdweb's infrastructure services. If you don't have any API keys yet you can create one for free from the dashboard settings.

All Functions & Events

import { prepareContractCall, sendTransaction } from "thirdweb";
const transaction = await prepareContractCall({
contract,
method: "function cancel((address offerer, address zone, (uint8 itemType, address token, uint256 identifierOrCriteria, uint256 startAmount, uint256 endAmount)[] offer, (uint8 itemType, address token, uint256 identifierOrCriteria, uint256 startAmount, uint256 endAmount, address recipient)[] consideration, uint8 orderType, uint256 startTime, uint256 endTime, bytes32 zoneHash, uint256 salt, bytes32 conduitKey, uint256 counter)[] orders) returns (bool cancelled)",
params: [orders]
});
const { transactionHash } = await sendTransaction({
transaction,
account
});