fuse_wallet_sdk 0.3.3 copy "fuse_wallet_sdk: ^0.3.3" to clipboard
fuse_wallet_sdk: ^0.3.3 copied to clipboard

Fuse Wallet SDK now has a Dart implementation, making it even easier to integrate blockchain technology into your mobile apps.

example/fuse_wallet_sdk_example.dart

import 'dart:io';

import 'package:fuse_wallet_sdk/fuse_wallet_sdk.dart';

void main() async {
  final credentials = EthPrivateKey.fromHex('WALLET_PRIVATE_KEY');
  // Create a project: https://console.fuse.io/build
  final publicApiKey = 'YOUR_PUBLIC_API_KEY';
  final fuseSDK = await FuseSDK.init(
    publicApiKey,
    credentials,
  );

  print('Smart contract wallet address: ${fuseSDK.wallet.getSender()}');

  exit(1);
}
6
likes
120
pub points
57%
popularity

Publisher

verified publisherfuse.io

Fuse Wallet SDK now has a Dart implementation, making it even easier to integrate blockchain technology into your mobile apps.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bip32, bip39, centrifuge, compute, data_channel, decimal, dio, freezed_annotation, hex, http, json_annotation, synchronized, userop, web3dart

More

Packages that depend on fuse_wallet_sdk