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.
- Host: GitHub
- URL: https://github.com/casper-network/casper-integrations
- Owner: casper-network
- License: apache-2.0
- Created: 2021-05-02T16:23:52.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-07-31T13:57:44.000Z (almost 4 years ago)
- Last Synced: 2024-06-21T17:55:11.605Z (almost 2 years ago)
- Language: JavaScript
- Size: 483 KB
- Stars: 9
- Watchers: 5
- Forks: 9
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```