Need More Info?
More docs will be available when the Blast Developer Airdrop and Testnet launches in January. In the meantime, join our Discord to learn more.
Yield as a primitive unlocks new business models for Dapps. ETH and stablecoins bridged to Blast automatically earn yield. Dapps can easily monetize deposits with a single config.
Other L2s keep revenue from gas fees for themselves. Blast gives this revenue back to developers programatically. Keep this revenue for yourself or use it to subsidize gas fees for your users.
50% of the Blast Airdrop has been reserved for developers. The Developer Airdrop launches in January along with the Blast Testnet.
Blast is EVM equivalent, so you can build Dapps on Blast without learning a new toolkit. All your code, tools, and infrastructure work out of the box.
interface IBlast {
// See IBlast interface source code
}
contract ContractWithAutomaticYield {
constructor() {
// Contract balance will grow automatically
IBlast(0x43...02).configureAutomaticYield();
}
}
interface IBlast {
// See IBlast interface source code
}
contract ContractWithClaimableYield {
constructor() {
IBlast(0x43...02).configureClaimableYield()
}
function claimYield(address recipient, uint256 amount) external {
// This function is public meaning anyone can claim the yield
IBlast(0x43...02).claimYield(address(this), recipient, amount);
}
function claimAllYield(address recipient) external {
// This function is public meaning anyone can claim the yield
IBlast(0x43...02).claimAllYield(address(this), recipient);
}
}
interface IBlast {
// See IBlast interface source code
}
contract ContractEarnsGasFeeRevnue {
constructor() {
IBlast(0x43...02).configureClaimableGas()
}
function claimAllGas(address recipient) external {
// This function is public meaning anyone can claim the gas
IBlast(0x43...02).claimAllGas(address(this), recipient);
}
}
Blast has the same features you love on other L2s while providing 10x more value.
0 users have deposited $0.0 to Blast in anticipation of the mainnet launch in February. When the Blast mainnet launches, the bridge contract will unlock and release all those users and funds to your dapps.
The Blast Developer Airdrop goes live in January, when the Blast Testnet launches. 50% of the Blast airdrop has been allocated for developers. Instructions on how to claim the airdrop and how it works will be shared upon testnet launch.