supercharge_flutter 0.1.1 copy "supercharge_flutter: ^0.1.1" to clipboard
supercharge_flutter: ^0.1.1 copied to clipboard

The Map3 Supercharge Flutter SDK connects Android and iOS crypto apps to Wallets, Exchanges & Bridges, enabling cross-chain deposits and increasing volumes.

💸 Supercharge Flutter

The Map3 Supercharge Flutter SDK connects
Android and iOS crypto apps to Wallets, Exchanges & Bridges, enabling
cross-chain deposits and increasing volumes.

pub points popularity likes


Requirements #

1. Generate an Anon Key #

Visit https://console.map3.xyz to generate YOUR_ANON_KEY.

2. Enable assets and networks #

Visit https://console.map3.xyz/config and enable assets and networks.

Installation #

flutter pub add supercharge_flutter

Configuration #

    superchargeConfig = SuperchargeConfig(
      anonKey: 'YOUR_MAP3_ANON_KEY',
      userId: 'YOUR_END_USER_ID',
      getDepositAddress: (coin, network) async {
        return 'ADDRESS'; // e.g. 0xab5801a7d398351b8be11c439e05c5b3259aec9b
      },
    );

Initialization #

@override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          toolbarHeight: 0,
        ),
        body: SuperchargeView(
          superchargeConfig: superchargeConfig,
        ),
      ),
    );
  }

Detailed example #

You can check out a detailed example in the example folder

2
likes
0
pub points
53%
popularity

Publisher

unverified uploader

The Map3 Supercharge Flutter SDK connects Android and iOS crypto apps to Wallets, Exchanges & Bridges, enabling cross-chain deposits and increasing volumes.

Homepage

License

unknown (license)

Dependencies

flutter, flutter_inappwebview, plugin_platform_interface, url_launcher

More

Packages that depend on supercharge_flutter