首次放到 git

This commit is contained in:
Luk.Lu
2018-10-09 23:03:05 +08:00
commit 16cca302b7
37 changed files with 4203 additions and 0 deletions

16
index.js Normal file
View File

@@ -0,0 +1,16 @@
'use strict'
const TIC = require('./tic.js').TIC;
const ETH = require('./eth.js').ETH;
const ERC20 = require('./eth.js').ERC20;
const BTC = require('./btc.js').BTC;
const Account = require('./Account').Account;
const Crypto = require('tic.common').Crypto;
module.exports = {
TIC,
ETH,
BTC,
ERC20,
Account,
Crypto,
}