aiken/book/src/language-tour/assert.md

10 lines
218 B
Markdown

# Assert
```
assert rawdata is SomeType
```
Causes the script to fail if the rawdata doesn't match the structure of datumtype
Otherwise, returns a value of SomeType
Primarily for validating input datums / redeemers.