├── .gitattributes ├── .gitignore ├── .solcover.js ├── LICENSE ├── README.md ├── contracts ├── 5 │ ├── BasicMetaTransaction.sol │ ├── EternalStorage.sol │ ├── IdentityProxy.sol │ ├── ImplementationLogic.sol │ ├── ProxyManager.sol │ ├── RelayHub.sol │ ├── RelayerManager.sol │ ├── WETH9.sol │ ├── balancer │ │ └── MexaExchangeProxy.sol │ ├── dsproxy │ │ ├── MexaDSProxyFactory.sol │ │ └── dsProxy.sol │ ├── libs │ │ ├── EIP712Base.sol │ │ ├── EIP712MetaTx.sol │ │ ├── Ownable.sol │ │ └── SafeMath.sol │ ├── test │ │ └── MockBasicMetaTxChild.sol │ └── token │ │ ├── erc20 │ │ └── IERC20.sol │ │ └── erc721 │ │ ├── IERC165.sol │ │ └── IERC721.sol └── 6 │ ├── ExecutorManager.sol │ ├── feeManager │ ├── CentralisedFeeManager.sol │ └── CentralisedFeeManagerWithLimits.sol │ ├── forwarder │ ├── BiconomyForwarder.sol │ ├── ERC20ForwardRequestTypes.sol │ ├── ERC20Forwarder.sol │ ├── ERC20ForwarderProxy.sol │ ├── ERC20ForwarderStorage.sol │ ├── ERC20TransferHandler.sol │ └── OracleAggregator.sol │ ├── insta-swaps │ ├── Address.sol │ ├── LiquidityPoolManager.sol │ ├── ReentrancyGuard.sol │ └── faucetManager.sol │ ├── interfaces │ ├── IERC20.sol │ ├── IERC20EIP2612.sol │ ├── IERC20Extented.sol │ ├── IERC20Permit.sol │ ├── IFeeManager.sol │ └── IRelayRecipient.sol │ ├── libs │ ├── BaseRelayRecipient.sol │ ├── Context.sol │ ├── Ownable.sol │ └── Pausable.sol │ └── test │ ├── AggregatorInterface.sol │ ├── Dai.sol │ ├── MockActions.sol │ ├── MockFeeManager.sol │ ├── TestRecipient.sol │ ├── TestToken.sol │ ├── TestnetDAI.sol │ ├── Token.sol │ ├── imports.sol │ └── mockFaucet.sol ├── coverage.json ├── flat.sol ├── hardhat.config.js ├── package.json ├── scripts ├── Accounts.js ├── BasicMetaTxDeployer.js ├── ChangeTransferHandlerGas.js ├── ERC20ForwardersDeployerKovan.js ├── ERC20ForwardersDeployerMainnet.js ├── ERC20ForwardersDeployerRinkeby.js ├── ERC20TransferHandlerDeployer.js ├── ExchangeProxyDeployer.js ├── ForwarderDeployerBinanceTest.js ├── SetTransferHandlerFeeRinkeby.js ├── TrustedForwarderDeployer.js ├── TrustedForwarderDeployerMatic.js ├── gas-price │ └── get-gas-price.js ├── gas-usage │ ├── GasConsumption.js │ └── GasConsumptionKovan.js ├── hyphen-prod-script │ ├── hyphenEthereum.js │ └── hyphenMatic.js ├── hyphen-test-scripts │ ├── InstaExitGoerli.js │ └── InstaExitMumbai.js ├── mexaExchangeProxyDeployer.js └── sample-script.js ├── test ├── BiconomyForwarderTest.js ├── ERC20ForwarderProxyTest.js ├── ERC20ForwarderTest.js ├── ERC20ForwarderTestWithPermit.js ├── Executor-manager.js ├── LiquidityPool-manager.js ├── OracleAggregatorTest.js ├── helpers │ └── shouldFail.js └── testRecipientTest.js └── walletUtils.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sol linguist-language=Solidity -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/.gitignore -------------------------------------------------------------------------------- /.solcover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/.solcover.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/README.md -------------------------------------------------------------------------------- /contracts/5/BasicMetaTransaction.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/BasicMetaTransaction.sol -------------------------------------------------------------------------------- /contracts/5/EternalStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/EternalStorage.sol -------------------------------------------------------------------------------- /contracts/5/IdentityProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/IdentityProxy.sol -------------------------------------------------------------------------------- /contracts/5/ImplementationLogic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/ImplementationLogic.sol -------------------------------------------------------------------------------- /contracts/5/ProxyManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/ProxyManager.sol -------------------------------------------------------------------------------- /contracts/5/RelayHub.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/RelayHub.sol -------------------------------------------------------------------------------- /contracts/5/RelayerManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/RelayerManager.sol -------------------------------------------------------------------------------- /contracts/5/WETH9.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/WETH9.sol -------------------------------------------------------------------------------- /contracts/5/balancer/MexaExchangeProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/balancer/MexaExchangeProxy.sol -------------------------------------------------------------------------------- /contracts/5/dsproxy/MexaDSProxyFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/dsproxy/MexaDSProxyFactory.sol -------------------------------------------------------------------------------- /contracts/5/dsproxy/dsProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/dsproxy/dsProxy.sol -------------------------------------------------------------------------------- /contracts/5/libs/EIP712Base.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/libs/EIP712Base.sol -------------------------------------------------------------------------------- /contracts/5/libs/EIP712MetaTx.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/libs/EIP712MetaTx.sol -------------------------------------------------------------------------------- /contracts/5/libs/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/libs/Ownable.sol -------------------------------------------------------------------------------- /contracts/5/libs/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/libs/SafeMath.sol -------------------------------------------------------------------------------- /contracts/5/test/MockBasicMetaTxChild.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/test/MockBasicMetaTxChild.sol -------------------------------------------------------------------------------- /contracts/5/token/erc20/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/token/erc20/IERC20.sol -------------------------------------------------------------------------------- /contracts/5/token/erc721/IERC165.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/token/erc721/IERC165.sol -------------------------------------------------------------------------------- /contracts/5/token/erc721/IERC721.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/5/token/erc721/IERC721.sol -------------------------------------------------------------------------------- /contracts/6/ExecutorManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/ExecutorManager.sol -------------------------------------------------------------------------------- /contracts/6/feeManager/CentralisedFeeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/feeManager/CentralisedFeeManager.sol -------------------------------------------------------------------------------- /contracts/6/feeManager/CentralisedFeeManagerWithLimits.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/feeManager/CentralisedFeeManagerWithLimits.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/BiconomyForwarder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/BiconomyForwarder.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/ERC20ForwardRequestTypes.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/ERC20ForwardRequestTypes.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/ERC20Forwarder.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/ERC20Forwarder.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/ERC20ForwarderProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/ERC20ForwarderProxy.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/ERC20ForwarderStorage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/ERC20ForwarderStorage.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/ERC20TransferHandler.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/ERC20TransferHandler.sol -------------------------------------------------------------------------------- /contracts/6/forwarder/OracleAggregator.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/forwarder/OracleAggregator.sol -------------------------------------------------------------------------------- /contracts/6/insta-swaps/Address.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/insta-swaps/Address.sol -------------------------------------------------------------------------------- /contracts/6/insta-swaps/LiquidityPoolManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/insta-swaps/LiquidityPoolManager.sol -------------------------------------------------------------------------------- /contracts/6/insta-swaps/ReentrancyGuard.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/insta-swaps/ReentrancyGuard.sol -------------------------------------------------------------------------------- /contracts/6/insta-swaps/faucetManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/insta-swaps/faucetManager.sol -------------------------------------------------------------------------------- /contracts/6/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/interfaces/IERC20.sol -------------------------------------------------------------------------------- /contracts/6/interfaces/IERC20EIP2612.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/interfaces/IERC20EIP2612.sol -------------------------------------------------------------------------------- /contracts/6/interfaces/IERC20Extented.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/interfaces/IERC20Extented.sol -------------------------------------------------------------------------------- /contracts/6/interfaces/IERC20Permit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/interfaces/IERC20Permit.sol -------------------------------------------------------------------------------- /contracts/6/interfaces/IFeeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/interfaces/IFeeManager.sol -------------------------------------------------------------------------------- /contracts/6/interfaces/IRelayRecipient.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/interfaces/IRelayRecipient.sol -------------------------------------------------------------------------------- /contracts/6/libs/BaseRelayRecipient.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/libs/BaseRelayRecipient.sol -------------------------------------------------------------------------------- /contracts/6/libs/Context.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/libs/Context.sol -------------------------------------------------------------------------------- /contracts/6/libs/Ownable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/libs/Ownable.sol -------------------------------------------------------------------------------- /contracts/6/libs/Pausable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/libs/Pausable.sol -------------------------------------------------------------------------------- /contracts/6/test/AggregatorInterface.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/AggregatorInterface.sol -------------------------------------------------------------------------------- /contracts/6/test/Dai.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/Dai.sol -------------------------------------------------------------------------------- /contracts/6/test/MockActions.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/MockActions.sol -------------------------------------------------------------------------------- /contracts/6/test/MockFeeManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/MockFeeManager.sol -------------------------------------------------------------------------------- /contracts/6/test/TestRecipient.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/TestRecipient.sol -------------------------------------------------------------------------------- /contracts/6/test/TestToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/TestToken.sol -------------------------------------------------------------------------------- /contracts/6/test/TestnetDAI.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/TestnetDAI.sol -------------------------------------------------------------------------------- /contracts/6/test/Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/Token.sol -------------------------------------------------------------------------------- /contracts/6/test/imports.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/imports.sol -------------------------------------------------------------------------------- /contracts/6/test/mockFaucet.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/contracts/6/test/mockFaucet.sol -------------------------------------------------------------------------------- /coverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/coverage.json -------------------------------------------------------------------------------- /flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/flat.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/package.json -------------------------------------------------------------------------------- /scripts/Accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/Accounts.js -------------------------------------------------------------------------------- /scripts/BasicMetaTxDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/BasicMetaTxDeployer.js -------------------------------------------------------------------------------- /scripts/ChangeTransferHandlerGas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ChangeTransferHandlerGas.js -------------------------------------------------------------------------------- /scripts/ERC20ForwardersDeployerKovan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ERC20ForwardersDeployerKovan.js -------------------------------------------------------------------------------- /scripts/ERC20ForwardersDeployerMainnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ERC20ForwardersDeployerMainnet.js -------------------------------------------------------------------------------- /scripts/ERC20ForwardersDeployerRinkeby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ERC20ForwardersDeployerRinkeby.js -------------------------------------------------------------------------------- /scripts/ERC20TransferHandlerDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ERC20TransferHandlerDeployer.js -------------------------------------------------------------------------------- /scripts/ExchangeProxyDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ExchangeProxyDeployer.js -------------------------------------------------------------------------------- /scripts/ForwarderDeployerBinanceTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/ForwarderDeployerBinanceTest.js -------------------------------------------------------------------------------- /scripts/SetTransferHandlerFeeRinkeby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/SetTransferHandlerFeeRinkeby.js -------------------------------------------------------------------------------- /scripts/TrustedForwarderDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/TrustedForwarderDeployer.js -------------------------------------------------------------------------------- /scripts/TrustedForwarderDeployerMatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/TrustedForwarderDeployerMatic.js -------------------------------------------------------------------------------- /scripts/gas-price/get-gas-price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/gas-price/get-gas-price.js -------------------------------------------------------------------------------- /scripts/gas-usage/GasConsumption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/gas-usage/GasConsumption.js -------------------------------------------------------------------------------- /scripts/gas-usage/GasConsumptionKovan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/gas-usage/GasConsumptionKovan.js -------------------------------------------------------------------------------- /scripts/hyphen-prod-script/hyphenEthereum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/hyphen-prod-script/hyphenEthereum.js -------------------------------------------------------------------------------- /scripts/hyphen-prod-script/hyphenMatic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/hyphen-prod-script/hyphenMatic.js -------------------------------------------------------------------------------- /scripts/hyphen-test-scripts/InstaExitGoerli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/hyphen-test-scripts/InstaExitGoerli.js -------------------------------------------------------------------------------- /scripts/hyphen-test-scripts/InstaExitMumbai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/hyphen-test-scripts/InstaExitMumbai.js -------------------------------------------------------------------------------- /scripts/mexaExchangeProxyDeployer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/mexaExchangeProxyDeployer.js -------------------------------------------------------------------------------- /scripts/sample-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/scripts/sample-script.js -------------------------------------------------------------------------------- /test/BiconomyForwarderTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/BiconomyForwarderTest.js -------------------------------------------------------------------------------- /test/ERC20ForwarderProxyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/ERC20ForwarderProxyTest.js -------------------------------------------------------------------------------- /test/ERC20ForwarderTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/ERC20ForwarderTest.js -------------------------------------------------------------------------------- /test/ERC20ForwarderTestWithPermit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/ERC20ForwarderTestWithPermit.js -------------------------------------------------------------------------------- /test/Executor-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/Executor-manager.js -------------------------------------------------------------------------------- /test/LiquidityPool-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/LiquidityPool-manager.js -------------------------------------------------------------------------------- /test/OracleAggregatorTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/OracleAggregatorTest.js -------------------------------------------------------------------------------- /test/helpers/shouldFail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/helpers/shouldFail.js -------------------------------------------------------------------------------- /test/testRecipientTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/test/testRecipientTest.js -------------------------------------------------------------------------------- /walletUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcnmy/mexa/HEAD/walletUtils.js --------------------------------------------------------------------------------