fuse_wallet_sdk 0.2.12 copy "fuse_wallet_sdk: ^0.2.12" to clipboard
fuse_wallet_sdk: ^0.2.12 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://developers.fuse.io
  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
0
pub points
54%
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

License

unknown (LICENSE)

Dependencies

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

More

Packages that depend on fuse_wallet_sdk