Code Monkey home page Code Monkey logo

sui_shinami's Introduction

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

sui_shinami's People

Contributors

chyiiiiiiiiiiii avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.