[tic.js] rename Ticrypto to ticCrypto, so as to follow the same naming convention.

This commit is contained in:
陆柯 2019-04-12 14:26:41 +08:00
parent 601d535b71
commit 84c8d52932

32
tic.js
View File

@ -1,6 +1,6 @@
'use strict'
const axios = require('axios')
const Ticrypto = require('tic.crypto')
const ticCrypto = require('tic.crypto')
const ticActionTransfer = require('tic.action').ActionTransfer
const TIC_TXFEE = 10;
@ -8,7 +8,7 @@ const TIC_NODE = require('./netConfig').TIC_NODE
class TIC {
constructor(seckey,option={}){
if(!seckey||!Ticrypto.isSeckey(seckey)) throw "ERROR:Invalid Seckey"
if(!seckey||!ticCrypto.isSeckey(seckey)) throw "ERROR:Invalid Seckey"
Object.defineProperties(this, {
'seckey' : {
value : seckey,
@ -16,12 +16,12 @@ class TIC {
writable : false,
},
'pubkey' : {
value : Ticrypto.seckey2pubkey(seckey),
value : ticCrypto.seckey2pubkey(seckey),
enumerable : true,
writable : false,
},
'address' : {
value : Ticrypto.pubkey2address(Ticrypto.seckey2pubkey(seckey)),
value : ticCrypto.pubkey2address(ticCrypto.seckey2pubkey(seckey)),
enumerable : true,
writable : false
}
@ -37,12 +37,12 @@ class TIC {
set txfee(fee){this._defaultFee = fee}
static generateNewAccount(){
var secword = Ticrypto.randomSecword()
return Object.assign(new TIC(Ticrypto.secword2keypair(secword).seckey),{secword:secword})
var secword = ticCrypto.randomSecword()
return Object.assign(new TIC(ticCrypto.secword2keypair(secword).seckey),{secword:secword})
}
static fromMnemonic(secword){
if(!secword||!Ticrypto.isSecword(secword)) throw "ERROR:Invalid Secword"
return new TIC(Ticrypto.secword2keypair(secword).seckey)
if(!secword||!ticCrypto.isSecword(secword)) throw "ERROR:Invalid Secword"
return new TIC(ticCrypto.secword2keypair(secword).seckey)
}
static async getBalance(address){
if(!address){ throw new Error('Address is required'); }
@ -66,14 +66,14 @@ class TIC {
}
static encrypt(data, key){
if(!data || !key) throw new Error('Required Params Missing')
return Ticrypto.encrypt(data,key)
return ticCrypto.encrypt(data,key)
}
static decrypt(data, key){
return Ticrypto.decrypt(data, key, {format:"json"}) //return null for wrong key
return ticCrypto.decrypt(data, key, {format:"json"}) //return null for wrong key
}
static isValidAddress(address){
return Ticrypto.isAddress(address)
return ticCrypto.isAddress(address)
}
async sendTransaction(toAddress, amount, option = {gasFee : TIC_TXFEE}){
@ -81,13 +81,12 @@ class TIC {
let action = new ticActionTransfer({
amount: parseInt(amount),
toAddress: toAddress,
fee: option.gasFee
fee: option.gasFee,
})
//对交易数据签名,packMe 内的参数是交易发起人的keypair
action.packMe({
seckey: this.seckey,
pubkey: this.pubkey,
address: this.address
})
let data = {
Action:action
@ -111,7 +110,7 @@ class TIC {
let action=new ticActionTransfer({
amount: parseInt(option.amount),
toAddress: option.toAddress,
fee:option.fee||this._defaultFee,
fee: option.fee||this._defaultFee,
})
//sign for txBody use function packMe, which needs actor's keypair as parameter
action.packMe({
@ -122,14 +121,15 @@ class TIC {
}
//default key for sign&encrypt is account's seckey,other keys are optional.
sign(message,key = this.seckey){
return Ticrypto.sign(message,key)
return ticCrypto.sign(message,key)
}
verify(message,signature){
return Ticrypto.sign(message,signature,this.seckey)
return ticCrypto.sign(message,signature,this.seckey)
}
encrypt(key){
return TIC.encrypt(this, key)
}
}
module.exports = {TIC}