Coder Social home page Coder Social logo

python-op_return-dashpay's Introduction

python-OP_RETURN v2

Simple Python commands and libraries for using OP_RETURNs in Dash transactions. Forked from https://github.com/coinspark/python-OP_RETURN

Copyright (c) Coin Sciences Ltd - http://coinsecrets.org/ Nova Trauben - [email protected]

MIT License (see headers in files)

REQUIREMENTS

  • Python 2.5 or later (including Python 3)
  • Bitcoin Core 0.9 or later

BEFORE YOU START

Check the constant settings at the top of OP_RETURN.py. If you just installed Bitcoin Core, wait for it to download and verify old blocks. If using as a library, add 'from OP_RETURN import *' in your Python script file.

TO SEND A DASHPAY TRANSACTION WITH SOME OP_RETURN METADATA

On the command line:

  • python send-OP_RETURN.py <testnet (optional)>

    is the bitcoin address of the recipient is the amount to send (in units of BTC) is a hex string or raw string containing the OP_RETURN metadata (auto-detection: treated as a hex string if it is a valid one) should be 1 to use the Dashpay testnet, otherwise it can be omitted

  • Outputs an error if one occurred or the txid if sending was successful

  • Examples:

    python send-OP_RETURN.py 149wHUMa41Xm2jnZtqgRx94uGbZD9kPXnS 0.001 'Hello, blockchain!' python send-OP_RETURN.py 149wHUMa41Xm2jnZtqgRx94uGbZD9kPXnS 0.001 48656c6c6f2c20626c6f636b636861696e21 python send-OP_RETURN.py mzEJxCrdva57shpv62udriBBgMECmaPce4 0.001 'Hello, testnet!' 1

As a library:

  • OP_RETURN_send(send_address, send_amount, metadata, testnet=False)

    send_address is the Dashpay address of the recipient send_amount is the amount to send (in units of DASH) metadata is a string of raw bytes containing the OP_RETURN metadata testnet is whether to use the Dashpay testnet network (False if omitted)

  • Returns: {'error': ''} or: {'txid': ''}

  • Examples

    OP_RETURN_send('149wHUMa41Xm2jnZtqgRx94uGbZD9kPXnS', 0.001, 'Hello, blockchain!') OP_RETURN_send('mzEJxCrdva57shpv62udriBBgMECmaPce4', 0.001, 'Hello, testnet!', True)

TO STORE SOME DATA IN THE BLOCKCHAIN USING OP_RETURNs

On the command line:

  • python store-OP_RETURN.py <testnet (optional)>

    is a hex string or raw string containing the data to be stored (auto-detection: treated as a hex string if it is a valid one) should be 1 to use the bitcoin testnet, otherwise it can be omitted

  • Outputs an error if one occurred or if successful, the txids that were used to store the data and a short reference that can be used to retrieve it using this library.

  • Examples:

    python store-OP_RETURN.py 'This example stores 47 bytes in the blockchain.' python store-OP_RETURN.py 'This example stores 44 bytes in the testnet.' 1

As a library:

  • OP_RETURN_store(data, testnet=False)

    data is the string of raw bytes to be stored testnet is whether to use the dashpay testnet network (False if omitted)

  • Returns: {'error': ''} or: {'txids': ['<1st txid>', '<2nd txid>', ...], 'ref': ''}

  • Examples:

    OP_RETURN_store('This example stores 47 bytes in the blockchain.') OP_RETURN_store('This example stores 44 bytes in the testnet.', True)

TO RETRIEVE SOME DATA FROM OP_RETURNs IN THE BLOCKCHAIN

On the command line:

  • python retrieve-OP_RETURN.py <testnet (optional)>

    is the reference that was returned by a previous storage operation should be 1 to use the dash testnet, otherwise it can be omitted

  • Outputs an error if one occurred or if successful, the retrieved data in hexadecimal and ASCII format, a list of the txids used to store the data, a list of the blocks in which the data is stored, and (if available) the best ref for retrieving the data quickly in future. This may or may not be different from the ref you provided.

  • Examples:

    python retrieve-OP_RETURN.py 356115-052075 python retrieve-OP_RETURN.py 396381-059737 1

As a library:

  • OP_RETURN_retrieve(ref, max_results=1, testnet=False)

    ref is the reference that was returned by a previous storage operation max_results is the maximum number of results to retrieve (in general, omit for 1) testnet is whether to use the bitcoin testnet network (False if omitted)

  • Returns:

{'error': '<some error string>'}
       or: {'data': '<raw binary data>',
            'txids': ['<1st txid>', '<2nd txid>', ...],
            'heights': [<block 1 used>, <block 2 used>, ...],
            'ref': '<best ref for retrieving data>',
            'error': '<error if data only partially retrieved>'}

A value of 0 in the 'heights' array means some data is still in the mempool.

  • Examples:

    OP_RETURN_retrieve('356115-052075') OP_RETURN_retrieve('396381-059737', 1, True)

python-op_return-dashpay's People

Contributors

1fabunicorn avatar gidgreen avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.