Blockchain Interactions
description: Query and mutate Flow blockchain
Make sure you have set the configuration in Getting Started first.
We are assuming you have read the Scripts Documentation before this, as transactions are sort of scripts with more required things.
There are two different operations to interact with Flow blockchain:
Query: Send arbitrary Cadence scripts to the chain and receive
ExecuteResult<ICadence>values. Can be performed without user loginMutate: Use transaction to send Cadence code with specify authorizer to perform permanently state changes on chain. Must be performed after user logged in
about ICadance, you can get more detailed description from Flow.Net
Query
using Flow.FCL;
using Flow.Net.Sdk.Core.Models;
var script = @"
pub struct User {
pub var balance: UFix64
pub var address: Address
pub var name: String
init(name: String, address: Address, balance: UFix64) {
self.name = name
self.address = address
self.balance = balance
}
}
pub fun main(name: String): User {
return User(
name: name,
address: 0x1,
balance: 10.0
)
}";
var flowScript = new FlowScript
{
Script = script,
Arguments = new List<ICadence>
{
new CadenceString("blocto")
}
};
var result = await fcl.QueryAsync(flowScript);
if(result.IsSuccessed)
{
//// Composite object parser
var name = result.Data.As<CadenceComposite>().CompositeFieldAs<CadenceString>("name").Value;
var balance = result.Data.As<CadenceComposite>().CompositeFieldAs<CadenceNumber>("balance").Value;
var address = result.Data.As<CadenceComposite>().CompositeFieldAs<CadenceAddress>("address").Value;
Debug.Log($"Name: {name}, Balance: {balance}, Address: {address})";
}
else
{
Debug.Log($"Error message: {result.Message}");
}Mutate
While query is used for sending scripts to the chain, mutate is used for building and sending transactions.
Transaction status
In order to check transaction status, we can use getTransactionStatus in fcl to keep polling until transaction have been sealed into block.
After the status changes to sealed, we can query the Flow blockchain to see if the transaction works as expected.
Last updated
Was this helpful?