Code Monkey home page Code Monkey logo

transaction-manager's Introduction

SKALE Transaction Manager

Discord

Microservice used to manage sending concurrent transactions to the Ethereum network

API

sign_and_send

Takes transaction hash, signs and sends it, returns transaction hash.

  • URL: /sign-and-send
  • Method: POST

Request body:

{
    "transaction_dict": "TRANSACTION_DICT_STRING",
}

Success Response:

{
    "errors": null,
    "data": {
        "transaction_hash": "0x..."
    }
}

Error response:

{
    "error": "Error message",
    "data": null
}

sign

Takes transaction hash, signs it, returns signed transaction.

  • URL: /sign
  • Method: POST

Data Params:

{
    "data": {
        "transaction_dict": "TRANSACTION_DICT_STRING",
    }
}

Success Response:

{
    "errors": null,
    "data": {
        "transaction_hash": "0x..."
    }
}

Error response:

{
    "error": "Error message",
    "data": null
}

address

Returns wallet address.

  • URL: /address
  • Method: GET

URL Params:

None.

Success Response:

{
    "errors": null,
    "data": {
        "address": "0x..."
    }
}

Error response:

{
    "error": "Error message",
    "data": null
}

public_key

Returns wallet public key.

  • URL: /public-key
  • Method: GET

URL Params:

None.

Success Response:

{
    "errors": null,
    "data": {
        "public_key": "0x..."
    }
}

Error response:

{
    "error": "Error message",
    "data": null
}

Development

Run development server

Install dependencies:

pip install -r requirements.txt
pip install -r requirements-dev.txt

Run server:

export $(grep -v '^#' .env | xargs) && python server.py

Build and run test container

docker build -t test-tm .
docker run  --env-file .env-docker -v ~/.skale:/skale_vol -v ~/.skale/node_data:/skale_node_data test-tm

Run transaction-manager container locally

VERSION=0.0.1-develop.0 && docker run -p 3008:3008 --env-file .env-docker -v ~/.skale:/skale_vol -v ~/.skale/node_data:/skale_node_data skalelabshub/transaction-manager:$VERSION

License

License

All contributions are made under the GNU Affero General Public License v3. See LICENSE.

All transaction-manager code Copyright (C) SKALE Labs and contributors.

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.