-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add remark about LGPL-3.0 licensing by Gnosis
- Loading branch information
1 parent
64b9f47
commit 7e12f08
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,14 @@ | |
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Zeitgeist. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
// This file incorporates work licensed under the GNU Lesser General | ||
// Public License 3.0 but published without copyright notice by Gnosis | ||
// (<https://gnosis.io>, [email protected]) in the | ||
// conditional-tokens-contracts repository | ||
// <https://github.com/gnosis/conditional-tokens-contracts>, | ||
// and has been relicensed under GPL-3.0-or-later in this repository. | ||
|
||
|
||
// TODO Refactor so that collection IDs are their own type with an `Fq` field and an `odd` field? | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,14 @@ | |
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Zeitgeist. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
// This file incorporates work licensed under the GNU Lesser General | ||
// Public License 3.0 but published without copyright notice by Gnosis | ||
// (<https://gnosis.io>, [email protected]) in the | ||
// conditional-tokens-contracts repository | ||
// <https://github.com/gnosis/conditional-tokens-contracts>, | ||
// and has been relicensed under GPL-3.0-or-later in this repository. | ||
|
||
|
||
pub trait CombinatorialIdManager { | ||
type Asset; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,13 @@ | |
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Zeitgeist. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
// This file incorporates work licensed under the GNU Lesser General | ||
// Public License 3.0 but published without copyright notice by Gnosis | ||
// (<https://gnosis.io>, [email protected]) in the | ||
// conditional-tokens-contracts repository | ||
// <https://github.com/gnosis/conditional-tokens-contracts>, | ||
// and has been relicensed under GPL-3.0-or-later in this repository. | ||
|
||
use ark_bn254::{g1::G1Affine, Fq}; | ||
use ark_ff::{BigInteger, PrimeField}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,13 @@ | |
// | ||
// You should have received a copy of the GNU General Public License | ||
// along with Zeitgeist. If not, see <https://www.gnu.org/licenses/>. | ||
// | ||
// This file incorporates work licensed under the GNU Lesser General | ||
// Public License 3.0 but published without copyright notice by Gnosis | ||
// (<https://gnosis.io>, [email protected]) in the | ||
// conditional-tokens-contracts repository | ||
// <https://github.com/gnosis/conditional-tokens-contracts>, | ||
// and has been relicensed under GPL-3.0-or-later in this repository. | ||
|
||
use crate::traits::CombinatorialIdManager; | ||
use alloc::vec::Vec; | ||
|