An open API service indexing awesome lists of open source software.

https://github.com/casper-network/casper-integrations

Various assets aimed at streamlining integration processes.
https://github.com/casper-network/casper-integrations

Last synced: 5 months ago
JSON representation

Various assets aimed at streamlining integration processes.

Awesome Lists containing this project

README

          

casper-integrations
===============

Various technical assets in support of CSPR node integrations.

What is casper-integrations ?
--------------------------------------

- JSON-RPC, REST & SSE node api documentation & example code;

- typical integration workflow sample code;

- links to technical articles and the such like;

- a set of use case end to end solutions;

Why casper-integrations ?
--------------------------------------

There is a significant requirement to streamline CSPR network integrations by developers, exchanges, wallets, validators ...etc. It's goal is to streamline client side experience of interacting with a casper node.

Who uses casper-integrations ?
--------------------------------------

Software engineers. Validators. Testers.

How to run Javascript examples ?
--------------------------------------

1. Setup:

```
cd YOUR_WORKING_DIRECTORY/casper-integrations
npm install
```

2. Import environment variables:

```
source YOUR_WORKING_DIRECTORY/env.sh
```

NOTE - if you wish to override them then simply make a copy of the env.sh file, and then edit and import the copy instead.

3. Run node-api example:

```
node YOUR_WORKING_DIRECTORY/casper-integrations/node-api//request.js
```

4. Run erc20 example:

```
node YOUR_WORKING_DIRECTORY/casper-integrations/contracts/erc20/.js
```