Skip to content

Auxiliary module to inject web3js library to magento

License

Notifications You must be signed in to change notification settings

torys877/crypto-base

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crypto Base Magento 2 Extension

Description

Module adds:

  1. web3js library to magento
  2. New field order_hash to sales_order table to identify order during crypto payment

Installation

To install module you need to add repositories to your composer.json:

    "repositories": {
        "crypto-base": {
            "type": "git",
            "url": "git@github.com:torys877/crypto-base.git"
        }
    }

Or add it in console:

composer config repositories.crypto-base git git@github.com:torys877/crypto-base.git

Install module:

composer require cryptom2/base:v1.0.0

And run

php bin/magento setup:upgrade

Ihor Oleksiienko