cosmos-explorer/src/libs/data/token.js
2021-08-05 12:38:58 +08:00

14 lines
242 B
JavaScript

export default class Token {
constructor() {
this.amount = 0
this.denom = ''
}
static create(element) {
const self = new Token()
self.amount = Number(element.amount)
self.denom = element.denom
return self
}
}