@lyncworld/fuel-marketplace
Version:
Marketplace NPM SDK on Fuel blockchain. Powered by LYNC, it allows anyone to create their own decentralized marketplace which includes listing and buying of Non-fungible tokens (NFTs) and Semi-fungible tokens (SFTs) in a few lines of code.
18 lines (15 loc) • 473 B
text/typescript
export enum AllowedProviders {
FuelProvider = 'FuelProvider',
WalletProvider = 'WalletProvider',
}
export enum Networks {
Testnet = 'testnet',
}
export enum MarketplaceErrorCodes {
InsufficientBalance = 'InsufficientBalance',
InvalidArgumentsError = 'InvalidArgumentsError',
InvalidNetworkArgument = 'InvalidNetworkArgument',
NetworkRequestError = 'NetworkRequestError',
PropertyUndefinedError = 'PropertyUndefinedError',
ServerError = 'ServerError',
}