Socket
Socket
Sign inDemoInstall

seabug-contracts

Package Overview
Dependencies
12
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    seabug-contracts

A library for interacting with Seabug smart contracts via the Cardano Transaction Lib (CTL).


Version published
Weekly downloads
2
Maintainers
1
Install size
12.6 MB
Created
Weekly downloads
 

Readme

Source

seabug-contracts

A library for interacting with Seabug smart contracts via the Cardano Transaction Lib (CTL).

Tests

Use spago test to run the tests. Something like nix build .#checks.<system>.seabug-contracts can also be used, where <system> is something like x86_64-linux.

Minting

The minting process currently requires some manual steps. To mint a new NFT:

  • Upload a new image to nft.storage (e.g. using seabug/scripts/mint-nft.sh)
  • Uncomment this line
  • Update the image info here
    • Make sure you're using the base36 encoded CID (mint-nft.sh prints this out)
  • Run make run-dev and open the link from the console in chrome; this will trigger the minting
    • If Nami/Gero are giving you trouble, this snippet can be used to use a key wallet instead:
      privateKey <- liftM (error "Failed to parse private key") $
        privateKeyFromBytes
            =<< hexToRawBytes "<secret key>"
      privateStakeKey <- liftM (error "Failed to parse private stake key")
        $ privateKeyFromBytes
        =<< hexToRawBytes "<secret stake key>"
      let wallet = Just $ mkKeyWallet (wrap privateKey) (Just $ wrap privateStakeKey)
      
    • The secret key can be obtained through e.g. seabug/scripts/prepare-wallet.sh (make sure to add ada to that wallet)
      • Note you may have to remove the "5820" from the start of the "cborHex" in the skey file
    • The stake key will also be necessary for minting, the command cardano-cli stake-address key-gen --signing-key-file stake.skey --verification-key-file stake.vkey can be used to get a stake key
  • Add the wallet that you minted with as an artist to the nft-marketplace-server database with admin/create_artist

FAQs

Last updated on 28 Jul 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc