Skip to content

Instantly share code, notes, and snippets.

@michielmulders
Last active July 30, 2019 15:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save michielmulders/2a146f82bbfee70afccf5f6794f9f648 to your computer and use it in GitHub Desktop.
Save michielmulders/2a146f82bbfee70afccf5f6794f9f648 to your computer and use it in GitHub Desktop.
InvoiceTransaction class extension and type
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