Bank

Assets

scalar AssetID

struct Asset {
  asset: AssetID
  amount: Decimal
}

Escrow Accounts

enum Escrow {
  ContinuousVesting(
    start_time DateTime,
    end_time
  )
  DelayedVesting()
  PeriodicVesting()
  ScriptEscrow(scipt ScriptID, params bytes)
}

Transactions

Send

Burn

Create Escrow

Queries

State

Last updated

Was this helpful?