Model viewer (#220) - #6
Open
solreau wants to merge 987 commits into
Open
Conversation
|
@sigaloid is attempting to deploy a commit to the thugstore Team on Vercel. A member of the Team first needs to authorize it. |
|
✔️ Deploy Preview for boring-beaver-19133f canceled. 🔨 Explore the source changes: 999fdf5 🔍 Inspect the deploy log: https://app.netlify.com/sites/boring-beaver-19133f/deploys/616efbda6b1b7200083d9d5c |
|
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/thugstore/metaplex/7tLfcJz2Jm53T6KtKKiXjUgfcAQh |
* Added manual cache creation * Added back png_min Co-authored-by: Sammy <41593264+stegaBOB@users.noreply.github.com>
* Use generators in standard way - for..of iterate over generator instead of manual loop * Use AsyncGenerator instead of Generator<Promise<..>> * Fund arweave-sol bundlr wallet once instead of every bundle - precalculate the total size to upload and fund with that amount * Fixed bundlr file size calculation Co-authored-by: Sammy <41593264+stegaBOB@users.noreply.github.com>
Co-authored-by: Dmitrii Goriunov <goriunov@users.noreply.github.com>
* improve logging * AWS upload log
* improve logging * CM UI Error handling * improve error message
* misspells * misspells
…2052) This should solve #2013. Given original metadata (ie `0.json`) like: ```json { "name": "name", "symbol": "", "description": "desc", "image": "image.png", "properties": { "files": [{ "uri": "image.png", "type": "image/png" }] } } ``` this function used to produce an updated metadata with the arweave image link in the `image` property but would leave the one in `properties.files` intact: ```json { "name": "name", "symbol": "", "description": "desc", "image": "https://arweave.net/foobarbaz?ext=png", "properties": { "files": [{ "uri": "image.png", "type": "image/png" }] } } ``` but with this change it produces: ```json { "name": "name", "symbol": "", "description": "desc", "image": "https://arweave.net/foobarbaz?ext=png", "properties": { "files": [{ "uri": "https://arweave.net/foobarbaz?ext=png", "type": "image/png" }] } } ```
* improve logging * Split up minting into multiple txns and save setup * Update js/packages/candy-machine-ui/src/Home.tsx * Fix variable name
Co-authored-by: Noah Gundotra <noahgundotra@noahs-mbp.mynetworksettings.com>
…2058) * Update nft-storage.ts Update metadata's properties.file.uri when uploading via arweave-sol (#…2052) This should solve #2013. * Update metadata properties.file.uri same error as Update metadata's properties.file.uri when uploading via arweave-sol (#2052) This should solve #2013. * Update metadata properties.file.uri same error as Update metadata's properties.file.uri when uploading via arweave-sol (#2052) This should solve #2013. * Update Metadata properties.file.uri * method for set FileUri property * Forgot to run Prettier? yes, sorry * Update js/packages/cli/src/helpers/upload/pinata.ts * Update pinata.ts Co-authored-by: Sammy <41593264+stegaBOB@users.noreply.github.com>
This replaces the nft.storage uploader with one that supports "bundles" of multiple NFTs. This greatly improves performance by avoiding rate limits and requiring fewer signatures to authorize uploads. See nftstorage/metaplex-auth#39 for context. The existing `batchSize` config param is used to determine how many NFTs to include in each bundle, with a default of 50 if no `batchSize` is set, and a maximum of NFTBundle.MAX_ENTRIES (currently 2200). This PR also adds an `nftStorageGateway` config option that can override the default HTTP gateway host of `https://nftstorage.link` used in metadata links, in case the creator has a preferred gateway. Finally, the `files` array of the final metadata now contains two entries for each asset file. The first entry, with `cdn = true` is an HTTP gateway link, while the second, with `cdn = false` is an `ipfs://` URI that can be used to locate the data using any IPFS peer or gateway. This should add a bit of resiliency in case the primary gateway should go down, although that will require clients that know to look for the alternative `ipfs://` URIs.
* improve logging * prevent bad txns * prevent bad txns and update UI often
* Add new subcommand that returns deocded private key * allow use of encoded priv key instead of passing filename that contains decoded priv key * change create-key-array to decode_private_key * make Private lowercase
* improve logging * reduce txn size by removing unneccesary keypairs
- Previously if the name was wrong it would default to devnet. - With this change it will use the default if nothing is specified, but if something is specified and not found it will throw an error. Testing - Ran it and observed passing behavior with default specified, a valid env specified, and observed the error thrown with an invalid env specified. Co-authored-by: Michael Danenberg <danenbm@users.noreply.github.com>
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
…#2105) * Apply asset manifest symbol validation when reading file and allow empty string symbol * Throw TypeError instead of Error * Fix lint error * Default asset manifest symbol to empty string if not defined
…2135) * Update candy-machine-v2-cli.ts Fixing common existing issue by throwing error on incorrect env flag during call to `upload`. Issue on display here: https://solscan.io/account/6FKvsq4ydWFci6nGq9ckbjYMtnmaqAoatz5c9XWjiDuS#solTransfers * Fix lint Co-authored-by: Sammy <41593264+stegaBOB@users.noreply.github.com>
* feat: bump @civic/solana-gateway-react to 0.7.0 * chore: yarn install * fix: GatewayProvider set clusterUrl=rpcUrl Co-authored-by: Kevin Colgan <kevin@civic.com>
* set and verify collection command * set and verify collection all command for a hashlist * Required options Co-authored-by: Rodrigo Rivera <rrivem@gmail.com> Co-authored-by: Sammy <41593264+stegaBOB@users.noreply.github.com>
* fix civicpass * add env validation catch * linting
* fix * remove console.logs * shift * jest * fix presale * fix endDate * fix * revert to base package.json * fix * fix * fix * fix * fix
* replace with directory * update readme * update readme * update readme * update readme * update and add alt * update * remove alt * add descriptions and improve formatting * improve wording * typos * update links * Update README.md
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
change mesh viewer to model-viewer
cleanup
remove adding antd, which was a mistake
Co-authored-by: Arrowana 8245419+Arrowana@users.noreply.github.com