sui_shinami 1.0.1 copy "sui_shinami: ^1.0.1" to clipboard
sui_shinami: ^1.0.1 copied to clipboard

This package is developed for integration Shinami SDK for Sui.

Shinami SDK #

pub package

sui_shinami

This package is developed for integration Shinami SDK for Sui. We can easily use own sponsored wallet for user's transactions to give a smoothly experience.

Now support by PassionLab.

Features #

  • ✅ Shinami Gas Station

Installation #

dependencies:
  sui_shinami: ^1.0.0

Run #

flutter run --dart-define shinamiAccessKey=<key>

Usage #

Use TransactionBlock to execute your transaction with prefixTransaction parameter.


final response = await _gasStation.executeTransaction(
  senderAccount: ...,
  prefixTransaction: ...,
);

Normal Transaction #

const movePackageAddress =
    '0xfa0e78030bd16672174c2d6cc4cd5d1d1423d03c28a74909b2a148eda8bcca16';
const movePackageModule = 'clock';
const movePackageMethod = 'access';

final suiAccount = SuiAccount.ed25519Account()

final response = await _gasStation.executeTransaction(
  senderAccount: suiAccount,
  prefixTransaction: (TransactionBlock transactionBlock) async {
    return transactionBlock.moveCall(
      '$movePackageAddress::$movePackageModule::$movePackageMethod',
      arguments: [
        transactionBlock.object('<object>'),
      ],
    );
  },
);

Transfer Transaction #

response = await _gasStation.executeTransaction(
  senderAccount: mySuiAccount,
  prefixTransaction: (TransactionBlock transactionBlock) async {
    return transactionBlock.transferObjects(
      [
        transactionBlock.objectId("<object id>"),
      ],
      transactionBlock.pureAddress(recipientSuiAddress),
    );
  },
);

Contributing #

Welcome the talents to contribute. Let's make this plugin stronger!

  • Implement new features and submit a pull-request any time
1
likes
130
points
14
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

This package is developed for integration Shinami SDK for Sui.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, sui

More

Packages that depend on sui_shinami