wavesplatform / Waves

⛓️ Reference Waves Blockchain Node (client) implementation on Scala
https://wavesplatform.com/
MIT License
1.17k stars 419 forks source link

Off-line multi sign #1503

Closed xianaofei closed 5 years ago

xianaofei commented 6 years ago

How to support offline storage and multi signature. Please provide reference support.

monroid commented 6 years ago

Hi @xianaofei, what do you explain that do you mean under offline storage definition? Multisignature we supports in our smart contracts, here you can find the example of multisig https://docs.wavesplatform.com/en/technical-details/ride-language/language-description.html

vsuharnikov commented 5 years ago

@xianaofei You could:

  1. Run the node: https://docs.wavesplatform.com/en/waves-full-node/how-to-install-a-node/how-to-install-a-node.html
  2. Import blockchain: https://docs.wavesplatform.com/en/waves-full-node/export-and-import-from-the-blockchain.html
  3. The delete peers.dat in waves directory and add:
    waves.network { 
    bind-address = "127.0.0.1"
    known-peers = []
    }

    at the end of your config.

This should make your node effectively offline :)