node_modules/digitalbits-base/src/asset.js

  1. import {default as xdr} from "./generated/digitalbits-xdr_generated";
  2. import {Keypair} from "./keypair";
  3. import {StrKey} from "./strkey";
  4. import clone from 'lodash/clone';
  5. import padEnd from 'lodash/padEnd';
  6. import trimEnd from 'lodash/trimEnd';
  7. /**
  8. * Asset class represents an asset, either the native asset (`XLM`)
  9. * or an asset code / issuer account ID pair.
  10. *
  11. * An asset code describes an asset code and issuer pair. In the case of the native
  12. * asset XLM, the issuer will be null.
  13. *
  14. * @constructor
  15. * @param {string} code - The asset code.
  16. * @param {string} issuer - The account ID of the issuer.
  17. */
  18. export class Asset {
  19. constructor(code, issuer) {
  20. if (!/^[a-zA-Z0-9]{1,12}$/.test(code)) {
  21. throw new Error("Asset code is invalid (maximum alphanumeric, 12 characters at max)");
  22. }
  23. if (String(code).toLowerCase() !== "xlm" && !issuer) {
  24. throw new Error("Issuer cannot be null");
  25. }
  26. if (issuer && !StrKey.isValidEd25519PublicKey(issuer)) {
  27. throw new Error("Issuer is invalid");
  28. }
  29. this.code = code;
  30. this.issuer = issuer;
  31. }
  32. /**
  33. * Returns an asset object for the native asset.
  34. * @Return {Asset}
  35. */
  36. static native() {
  37. return new Asset("XLM");
  38. }
  39. /**
  40. * Returns an asset object from its XDR object representation.
  41. * @param {xdr.Asset} assetXdr - The asset xdr object.
  42. * @returns {Asset}
  43. */
  44. static fromOperation(assetXdr) {
  45. let anum, code, issuer;
  46. switch(assetXdr.switch()) {
  47. case xdr.AssetType.assetTypeNative():
  48. return this.native();
  49. case xdr.AssetType.assetTypeCreditAlphanum4():
  50. anum = assetXdr.alphaNum4();
  51. issuer = StrKey.encodeEd25519PublicKey(anum.issuer().ed25519());
  52. code = trimEnd(anum.assetCode(), '\0');
  53. return new this(code, issuer);
  54. case xdr.AssetType.assetTypeCreditAlphanum12():
  55. anum = assetXdr.alphaNum12();
  56. issuer = StrKey.encodeEd25519PublicKey(anum.issuer().ed25519());
  57. code = trimEnd(anum.assetCode(), '\0');
  58. return new this(code, issuer);
  59. default:
  60. throw new Error(`Invalid asset type: ${assetXdr.switch().name}`);
  61. }
  62. }
  63. /**
  64. * Returns the xdr object for this asset.
  65. * @returns {xdr.Asset}
  66. */
  67. toXDRObject() {
  68. if (this.isNative()) {
  69. return xdr.Asset.assetTypeNative();
  70. } else {
  71. let xdrType, xdrTypeString;
  72. if (this.code.length <= 4) {
  73. xdrType = xdr.AssetAlphaNum4;
  74. xdrTypeString = 'assetTypeCreditAlphanum4';
  75. } else {
  76. xdrType = xdr.AssetAlphaNum12;
  77. xdrTypeString = 'assetTypeCreditAlphanum12';
  78. }
  79. // pad code with null bytes if necessary
  80. let padLength = this.code.length <= 4 ? 4 : 12;
  81. let paddedCode = padEnd(this.code, padLength, '\0');
  82. var assetType = new xdrType({
  83. assetCode: paddedCode,
  84. issuer: Keypair.fromPublicKey(this.issuer).xdrAccountId()
  85. });
  86. return new xdr.Asset(xdrTypeString, assetType);
  87. }
  88. }
  89. /**
  90. * Return the asset code
  91. * @returns {string}
  92. */
  93. getCode() {
  94. return clone(this.code);
  95. }
  96. /**
  97. * Return the asset issuer
  98. * @returns {string}
  99. */
  100. getIssuer() {
  101. return clone(this.issuer);
  102. }
  103. /**
  104. * Return the asset type. Can be one of following types:
  105. *
  106. * * `native`
  107. * * `credit_alphanum4`
  108. * * `credit_alphanum12`
  109. *
  110. * @see [Assets concept](https://developer.digitalbits.io/learn/concepts/assets.html)
  111. * @returns {string}
  112. */
  113. getAssetType() {
  114. if (this.isNative()) {
  115. return 'native';
  116. } else {
  117. if (this.code.length >= 1 && this.code.length <= 4) {
  118. return "credit_alphanum4";
  119. } else if (this.code.length >= 5 && this.code.length <= 12) {
  120. return "credit_alphanum12";
  121. }
  122. }
  123. }
  124. /**
  125. * Returns true if this asset object is the native asset.
  126. * @returns {boolean}
  127. */
  128. isNative() {
  129. return !this.issuer;
  130. }
  131. /**
  132. * Returns true if this asset equals the given asset.
  133. * @param {Asset} asset Asset to compare
  134. * @returns {boolean}
  135. */
  136. equals(asset) {
  137. return this.code == asset.getCode() && this.issuer == asset.getIssuer();
  138. }
  139. }