Swarm Powered Fundraise
Note: This page describes an older version of the smart contract suite. We will update it soon!

The SwarmPoweredFundraise (SPF) is a significant addition to the open Swarm protocol and provides powerful tools to perform regulatory compliant fundraises for security tokens.
The requirement is that the token for which the fundraise occurs is operated on the SRC20 standard. An SFP is like a module that can be used for each distinct fundraise for an SRC20 token.
Like SRC20, the SPF stack is open source, so the Swarm network welcomes token issuers and service providers freely use, extend and customize.
The following four contracts are created in relation to a specific SRC20 token and interact with one another and other global SRC20 smart contracts.

For each new SRC20 token, one of each of these smart contracts is newly created.
Contract Name | Description | Example |
Currency Registry | Registers all currencies that will be accepted in a specific Swarm Powered Fundraise | TBD |
Affiliate Manager | Registers affiliates and their commissions for a SwarmPoweredFundraise | TBD |
Swarm Powered Fundraise | Operates the actual SwarmPoweredFundraise; finalizes via stakeToMint | TBD |
Contributor Restrictions | Manages whitelist and restrictions for each contributor in a Swarm Powered Fundraise | TBD |
Each of the following (pre-existing) smart contracts exist across the SRC20 network and each SRC20 token interacts and registers with them.
Contract Name | Description | Example |
Uniswap Proxy | Proxy Contract that makes ongoing calls to the different Uniswap exchanges to obtain the prices of accepted currencies used in Swarm Powered Fundraises | TBD |
Issuer Stake Offer Pool (ISOP) | Allows SWM token holders to offer their tokens OTC for issuance stake; NOT YET FORMALLY RELEASED AND FUNCTIONAL | TBD |
- 1.It needs SWM token address during deployment
- 2.It needs SRC20Registry deployment address during deployment; after
SRC20Factory
is deployed, go to deployedSRC20Registry
contract and add thisSRC20Factory
deployment address inaddFactory()
function - 3.It needs
SRC20Factory
deployment address during deployment - 4.It needs SWM price in the form of two variables like numerator and denominator
- 5.It needs the following parameters: 1/
SRC20Registry address
, 2/AssetRegistry
address and 3/SWMPriceOracle
address. AfterGetRateMinter
is deployed, goto deployedSRC20Registry
contract and add thisGetRateMinter
address inaddMinter()
function - 6.It needs owner address, most of the time it will be issuer wallet address
- 7.It needs the following parameters: 1/
owner address
, 2/SRC20Registry address
and 3/TransferRules address
- 8.It requires the following parameters: 1/
owner address
and 2/ any number greater than 0 to enable features - 9.Go to
SRC20Factory
deployed contract, generate new SRC20 token usingcreate()
function - 11.Register whatever currencies you want to accept for this fundraise using
addCurrency()
function; most of the time it will be ZERO address for ETH, DAI address, USDC address and WBTC address. Register your base currency you want to use for this fundraise usingsetBaseCurrency()
function. - 12.This requires several parameters: like
label
,SRC20 address
,CurrencyRegistry address
,startDate
,endDate
,softcap
andhardcap
- 14.It requires the following parameters: 1/
SwarmPoweredFundraise address
and 2/number of contributors
want to allow for this fundraise - 15.Go to
SwarmPoweredFundraise
deployed contract and complete the remaining setup usingsetupContract()
function.setupContract
requires many parameters likeSRC20 token price
,minimum amount of contribution
,maximum amount of contribution
,AffiliateManager address
,ContributorRestrictions address
,GetRateMinter address
andlock
orunlock
contributions - 16.Go to
SRC20
deployed contract and setSwarmPoweredFundraise
address usingsetFundRaiseAddr()
function - 17.Go to
ContributorRestrictions
deployed contract and whitelist all your contributors usingwhitelistAccount()
function. After this contributors can contribute to fundraise. - 18.Once fundraise is completed, issuer can call
stakeAndMint()
. This function will do the following in one process: 1/ staking his equivalent SWM tokens, 2/ minting SRC20 tokens and 3/ withdrawing total contributor funds to contract owner
Last modified 3yr ago