Resources and my steps for becoming a Plutus blockchain developer
For quick minting of image collections created from a Stable Diffusion WebUI
add first part of minting steps to README
handle postprocessing bits in metatdata
add proper height information to metadata
refactor collection file name usage
get assets from file
fix task run
add address log
add correct asset ids to metadata
make all values strings for metadata
upgrade lucid
add some logging
abstract writing to file and save policy to disk
add readPolicyFile
add create-metadata task
cleanup and improve readme
separate minting and burning
Burning is currently broken
recombine minting and burning royalties nft
for some reason, it wasn't working without doing the burning immediately after the minting
handle metadata correctly
attach wallet to lucid object
create burn royalties as separate step
improve reading in file and parsing
add verify pinned method
add protection to only grab the last several pins
add verify pinned task
add prompt parts count
add uploading to ipfs
integrate pinning into metadata creation
add list pinned task
begin support for multiple metadata styles
record and write file of asset metadata for review and pinning confirmation
improve saving assets and add save metadata
Bumping this, as this has been my biggest issue with using Deno so far.
rename createAssets
reading image metadata
organize metadata
rename mint collection
upgrade deno
add log-utxos task
add new lines to transaction wait output
add ada balance task
rename mintNFTCollection
create metadata folder for metadata functions
add input images location
begin createInputAssets task
refactor naming and console -> return
improve config
get blockfrost bits out of projectId and test config with task
add new wallet task
document new tasks
add minting task
add .task.ts
extension to task files
rename config log task
add royalties bits to config
add log-metadata task
add alia to links
improve task part of readme
I'm encountering this missing feature as well and would like to bump this issue.
modify input data
add burn, improve waitForTransaction
rename for clarity and organize imports
add comment
Is your feature request related to a problem? Please describe.
The defaultModulesOrder
property is missing from the IBeeConfig
type. It should be present, as described in the documentation regarding re-ordering content tiles.
This causes a TypeScript error with valid usage of BeePlugin within a TypeScript environment.
Describe the solution you'd like
Optional property defaultModulesOrder
is added to IBeeConfig
.
The type value could be string[]
but it would be better to include the known content tiles as described here.
Perhaps it could be an abstraction of something like this (although this may not be correct):
// ...
defaultModulesOrder?: (
| 'Heading (Title)'
| 'Paragraph'
| 'List'
| 'Image'
| 'Button'
| 'Divider'
| 'Spacer'
| 'Social'
| 'DynamicContent'
| 'Html'
| 'Video'
| 'Form'
| 'Icons'
| 'Menu'
| 'Carousel'
| 'Text'
| string
)[]
// ...
Describe alternatives you've considered
For now, we will need to use a // @ts-expect-error
directive on this line.
Additional context
mint royalties nft
working royalties by waiting for transaction to complete
move file to helpers
improve logging and metadata attachment
improve metadata
output and preview metatdata
rename minting function
add example projects
mint multiple NFTs
reorg folders
rename minting function
refactor wallet and mintingPolicy
automate metadata
abstract metadata creation
modify mintingPolicy contract
add royalties CIP to readme