NFT
You have the capability to oversee and control your BEP-721 and BEP-1155 standard non-fungible tokens (NFTs) through a Zebec safe.
Usage
Initializing the ZebecMultisigStream
import { ZebecMultisigStream } from 'zebec-multisig-stream';
// Your Ethereum provider or signer
const providerOrSigner = ...;
// Optionally, specify the contract address (default is CORE_CONTRACT_ADDRESS)
const contractAddress = ...;
const zebecStream = new ZebecMultisigStream(providerOrSigner, contractAddress);Depositing ERC-721 Tokens
const tokenId = 123; // The ERC-721 token ID
const tokenAddress = '0x...'; // The ERC-721 token contract address
const safeAddress = '0x...'; // The destination safe address
const transactionResponse = await zebecStream.depositERC721(tokenId, tokenAddress, safeAddress);
console.log(transactionResponse);Depositing ERC-1155 Tokens
Transferring ERC-721 Tokens
Transferring ERC-1155 Tokens
Last updated