Tezster dart v2.1.1

Our previous release received really amazing responses from the Tezos community. Thank you for that! Energized by the support we continued our journey to provide more features for Tezos development in the Flutter ecosystem.

Aditya Gautam (adi)
Tezsure
2 min readFeb 24, 2021

--

So what’s new?

Implementing user feedback has always been the topmost priority for us. We have included new features based on user feedback while focusing on features to ease smart contract interactions with this release. Below is the detailed list of features we have added.

  1. Deploy a contract
    With this release we are excited to include the feature of trustless chain interactions. A user can write smart contracts in Michelson and deploy them on Tezos using the sendContractOriginationOperation() method. In return you’ll get an origination id of the deployed contract that can be used to track the contract on-chain.
  2. Call a contract
    We have also included the feature to call or invoke a deployed contract. Use thesendContractInvocationOperation()method. In return, you’ll get an origination id of the invoked contract that can be used to track the contracts on-chain.
  3. Confirm an operation
    With the awaitOperationConfirmation() method developers can use the confirmation of any operation id.
  4. Activating a fundraiser account
    A fundraiser account needs to be activated to be used for any operation. All the user has to do is call the sendIdentityActivationOperation() method and viola! The faucet or fundraiser account will be activated.
  5. Reveal an account
    Once a fundraiser account has been activated it needs to be revealed on-chain. All you have to do is call the sendKeyRevealOperation() method, and voila it’s revealed.

How do I get started?

  1. Check out the Tezster_dart library at pub.dev.
  2. Add it as a dependency to your Flutter/Dart project.
  3. Import the tezster_dart.dart file from the tezster_dart package into your dart file.

Can I contribute?

Of course! The library is open source. 😁

If you are not sure which RPC to use, check out our Tezster nodes.

Want to learn more about Tezsure, Tezster, and more? Stay in touch.

Website | Twitter | Linkedin

--

--