Giter VIP home page Giter VIP logo

casper-perl-sdk's Introduction

Casper-Perl-sdk

Perl SDK library for interacting with a CSPR node.

What is CSPR-Perl-SDK?

SDK to streamline the 3rd party Perl client integration processes. Such 3rd parties include exchanges & app developers.

System requirement

The SDK use Perl 5.30.2. To run the SDK you need to have Perl 5.8.3 or above installed in your system.

Run and test

You can run and test the SDK from command line interface or other IDE such as Eclipse.

To run and test the SDK you will need to install Perl and some Perl libraries.

Install Perl

To run Perl on specific Operating System, please refer to the Perl language main site for how to set up on each Operating System at this address: https://www.perl.org/get.html

The SDK can be built and tested in different IDEs and from command line.

For Windows user, for fast and easy installation and usage of the command line for Perl, please install "Strawberry Perl" - As the document at the Perl main page:

A 100% Open Source Perl for Windows that is exactly the same as Perl everywhere else; this includes using modules from CPAN, without the need for binary packages.

Install libraries for Ed25519, Secp256k1, Blake2b256

The SDK uses outside libraries for doing Ed25519, Secp256k1 Crypto and Blake2b256 Hash task from the following address:

Blake2b256: https://metacpan.org/pod/Crypt::Digest::BLAKE2b_256

Ed25519: https://metacpan.org/pod/Crypt::PK::Ed25519

Secp256k1: https://metacpan.org/pod/Crypt::PK::ECC

You need to install all the libraries before you can run and test the Casper Perl SDK.

For Windows users

The libraries can be installed following these steps:

  • Open Command Prompt
  • Run this command "perl -MCPAN -e shell"
  • Then run this command "install CryptX"

For Mac users

There are several steps need to be done before you can run these command above.

First of all, before installing the libraries, you have to assign the read/write permission for the Perl folder. In general the Perl setting folder is in this path "/Library/Perl/..."

Open "Terminal" and run this command "open /Library/Perl"

You can see the folder for Perl, there can be sereral folders for some Perl version like this:

Screen Shot 2022-07-12 at 10 16 14

Right click on the Perl latest version (or the version you are working on - by default it will be the latest) then choose "Get Info".

Screen Shot 2022-07-12 at 10 16 57

The detail information of the Perl folder is shown. Take attention to the "Sharing & Permission" region. There can be some accounts with "Read only" permission. You have to give the account "Read & Write" permission.

Screen Shot 2022-07-12 at 10 21 54

Click on the Lock at the bottom to begin the Permission assignment.

Screen Shot 2022-07-12 at 10 31 09

A window appears like this, enter your Administrator user name and password, then click "OK"

Screen Shot 2022-07-12 at 10 33 40

You will see the Lock is now in Open mode, click on each "Privilege" row to set the account Right.

Screen Shot 2022-07-12 at 10 39 37

First set Permission for "admin" account. Click on the "Privilege" row for "admin" account, choose "Read & Write"

Screen Shot 2022-07-12 at 10 46 10

Click on the "..." Circle in the bottom and choose "Apply to enclosed items..."

Screen Shot 2022-07-12 at 10 51 04

Click "OK" for the confirmation Window.

Screen Shot 2022-07-12 at 10 59 45

Now the "admin" account can have the right to Read&Write all folder/subfolder of the Perl/5.30 folder (5.30 is the Perl version in this manual).

Do it the same for the rest of the user, to make sure that when you install the Libraries, you won't face the problem of Read/Write deny problem. If the "admin" account user is not in the list, add this account by clicking the "+" button, then assign the permission "Read/Write" to this "admin" account. When all the account Privilege is set to "Read & Write", you can click the Lock icon again to lock the Permission setting section. Then close the information window for the folder. The Permission setting is now done.

Screen Shot 2022-07-12 at 11 00 57

You can now run the command line to install the outside libraries.

Open Terminal and type these commands:

sudo perl -MCPAN -e shell
install CryptX

You can now run the libraries for Blake2b256, Ed25519 and Secp256k1

Run and test from IDE

There are variety of IDE for Perl as described in this link: https://www.dunebook.com/best-perl-ide-and-editors/. In this document, we focus on how to implement the SDK in Eclipse as IDE, with EPIC add on installed. First you need to install Eclipse from this address: https://www.eclipse.org/downloads/ Download the Eclipse installation file (Choose the "Get Eclipse IDE 2022โ€‘03"), install it, choose "Eclipse IDE for Java Developers" is good enough, as in this image below. step0

Then open Eclipse, and hit "Help->Eclipse Marketplace", as in this image:

step1

Search for keyword "EPIC", you will see the first result of EPIC addon for Perl in Eclipse appears, choose to install it, as this image

step2

Accept by clicking all the checkbox during the process of installing EPIC addon

step3

Next restart Eclipse and now you are ready to load the Casper Perl SDK in Eclipse.

Download the Casper Perl SDK from Github, place it somewhere in your local hard drive. From Eclipse you can then import the project.

From Eclipse choose "File-> Open Projects from File System..."

step5

Hit the "Directory" button

step51

and choose the already downloaded Casper Perk SDK.

step52

Click "Finish", you then will see the project in the "Package Explorer" tab of Eclipse step6

Double click on the "Casper-Perl-sdk" project to expand it. The source code for the SDK is in the "lib" folder. The test file for the SDK is in the "t" folder. To test for the RPC calls, expand the "t" folder. You will see a list of test file in that folder. To test for each file, just click on each file, for example to test for "GetAuctionTest.t" file, Double click on that file. Then in Eclispe hit "Run->Run". You will see the result of the test in the Console window, like this: step7

Follow the same procedure, click on each test file in the "t" folder to test for RPC call that you wish to do.

If eclipse does not see the CryptX module, see the CryptX location by running this command in Terminal if it does not shown in @INC:

perldoc -l CryptX 

Then you can add it to the project in Eclipse.

Run and test from command line

Download the Source code from Github and put it in your local computer. From the Terminal(Mac OS) or Command Prompt (Windows) enter the root folder of the SDK. Then enter the "t" folder of the SDK. Run this command to test for each test file in the "t" folder.

perl "test file"

For example if you want to test for file "GetAuction.t" which contain all test for the "state_get_auction_info" RPC call, run this command:

perl GetAuction.t

If you want to test for file "GetDeployRPCTest.t" run this command:

perl GetDeployRPCTest.t

Usage: Run the module of the SDK

A sample project can be found at this address: https://github.com/hienbui9999/SampleCasperSDKCall_Perl

The SDK provide functionality in form of module. To use the module in other Perl project, simply copy all file/folders under the "lib" folder of the SDK and copy it under the "lib" folder of other project.

After that, you can call the function directly within the "lib" folder of project or create other file outside of the "lib" folder, for example in the root directory of the project, then call the class/function of the Casper SDK in the "lib" folder.

Detail of how to call the module function of the SDK from other files:

Create 1 simple project in Perl by create 1 folder, for example let call it "SamplePerlProject" and make the same folder "SamplePerlProject" somewhere in your hard disk.

Create a folder with name "lib" under the "SamplePerlProject" folder.

Copy all the file/folder under the "lib" folder of the Casper-Perl-sdk SDK to the "lib" folder under "SamplePerlProject" folder.

Under "SamplePerlProject" folder create 1 Perl file with name "test.pl" with the following content, just to implement the call for "chain_get_state_root_hash" RPC call.

#!/usr/bin/perl
$ENV{'PERL_LWP_SSL_VERIFY_HOSTNAME'} = 0;
use strict;
use warnings;
use FindBin qw( $RealBin );
use lib "$RealBin/lib";
use GetStateRootHash::GetStateRootHashRPC;
use Common::ConstValues;
use Common::BlockIdentifier;
sub testFunc {
	my $bi = new Common::BlockIdentifier();
	# Test 1: Call with block hash
	$bi->setBlockType("hash");
	$bi->setBlockHash("d16cb633eea197fec519aee2cfe050fe9a3b7e390642ccae8366455cc91c822e");
	my $postParamStr = $bi->generatePostParam($Common::ConstValues::RPC_GET_STATE_ROOT_HASH);
	my $getStateRootHashRPC = new GetStateRootHash::GetStateRootHashRPC();
	my $stateRootHash1 = $getStateRootHashRPC->getStateRootHash($postParamStr);
	print $stateRootHash1;
}
testFunc();

Somehow the structure of the "SamplePerlProject" is like this

Screen Shot 2022-05-15 at 10 35 59

To run the "test.pl" file, in Terminal or Command Prompt enter to the folder of the "test.pl" file and run this command

perl test.pl

Or in Eclipse double click the file "test.pl" and then hit "Run->Run" to run the file.

You will see the state root hash value printed in the Terminal or Console Window of Eclipse.

Full code for a sample project can be found at this address: https://github.com/hienbui9999/SampleCasperSDKCall_Perl

Information for Secp256k1, Ed25519 Key Wrapper and Put Deploy

Key wrapper specification:

The Key wrapper do the following work:(for both Secp256k1 and Ed25519):

  • (PrivateKey,PublicKey) generation

  • Sign message

  • Verify message

  • Read PrivateKey/PublicKey from PEM file

  • Write PrivateKey/PublicKey to PEM file

The key wrapper is used in account_put_deploy RPC method to generate approvals signature based on deploy hash.

The Blake2b256 hash and Crypto task for Ed25519 and Secp256k1 use Crypt and CryptX at this address:

https://metacpan.org/pod/Crypt::Digest::BLAKE2b_256 for blake2b256 hash function

https://metacpan.org/pod/Crypt::PK::ECC for Secp256k1 Crypto task

https://metacpan.org/pod/Crypt::PK::Ed25519 for Ed25519 Crypto task

The Blake2b256 hash is implemented in file "Blake2b256Helper.pm" under folder "CryptoHandle"

The Ed25519 crypto task is implemented in file "Ed25519Handle.pm" under folder "CryptoHandle"

The Secp256k1 crypto task is implemented in file "Secp256k1Handle.pm" under folder "CryptoHandle"

Perl version of CLType primitives, Casper Domain Specific Objects and Serialization

CLType primitives

A detail information on CLType primitive can be read here

Perl SDK CLType primitive

Documentation for classes and methods

casper-perl-sdk's People

Contributors

ggurbet avatar hienbui9999 avatar tqhuy2018 avatar

Watchers

 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.