aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Stock.dhall
blob: fa11f1f42404354820b6fad5ce751a810f1d4ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
let StockKind = ./StockKind.dhall

in  { Type =
        { kind : StockKind
        , amount : Natural
        , liquid : Bool
        , vestingYears : Natural
        , cliffYears : Natural
        }
    , default =
      { kind = StockKind.Options
      , amount = 0
      , liquid = False
      , vestingYears = 4
      , cliffYears = 1
      }
    }