Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

types.ts 344B

123456789101112131415
  1. export type Memo = {
  2. type?: string
  3. format?: string
  4. data?: string
  5. }
  6. export type Wallet = {secret: string, address:string }
  7. export type Signature = {signature: string, signer: PublicKey}
  8. export type Address = string
  9. export type Secret = string
  10. export type PublicKey = string
  11. export type Amount = number
  12. export type TxHash = string