Last active
July 30, 2019 15:03
-
-
Save michielmulders/2a146f82bbfee70afccf5f6794f9f648 to your computer and use it in GitHub Desktop.
InvoiceTransaction class extension and type
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class InvoiceTransaction extends BaseTransaction { | |
static get TYPE () { | |
return 13; | |
} | |
static get FEE () { | |
return `${10 ** 8}`; | |
} | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment