An open API service indexing awesome lists of open source software.

https://github.com/kickeddroid/flutter-stellar-sdk


https://github.com/kickeddroid/flutter-stellar-sdk

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Saturn Flutter SDK
![alt text](https://preview.ibb.co/iL8VUT/planet.png)

The Saturn open source SDK for ios and android using Flutter.

## Generate a Stellar KeyPair
```dart
Saturnpackage.stellarKeyPairSeed(String seed);
```
## Create a Stellar account with FriendBot
```dart
Saturnpackage.stellarCreateTestAccount(dynamic accountPair);
```
## Build and submit a TX to the stellar network
```dart
Saturnpackage.submitStellarTx(String destination, String source, String amount);
// Amount is in string format not a double
```