rename all libs from xxx.yyy to xxx-yyy

This commit is contained in:
Luk Lu
2022-06-04 12:08:41 +08:00
parent aff70d43f7
commit 07a88d9bc7
5 changed files with 717 additions and 639 deletions

View File

@@ -1,16 +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.crypto');
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-crypto')
module.exports = {
TIC,
ETH,
BTC,
ERC20,
Account,
Crypto,
}
TIC,
ETH,
BTC,
ERC20,
Account,
Crypto
}