(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
  • SaleSide
  • SaleKind
  • ItemType
  1. Contract

Enums

SaleSide

enum SaleSide {
    BUY,
    SELL
}

SaleKind

enum SaleKind {
    BUNDLE_FIXED_PRICE
}

ItemType

enum ItemType {
    NATIVE,
    ERC20,
    ERC721,
    ERC1155
}
PreviousStructs