Caduceus Ecosystem Grant Program

As part of our goal to facilitate the growth of the Caduceus Ecosystem, our Grant Program provides milestone-based funding to projects to support the growth, decentralization and development of the Caduceus network.

What is our Application Process.

Application Closes on 23.12.2022
Marking the start date of the Grants Program. Start to integrate with Caduceus once you have submitted your application.
1
Pre-screening & Interviews
Once the application is received, we will start to screen and interview the project applicants.
2
Evaluation
After the grant application is closed, we will start evaluation on projects and milestones. Which will be done across 5 working days.
3
4
Application Accepted
Projects will be notified whether they have been accepted for the grants, and Grant Agreements will be signed at the same time.
Grant Announcement in Q1 2023
Projects will be observed for 15-30 days to measure their progress on the chain. Successful projects will then receive their grant payments, and the
announcement will occur accordingly.
5

Grant Benefits


This Grant Program offers up to $10K to help you best depending on your current project stage. Additionally, we may provide investment offers to the best and most promising projects. 

You will get the chance to obtain extra support from us to empower your project development, such as co-marketing activities, listing partners, and tech support among other opportunities with all partners inside the Caduceus ecosystem.

Deploy your Solidity smart contracts

Launch your project with the language that you are used to building. Use our Remix-like IDE to get started immediately.
1
contract ERC20 is IERC20, IERC20Metadata {
2
  using Address for address;
3
  using Strings for uint256;
4
5
  // Token symbol
6
  string private _symbol;
7
8
  // Token name
9
  string private _name;
10
11
  // Initializes the contract
12
  constructor(string memory name_, string memory symbol_) {
13
    _name = name_;
14
    _symbol = symbol_;
15
  }
16
}
1
contract ERC721 is IERC721, IERC721Metadata {
2
  using Address for address;
3
  using Strings for uint256;
4
5
  // Token symbol
6
  string private _symbol;
7
8
  // Token name
9
  string private _name;
10
11
  // Initializes the contract
12
  constructor(string memory name_, string memory symbol_) {
13
    _name = name_;
14
    _symbol = symbol_;
15
  }
16
}
1
contract ERC20 is IERC20, IERC20Metadata {
2
  using Address for address;
3
  using Strings for uint256;
4
5
  // Token symbol
6
  string private _symbol;
7
8
  // Token name
9
  string private _name;
10
11
  // Initializes the contract
12
  constructor(string memory name_, string memory symbol_) {
13
    _name = name_;
14
    _symbol = symbol_;
15
  }
16
}