Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
The sERC20 library takes full control when handling the trading status of your token. These built in methods control everything for your convenience.
Once enabled, trading can not be turned back off.
The sERC20 contract takes full control of your tokens trading status. Under the hood the library exposes the following functions for your convenience. Unlike other methods provided by sERC20 however, the enable method is marked as virtual
, thus allowing your to override
it for more fine grained control. For example you may wish to capture the launch block.
As mentioned above, this method is marked as virtual.
This means that you are free to override this method within your contract for finer control.
The sERC20 contract exposes functions for reading trading status of your token. You should NEVER handle these yourself, always refer to our built in methods to maintain your sERC20 implementation integrity.
sERC20 takes full control of the router and pair, when initialised we will automatically create the pair address for you. At the moment we only support Uniswap v2 compatible exchanges.
The router address must be passed to the SERC20 constructor
method upon initialisation. This will create a pair for you using the relevant factory.
The router object can be accessed at any point using the following method. You should NEVER handle this yourself, always refer to our built in methods to maintain your sERC20 implementation integrity.
The sERC20 library exposes a getPair method for accessing the pair address. You should NEVER handle these yourself, always refer to our built in methods to maintain your sERC20 implementation integrity.
sERC20 takes full control when handling the blacklisting of address's. These built in methods control everything for your convenience.
The router address can not be blacklisted.
The pair address can not be blacklisted.
The contract address can not be blacklisted.
Blacklisting is only available for 10 minutes post trading enabled.
The sERC20 contract takes full control of changes to your blacklist. Under the hood the library exposes the following functions for your convenience.
The sERC20 contract exposes functions for reading the blacklisted status on an address. You should NEVER handle these yourself, always refer to our built in methods to maintain your sERC20 implementation integrity.
sERC20 takes full control when handling transaction limits. The built in methods control both your maximum single transaction amounts and maximum wallet balances.
The maximum single transaction amount must be less than or equal to the maximum wallet amount.
The maximum wallet amount must be equal to or higher than the maximum single transaction amount.
The maximum single transaction amount can never be lowered, it is important that you set a sensible default during initialisation.
Like the maximum single transaction amount, the maximum wallet amount also can never be lowered. Again it is important that you set a sensible default during initialisation.
sERC20 will automatically initialise with 0 max single transaction limit and 0 max wallet limit. These must be manually set before you can open trading.
Unlike taxes, the sERC20 contract takes full control of changes to your transaction limits. Under the hood the library exposes the following functions for your convenience.
The sERC20 contract exposes functions for reading the current transaction limits. You should NEVER handle these yourself, always refer to our built in methods to maintain your sERC20 implementation integrity.
sERC20 is an abstract contract for secure smart contract development. Extend our SERC20 class to secure your code today.
Here lies a curated list of templates that will server as a starting point for your sERC20 implementation should you require.
sERC20 takes full control when handling tax rates, there's no restrictions to the types of taxes you can have, there are however limits on the total round trip tax rate.
The buy tax threshold can be set as high as 35%, however the combination of the buy and sell tax thresholds can not exceed 35%.
The sell tax threshold can be set as high as 35%, however the combination of the buy and sell tax thresholds can not exceed 35%.
Round trip tax rates can not exceed 35%
The sERC20 contract does not implement any functionality to externally change your tax rates. This is because there are a wide variety of options available for taxing. To avoid restricting this customisability you are free to implement these methods yourself.
The sERC20 contract exposes functions for reading the current tax rates. You should NEVER handle these yourself, always refer to our built in methods to maintain your sERC20 implementation integrity.