UNPKG

limepay

Version:

LimePay SDK is a node module for simplifying the consumption of LimePay API

13 lines (8 loc) 378 B
const Signer = require('./signer'); const SIGNATURE_VALUE_TYPES = ['uint256', 'address', 'uint256', 'address', 'uint256']; class RelayedSigner extends Signer { constructor(nonce, escrowAddress, gasPrice, addressToFund, weiToSend) { super(SIGNATURE_VALUE_TYPES, [nonce, escrowAddress, gasPrice, addressToFund, weiToSend]); } } module.exports = RelayedSigner;