-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
113 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[package] | ||
name = "module-edfis-launchpool" | ||
description = "Provides a launchpool platform on Edfis." | ||
version = "0.9.81-dev" | ||
authors = ["Setheum Labs"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
parity-scale-codec = { version = "3.0.0", default-features = false, features = ["max-encoded-len"] } | ||
sp-runtime = { workspace = true } | ||
sp-io = { workspace = true } | ||
sp-std = { workspace = true } | ||
frame-support = { workspace = true } | ||
frame-system = { workspace = true } | ||
|
||
primitives = { package = "setheum-primitives", path = "../primitives", default-features = false } | ||
support = { package = "module-support", path = "../support", default-features = false } | ||
orml-traits = { path = "../submodules/orml/traits", default-features = false } | ||
|
||
[dev-dependencies] | ||
sp-core = { workspace = true, features = ["std"] } | ||
pallet-balances = { workspace = true } | ||
orml-tokens = { workspace = true } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"parity-scale-codec/std", | ||
"sp-runtime/std", | ||
"sp-std/std", | ||
"sp-io/std", | ||
"frame-support/std", | ||
"frame-system/std", | ||
"primitives/std", | ||
"support/std", | ||
"orml-traits/std", | ||
] | ||
runtime-benchmarks = [ | ||
"frame-support/runtime-benchmarks", | ||
"frame-system/runtime-benchmarks", | ||
"sp-runtime/runtime-benchmarks", | ||
] | ||
try-runtime = [ | ||
"frame-support/try-runtime", | ||
"frame-system/try-runtime", | ||
"sp-runtime/try-runtime", | ||
] |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Edfis Launchpool Module | ||
Edfis Launchpool is a platform for projects to offer their tokens to their community (IDO) on Edfis while listing their liquidity pool on the exchange. | ||
|
||
## Overview | ||
|
||
This module is used for Edfis Launchpools. Teams and projects that are just getting started launching their products would need to foster a community and provide their tokens to the public. They need community backed by token holders of their token, that is the crowd so that they could have a strong start. | ||
|
||
The Launchpool does not replace the Launchpad but is however complementary to it. | ||
|
||
The Launchpool module allows teams to offer their tokens to users in a pool wherein they stake `SEE`, `EDF`, `SETR` or `USSD` in order to earn the team's new token passively. |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# To-Do List | ||
|
||
This list contains all TODOs in the Repo | ||
|
||
|
||
<!-- TOC --> | ||
- [ToDo List - The Monofile for Setheum Repo ToDos](#to-do-list) | ||
- [1. Introduction](#1-guidelines) | ||
- [2. Contribution](#2-contribution) | ||
- [3. Lists](#3-lists) | ||
- [4. Tasks](#3-tasks) | ||
<!-- /TOC --> | ||
|
||
|
||
## 1. Guidelines | ||
|
||
Note: Before you write a ToDo in this repo, please read the below guidelines carefully. | ||
|
||
Whenever you write a ToDo, you need to follow this standard syntax | ||
|
||
```rust | ||
//TODO:[file_name:task_number] - task_details | ||
``` | ||
|
||
for example: | ||
|
||
```rust | ||
//TODO:[TODO.md:0] - Add Todo Guidelines | ||
``` | ||
|
||
Note > the `//TODO:[filename:task_number] - ` is what we call the `task_prefix`. | ||
|
||
Whenever adding/writing a Task/ToDo, you need to describe the task on this list. Whenever you write a TODO in any file, add a reference to it here. Please make sure the task reference here is titled correctly and as detailed as possible\. | ||
|
||
Whenever you `complete` a task/TODO from any file, please tick/complete its reference here and make sure you do it in the same `commit` that completes the task. | ||
|
||
Whenever a task is cancelled (discontinued or not needed for w/e reason), please note in the details why it is cancelled, make sure you do it in the same `commit` that removes/cancels the TODO, and add this `-C` as a suffix to its `file_name` in the list here, for example: | ||
|
||
```rust | ||
//TODO:[TODO.md-C:0] - Add Todo Guidelines | ||
``` | ||
|
||
## 2. Contribution | ||
|
||
You can contribute to this list by completing tasks or by adding tasks(TODOs) that are currently in the repo but not on the list. You can also contribute by updating old tasks to the new Standard. | ||
|
||
## 3. Lists | ||
|
||
Each package/module/directory has its own `TODO.md`. | ||
|
||
## 4. Tasks | ||
|
||
These tasks are just for this file specifically. | ||
|
||
- [x] [[TODO.md:0] - Add TODO.md File](TODO.md): Add a TODO.md file to organise TODOs in the repo. | ||
- [x] [[TODO.md:1] - Add a `task_title`](/TODO.md/#tasks): Adda `task_title`. |