-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1588 from thesandboxgame/test/marketplace-integra…
…tion-tests Marketplace Bundle Integration tests
- Loading branch information
Showing
10 changed files
with
780 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
export const GRID_SIZE = 408; | ||
|
||
//ERC20 to exchange for | ||
export const erc20PriceForBundle = 10000000000; | ||
|
||
// Configuration for ERC721 land tokens (array of [x,y] values) | ||
export const erc721 = [ | ||
// Add (x, y) pairs as needed | ||
]; | ||
|
||
// Configuration for quad land (array of [x, y, size] values) | ||
export const quad = [ | ||
// Add (size,x, y) triples as needed | ||
]; | ||
|
||
// Configuration for ERC1155 assets (array of [tokenId, supply] values) | ||
export const erc1155 = [ | ||
// Add [tier, amount, metadataHash] as needed | ||
]; | ||
|
||
// Price distribution setup | ||
export const priceDistribution = { | ||
erc721Prices: [[]], | ||
erc1155Prices: [[]], | ||
quadPrices: [], | ||
}; |
Oops, something went wrong.
c552bec
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Coverage for this commit
Coverage Report