FLUTTER ECOSYSTEM

Fuelet/fuels-dart

Fuel 블록체인을 위한 Dart 및 Flutter SDK

fuels-dart 프로젝트 이미지
Stars
109
Forks
46
최근 푸시(UTC)
2026. 8. 17.
프로젝트 상태
활성
Fuelet Wallet GitHub avatar
GITHUB Organization

Fuelet Wallet ↗

The non-custodial wallet on Fuel for iOS, Android, and Browsers

언어DartRustCMakeC++CTypeScriptRubyShellHTMLSwiftJustJavaScriptKotlinObjective-C

사용 중인 의존성

의존성 목록 1 개

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

fuels-dart

Dart & Flutter SDK for Fuel Blockchain. Essentially, it's a wrapper over the official Rust SDK for mobile and official TypeScript SDK for web. It's implemented with the help of flutter_rust_bridge library.

For more information about SDK functionality and abilities, please check out fuels-rs SDK documentation.

The project tries to stick to the same interfaces as used in the Rust SDK wherever possible.

The project structure explanation can be found in the FRB documentation.

Documentation

Work on documentation for Dart/Flutter SDK is in progress.

Implemented features

  • [x] Create wallet
  • [x] Get account balances
  • [x] Transfer tokens
  • [ ] Sign transactions

Contributing

packages/fuels/native folder contains Rust files. api.rs is the main entrypoint of the Rust methods accessed from Dart.

After changing any of the Rust files, you need to regenerate the wrapper. Just call:

melos run frb-gen

All commits in the main branch must follow the Conventional Commits format.

Releasing

To upgrade the library version before releasing, do:

melos version

Then push the generated commit with tags:

git push --follow-tags

Ths will start Github actions tasks for creating and publishing a release on Github.

In order to publish a package to https://pub.dev/, you need to wait for the CI/CD tasks from the previous step to complete. Then call the following command from the corresponding package:

cd packages/[needed package]
flutter pub publish