Skip to content
This repository was archived by the owner on Apr 18, 2023. It is now read-only.

Commit 6043044

Browse files
committed
free the dapps
1 parent 567f71e commit 6043044

File tree

7 files changed

+762
-6
lines changed

7 files changed

+762
-6
lines changed

COPYING

+674
Large diffs are not rendered by default.

src/mom.sol

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44
// Copyright (C) 2017 Daniel Brockman <[email protected]>
55
// Copyright (C) 2017 Rain <[email protected]>
66

7+
// This program is free software: you can redistribute it and/or modify
8+
// it under the terms of the GNU General Public License as published by
9+
// the Free Software Foundation, either version 3 of the License, or
10+
// (at your option) any later version.
11+
12+
// This program is distributed in the hope that it will be useful,
13+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
// GNU General Public License for more details.
16+
17+
// You should have received a copy of the GNU General Public License
18+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
19+
720
pragma solidity ^0.4.18;
821

922
import 'ds-thing/thing.sol';

src/pit.sol

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
/// pit.sol -- a simple token burner
2+
3+
// Copyright (C) 2017 Rain Break <[email protected]>
4+
5+
// This program is free software: you can redistribute it and/or modify
6+
// it under the terms of the GNU General Public License as published by
7+
// the Free Software Foundation, either version 3 of the License, or
8+
// (at your option) any later version.
9+
10+
// This program is distributed in the hope that it will be useful,
11+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
// GNU General Public License for more details.
14+
15+
// You should have received a copy of the GNU General Public License
16+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
17+
118
pragma solidity ^0.4.18;
219

320
import "ds-token/token.sol";

src/tap.sol

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@
22

33
// Copyright (C) 2017 Nikolai Mushegian <[email protected]>
44
// Copyright (C) 2017 Daniel Brockman <[email protected]>
5-
// Copyright (C) 2017 Rain <[email protected]>
5+
// Copyright (C) 2017 Rain Break <[email protected]>
6+
7+
// This program is free software: you can redistribute it and/or modify
8+
// it under the terms of the GNU General Public License as published by
9+
// the Free Software Foundation, either version 3 of the License, or
10+
// (at your option) any later version.
11+
12+
// This program is distributed in the hope that it will be useful,
13+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
// GNU General Public License for more details.
16+
17+
// You should have received a copy of the GNU General Public License
18+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
619

720
pragma solidity ^0.4.18;
821

src/top.sol

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@
22

33
// Copyright (C) 2017 Nikolai Mushegian <[email protected]>
44
// Copyright (C) 2017 Daniel Brockman <[email protected]>
5-
// Copyright (C) 2017 Rain <[email protected]>
5+
// Copyright (C) 2017 Rain Break <[email protected]>
6+
7+
// This program is free software: you can redistribute it and/or modify
8+
// it under the terms of the GNU General Public License as published by
9+
// the Free Software Foundation, either version 3 of the License, or
10+
// (at your option) any later version.
11+
12+
// This program is distributed in the hope that it will be useful,
13+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
// GNU General Public License for more details.
16+
17+
// You should have received a copy of the GNU General Public License
18+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
619

720
pragma solidity ^0.4.18;
821

src/tub.sol

+14-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,20 @@
22

33
// Copyright (C) 2017 Nikolai Mushegian <[email protected]>
44
// Copyright (C) 2017 Daniel Brockman <[email protected]>
5-
// Copyright (C) 2017 Rain <[email protected]>
5+
// Copyright (C) 2017 Rain Break <[email protected]>
6+
7+
// This program is free software: you can redistribute it and/or modify
8+
// it under the terms of the GNU General Public License as published by
9+
// the Free Software Foundation, either version 3 of the License, or
10+
// (at your option) any later version.
11+
12+
// This program is distributed in the hope that it will be useful,
13+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
// GNU General Public License for more details.
16+
17+
// You should have received a copy of the GNU General Public License
18+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
619

720
pragma solidity ^0.4.18;
821

src/vox.sol

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
/// vox.sol -- target price feed
22

3-
// Copyright (C) 2016,2017 Nikolai Mushegian <[email protected]>
4-
// Copyright (C) 2016,2017 Daniel Brockman <[email protected]>
5-
// Copyright (C) 2017 Rain <[email protected]>
3+
// Copyright (C) 2016, 2017 Nikolai Mushegian <[email protected]>
4+
// Copyright (C) 2016, 2017 Daniel Brockman <[email protected]>
5+
// Copyright (C) 2017 Rain Break <[email protected]>
6+
7+
// This program is free software: you can redistribute it and/or modify
8+
// it under the terms of the GNU General Public License as published by
9+
// the Free Software Foundation, either version 3 of the License, or
10+
// (at your option) any later version.
11+
12+
// This program is distributed in the hope that it will be useful,
13+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15+
// GNU General Public License for more details.
16+
17+
// You should have received a copy of the GNU General Public License
18+
// along with this program. If not, see <http://www.gnu.org/licenses/>.
619

720
pragma solidity ^0.4.18;
821

0 commit comments

Comments
 (0)