(EN)ByBundle - NFT marketplace for bundle trading
  • 👏Welcome to ByBundle
  • 🤝Data provided by
  • OVERVIEW
    • NFT Marketplace specialized in bundle trading
    • Issues with existing marketplaces
    • Solution 1. Bundling NFTs
    • Solution 2. Market Sign System
  • service Guide
    • Create sell order
    • Buy order
    • Cancel order
  • bybundle order flow
    • Step1. Sellers create bundles
    • Step2. Bundles are displayed as a list
    • Step3. Buyers place purchase orders
    • Step4. Integrity verification
    • Step5. Market Sign
    • Step6. Transaction
  • Contract
    • Owner Interface
    • Order Interface
    • Fee Interface
    • Structs
    • Enums
  • Link
    • Terms of Service
    • Twitter
  • SUPPORTED
    • Supported Collections List
Powered by GitBook
On this page
  • setFeeAddress
  • setServerSideAddress
  • setFeeYn
  • setFeeRate
  • serverSideCheckView
  • setRevoke
  1. Contract

Owner Interface

Marketplace Contract Owner Functions

Exchange-related functions that pertain to the marketplace's policies, reinforced with the "onlyOwner" modifier from Ownable to enhance security.

setFeeAddress

function setFeeAddress(address feeAddress_) external onlyOwner

Setting the transaction fee account

setServerSideAddress

function setServerSideAddress(address platformCheckAddress_) external onlyOwner

Verification is conducted in the Server Side, setting the account address.

setFeeYn

function setFeeYn(bool feeYn_) external onlyOwner

Setting the presence of marketplace fees

setFeeRate

function setFeeRate(uint256 feeRate_) external onlyOwner

Setting the fee percentage to be applied when FeeYn is set to true

serverSideCheckView

function serverSideCheckView(
        Order memory buy,
        Sig memory buySig,
        Order memory sell,
        Sig memory sellSig
    ) public view returns(bytes32 platformCheckHash, bytes memory encodeP, uint256 permitBlock)

Returning data for Market Sign verification, including seller orders and signatures, as well as buyer orders and signatures.

setRevoke

function setRevoke() external onlyOwner

PreviousStep6. TransactionNextOrder Interface

Last updated 1 year ago