CryptoTron-JsonHttp

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "CryptoTron" : "0.10",
            "File::Basename" : "2.85",
            "JSON::PP" : "4.11",
            "LWP::UserAgent" : "6.43",
            "POSIX" : "1.88",
            "Simple::Filter::Macro" : "0.08",
            "Try::Catch" : "v1.1.0",
            "URI" : "1.76"
         }
      }
   },
   "release_status" : "stable",
   "version" : "0.14",
   "x_serialization_backend" : "JSON::PP version 4.11"
}

META.yml  view on Meta::CPAN

no_index:
  directory:
    - t
    - inc
requires:
  CryptoTron: '0.10'
  File::Basename: '2.85'
  JSON::PP: '4.11'
  LWP::UserAgent: '6.43'
  POSIX: '1.88'
  Simple::Filter::Macro: '0.08'
  Try::Catch: v1.1.0
  URI: '1.76'
version: '0.14'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

Makefile.PL  view on Meta::CPAN

use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME             => 'CryptoTron::JsonHttp',
    VERSION_FROM     => 'lib/CryptoTron/JsonHttp.pm', # Finds $VERSION from file, requires EU::MM from perl >= 5.5
    PREREQ_PM        => {'CryptoTron' => '0.10',
                         'Try::Catch' => '1.1.0',
                         'Simple::Filter::Macro' => '0.08',
                         'File::Basename' => '2.85',
                         'URI' => '1.76',
                         'POSIX' => '1.88',
                         'JSON::PP' => '4.11',
                         'LWP::UserAgent' => '6.43'}, # e.g. 'Module::Name' => '1.1'
    AUTHOR           => 'Dr. Peter Netz <ztenretep@cpan.org>',
    ABSTRACT         => 'Perl extension for use of with the Tron blockchain', # Direct definition of ABSTRACT
    LICENSE          => 'mit'
    # VERSION          => '0.01', # Direct definition of VERSION
    # ABSTRACT_FROM    => 'lib/CryptoTron/JsonHttp.pm', # Retrieve abstract from module

README  view on Meta::CPAN


   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  Simple::Filter::Macro
  CryptoTron
  Try::Catch
  URI
  POSIX
  JSON::PP
  LWP::UserAgent
  File::Basename 

COPYRIGHT AND LICENCE

lib/CryptoTron/Modules.pm  view on Meta::CPAN

package CryptoTron::Modules;
# Set the VERSION number.
$VERSION = '0.03';
# Use the magic module.
use Simple::Filter::Macro; # <-- The magic is found here.
# The lines below will be expanded into the caller's code.
use CryptoTron::BroadcastTransaction;
use CryptoTron::GetAccount;
use CryptoTron::GetAccountNet;
use CryptoTron::GetAccountResource; 
use CryptoTron::GetBrokerage;
use CryptoTron::GetReward;
use CryptoTron::ParseAccount;
use CryptoTron::WithdrawBalance;
# Package terminator 1; will not be written to caller's code.



( run in 0.560 second using v1.01-cache-2.11-cpan-49f99fa48dc )