Skip to content

Releases: dkackman/chia-repl

Daya Layer

22 Sep 17:18
Compare
Choose a tag to compare

Extensibility

20 Aug 18:00
Compare
Choose a tag to compare

What's Changed

  • Extensibility - Added the ability to load user supplied modules; including example that will mint an NFT collection from the contents of a folder.
  • Control console message verbosity with options.verbosity (quite, normal, verbose)

Full Changelog: v0.12.4...v0.13.0

Now with NFT

04 Aug 20:44
Compare
Choose a tag to compare

Integrates the ability to upload files to nft.storage and make them into NFTs

https://www.npmjs.com/package/chia-repl/v/0.12.6

🌿 let dataFileInfo = {
    name: 'test-nft-by-you',
    type: 'image/jpg',
    filepath: 'E:\\nft\\flower.jpg'
};
🌿 let mintingInfo = {
    wallet_id: 2,
    target_address: 'txch10kn82kl6hqv47qzeh4ugmqjr5mmdcnrlymfx8wl9nrhhkyxnzfkspna7l9',
};
🌿 let collectionMetaData = metadataFactory.createCollectionMetadata('test-nft-collection-by-you');
🌿 let nftMetadata = metadataFactory.createNftMetadata('test-nft-by-you', collectionMetaData);
🌿 await minter.createNftFromFile(dataFileInfo, mintingInfo, nftMetadata);
{
  spend_bundle: {
    aggregated_signature: '0x99e39df189f009a4679067d212a6845b7bfec05452d9696de79907a861239de3cbd247a27c39b2ca2492740f9f4aab58028ebf035f40597d16ddeee5194f8dfaa8c8ec8e90b6c91fce60944f0e55997b443be63ed8e9dcb9d685a9b473e1b441',
    coin_solutions: [ [Object], [Object], [Object] ]
  },
  success: true,
  wallet_id: 2
}

What's Changed

Full Changelog: v0.12.4...vv0.12.6

Bug fixes

26 Jul 00:54
Compare
Choose a tag to compare

What's Changed

  • Fix [BUG] makePayload doesn't work with allOf schemas by @dkackman in #21
  • Connection errors are handled more gracefully
  • Various and sundry tweaks

https://www.npmjs.com/package/chia-repl/v/0.12.4

Full Changelog: v0.12.0...v0.12.4

Add clvm-js

21 Jul 03:23
Compare
Choose a tag to compare

What's Changed

  • Added access to the CLVM with clvm-js

https://www.npmjs.com/package/chia-repl/v/0.12.0

Full Changelog: v0.11.3...v0.12.0

Bug fix release

12 Jul 20:32
e757c74
Compare
Choose a tag to compare