You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NFTokenMint.d.ts 709B

1234567891011121314151617181920212223
  1. import { BaseTransaction, GlobalFlags } from './common';
  2. export declare enum NFTokenMintFlags {
  3. tfBurnable = 1,
  4. tfOnlyXRP = 2,
  5. tfTrustLine = 4,
  6. tfTransferable = 8
  7. }
  8. export interface NFTokenMintFlagsInterface extends GlobalFlags {
  9. tfBurnable?: boolean;
  10. tfOnlyXRP?: boolean;
  11. tfTrustLine?: boolean;
  12. tfTransferable?: boolean;
  13. }
  14. export interface NFTokenMint extends BaseTransaction {
  15. TransactionType: 'NFTokenMint';
  16. NFTokenTaxon: number;
  17. Issuer?: string;
  18. TransferFee?: number;
  19. URI?: string;
  20. Flags?: number | NFTokenMintFlagsInterface;
  21. }
  22. export declare function validateNFTokenMint(tx: Record<string, unknown>): void;
  23. //# sourceMappingURL=NFTokenMint.d.ts.map