
Introducing Fuel Season 1 (FS-1) and Phase 2 Genesis Drop
Today marks the conclusion of Phase 2 and with it the Fuel Points Program. We want to thank all participants who helped bootstrap Ignition, and now turn our focus to building Fuel into a fully integrated liquidity hub. As we mark the end of the Fuel Points program, we are excited to unveil two initiatives: Phase 2 of the Genesis Drop and the start of Fuel Season 1 (FS-1).Genesis Drop: Phase 2 - 150,000,000 FUEL1.5% of FUEL total supply.Rewards for participation in Phase 2 of the Points Progra...

Announcing Phase 2 of the Fuel Points Program
We are excited to announce the final phase in the Fuel Points Program, now live with Fuel Ignition. With Phase 2, you can continue earning points while supporting the growth of the Fuel ecosystem. With Phase 2 of Fuel Points, we’re ensuring that the network grows in a way that is positive sum for points program participants, the Fuel ecosystem projects and the broader Fuel community. Qualifying users can participate in the program, while earning rewards for meaningfully engaging with the ecos...

Sway: The Next-Generation Language for Smart Contracts
As blockchain applications become more complex, there is a strong need for safe and smart contract languages. Many platforms today rely on languages and virtual machines (VMs) that weren't originally designed to handle the unique constraints and requirements of blockchain execution. It’s no secret that the architectural decisions made in 2014 for Solidity and the EVM now show clear signs of age. Among these is their susceptibility to vulnerabilities that make writing secure Ethereum smar...
Fuel Ignition is a high-performance Ethereum L2.

Introducing Fuel Season 1 (FS-1) and Phase 2 Genesis Drop
Today marks the conclusion of Phase 2 and with it the Fuel Points Program. We want to thank all participants who helped bootstrap Ignition, and now turn our focus to building Fuel into a fully integrated liquidity hub. As we mark the end of the Fuel Points program, we are excited to unveil two initiatives: Phase 2 of the Genesis Drop and the start of Fuel Season 1 (FS-1).Genesis Drop: Phase 2 - 150,000,000 FUEL1.5% of FUEL total supply.Rewards for participation in Phase 2 of the Points Progra...

Announcing Phase 2 of the Fuel Points Program
We are excited to announce the final phase in the Fuel Points Program, now live with Fuel Ignition. With Phase 2, you can continue earning points while supporting the growth of the Fuel ecosystem. With Phase 2 of Fuel Points, we’re ensuring that the network grows in a way that is positive sum for points program participants, the Fuel ecosystem projects and the broader Fuel community. Qualifying users can participate in the program, while earning rewards for meaningfully engaging with the ecos...

Sway: The Next-Generation Language for Smart Contracts
As blockchain applications become more complex, there is a strong need for safe and smart contract languages. Many platforms today rely on languages and virtual machines (VMs) that weren't originally designed to handle the unique constraints and requirements of blockchain execution. It’s no secret that the architectural decisions made in 2014 for Solidity and the EVM now show clear signs of age. Among these is their susceptibility to vulnerabilities that make writing secure Ethereum smar...
Fuel Ignition is a high-performance Ethereum L2.

Subscribe to Fuel Labs

Subscribe to Fuel Labs
Share Dialog
Share Dialog
>2.8K subscribers
>2.8K subscribers
Today we release an experimental version of Burner Wallet powered by Fuel.
One important factor in this user experience is ensuring that transactions can process quickly, reliability and with little-to-no transaction fee. While Burner Wallets typically use the xDai chain to power these fast & cheap transactions, optimistic rollups are opening the door to a new family of scaling technology.
Over the past few weeks, the Burner Wallet and Fuel teams have been busy closely collaborating on a wallet effort, the Fuel Burner Wallet.
Today we launch an experimental version of Burner using the Fuel open-beta optimistic rollup side chain running on Görli.
Fuel is a trustless scalable sidechain that leverages the optimistic rollup design paradigm to (1) lower the cost of transactions, (2) increase throughput to thousands of TPS, and (3) enables a better user experience with seamless transactions.
Using the Burner Wallet 2 framework, anyone can now create a wallet using the Fuel open-beta technology. These wallets can support any existing Ethereum asset (ERC20 tokens in addition to native Ether) and provide low-cost, high-throughput transactions.
Without further ado, checkout the open-source Fuel Burner Wallet!
(1) Open the burner.fuel.sh wallet on mobile, (2) faucet yourself FakeDai, (3) vote by sending FakeDai to either the For or Against ProgPow addresses.
The first ever live coin vote on an optimistic rollup regarding ProgPow Ethereum.
The Fuel integration was built as a plugin for the modular Burner Wallet 2 framework. Developers who wish to integrate Fuel tokens into their wallet can do so by adding only a few lines of code to their project:
import { FuelGateway, FuelAsset } from ‘fuel-burner-plugin’;
const fuelFakeDai = new FuelAsset({
id: ‘fakeDai’,
name: ‘FakeDai’,
network: ‘5’, // Goerli testnet
address: ‘0xCF852d1295fD158D43D58ceD47F88f4f4ab0931C’,
icon: ‘/static/fakedai.png’,
});
const core = new BurnerCore({
signers: [new LocalSigner()],
gateways: [new FuelGateway()],
assets: [fuelFakeDai],
});
Check out the sample Fuel Burner Wallet on Github for the full code.
As the Fuel project progresses, the Burner Factory will add support for Fuel-powered assets as well. This will allow both new and existing Ethereum tokens to be added to a Burner Wallet and easily transferred.
Together, Fuel Labs and Burner Wallet are working on the next generation of Ethereum payments technology. As both teams are currently running off of grants, we would deeply appreciate your support.
Donate to Fuel Labs:gitcoin.co/grants/199/fuel-labs
Donate to Burner Wallet Factory:gitcoin.co/grants/145/burner-wallet-2-burner-factory
**Fuel Links:**Website fuel.shGithub: github.com/fuellabsTwitter @FuelLabs_
**Burner Wallet Links:**Website: burnerwallet.coGithub: github.com/burner-walletTwitter: @DMihal / Austin Griffith
Fuel Burner Wallet Codebase (under Apache-2.0):github.com/fuellabs/fuel-burner-walletgithub.com/fuellabs/fuel-burner-plugin
Fuel in NodeJS in under 10 Minutes
Build your own customized Burner Wallet (without the Burner Factory)
Today we release an experimental version of Burner Wallet powered by Fuel.
One important factor in this user experience is ensuring that transactions can process quickly, reliability and with little-to-no transaction fee. While Burner Wallets typically use the xDai chain to power these fast & cheap transactions, optimistic rollups are opening the door to a new family of scaling technology.
Over the past few weeks, the Burner Wallet and Fuel teams have been busy closely collaborating on a wallet effort, the Fuel Burner Wallet.
Today we launch an experimental version of Burner using the Fuel open-beta optimistic rollup side chain running on Görli.
Fuel is a trustless scalable sidechain that leverages the optimistic rollup design paradigm to (1) lower the cost of transactions, (2) increase throughput to thousands of TPS, and (3) enables a better user experience with seamless transactions.
Using the Burner Wallet 2 framework, anyone can now create a wallet using the Fuel open-beta technology. These wallets can support any existing Ethereum asset (ERC20 tokens in addition to native Ether) and provide low-cost, high-throughput transactions.
Without further ado, checkout the open-source Fuel Burner Wallet!
(1) Open the burner.fuel.sh wallet on mobile, (2) faucet yourself FakeDai, (3) vote by sending FakeDai to either the For or Against ProgPow addresses.
The first ever live coin vote on an optimistic rollup regarding ProgPow Ethereum.
The Fuel integration was built as a plugin for the modular Burner Wallet 2 framework. Developers who wish to integrate Fuel tokens into their wallet can do so by adding only a few lines of code to their project:
import { FuelGateway, FuelAsset } from ‘fuel-burner-plugin’;
const fuelFakeDai = new FuelAsset({
id: ‘fakeDai’,
name: ‘FakeDai’,
network: ‘5’, // Goerli testnet
address: ‘0xCF852d1295fD158D43D58ceD47F88f4f4ab0931C’,
icon: ‘/static/fakedai.png’,
});
const core = new BurnerCore({
signers: [new LocalSigner()],
gateways: [new FuelGateway()],
assets: [fuelFakeDai],
});
Check out the sample Fuel Burner Wallet on Github for the full code.
As the Fuel project progresses, the Burner Factory will add support for Fuel-powered assets as well. This will allow both new and existing Ethereum tokens to be added to a Burner Wallet and easily transferred.
Together, Fuel Labs and Burner Wallet are working on the next generation of Ethereum payments technology. As both teams are currently running off of grants, we would deeply appreciate your support.
Donate to Fuel Labs:gitcoin.co/grants/199/fuel-labs
Donate to Burner Wallet Factory:gitcoin.co/grants/145/burner-wallet-2-burner-factory
**Fuel Links:**Website fuel.shGithub: github.com/fuellabsTwitter @FuelLabs_
**Burner Wallet Links:**Website: burnerwallet.coGithub: github.com/burner-walletTwitter: @DMihal / Austin Griffith
Fuel Burner Wallet Codebase (under Apache-2.0):github.com/fuellabs/fuel-burner-walletgithub.com/fuellabs/fuel-burner-plugin
Fuel in NodeJS in under 10 Minutes
Build your own customized Burner Wallet (without the Burner Factory)
No activity yet