avareum_timelock/
lib.rs

1// Copyright (c) 2021 Ivan Jelincic <parazyd@dyne.org>
2//
3// This file is part of streamflow-finance/timelock-crate
4//
5// This program is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Affero General Public License version 3
7// as published by the Free Software Foundation.
8//
9// This program is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU Affero General Public License for more details.
13//
14// You should have received a copy of the GNU Affero General Public License
15// along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17//! The code providing timelock primitives
18//! used by [streamflow.finance](https://streamflow.finance).
19
20/// Structs and data
21pub mod state;
22/// Functions related to SPL tokens
23pub mod token;
24/// Utility functions
25pub mod utils;