(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
  • Data Structure of Market Sign
  • permitBlock
  1. bybundle order flow

Step5. Market Sign

Data Structure of Market Sign

struct ServerSideCheck {
    bytes32 sellHash;
    bytes32 buyHash;
    uint256 permitBlock;
}
name
Type
Description

sellHash

bytes32

Sales order hash

buyHash

bytes32

Purchase order hash

permitBlock

uint256

Server-side verification completed block

permitBlock

  • The block number at which the server completes the final verification of the order information

PreviousStep4. Integrity verificationNextStep6. Transaction

Last updated 1 year ago