axentro-util

Version, currently 0.1.13 versions

github.com/Axentro/axentro-util

A utility to create and post a signed transaction for sending AXNT tokens on Axentro blockchain

1 stars
0 dependents
License: MIT

Nothing has been indexed for 0.1.1 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  axentro-util:
    github: Axentro/axentro-util
    version: ~> 0.1.1

Then run:

shards install

shard.yml

No shard.yml has been indexed for 0.1.1. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

axentro-util

A utility to create and post a signed transaction for sending AXNT tokens on Axentro Blockchain

Linux CI

Installation

  1. Add the dependency to your shard.yml:

    dependencies:
      axentro-util:
        github: axentro/axentro-util
  2. Run shards install

Usage

require "axentro-util"

from_address = "VDAwZTdkZGNjYjg1NDA1ZjdhYzk1M2ExMDAzNmY5MjUyYjI0MmMwNGJjZWY4NjA3"
from_public_key = "3a133bb891f14aa755af119907bd20c7fcfd126fa187288cc2b9d626552f6802"
wif = "VDAwYjIxODI2NDg3MDE3YjA2YTYxOTJiYjUzMjg0MDAzZWNkZGRhZDJlYmUwNjMxYWM3NmIwMzFlYTg4MjlkMTBhMzBkZmNk"
to_address = "VDBjY2NmOGMyZmQ0MDc4NTIyNDBmYzNmOWQ3M2NlMzljODExOTBjYTQ0ZjMxMGFl"
amount = "1"

# generate a signed transaction from the supplied data    
transaction = Axentro::Util.create_signed_send_transaction(from_address, from_public_key, wif, to_address, amount)

# post the transaction to the desired server
transaction_id = Axentro::Util.post_transaction(transaction, "https://testnet.axentro.io")

Contributing

  1. Fork it (https://github.com/your-github-user/axentro-util/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors