ArweaveKit Docs
  • ArweaveKit
    • Introduction
  • 🔐Wallets
    • Introduction to Wallets
    • Create Wallet
    • Get Wallet Address
    • Get Wallet Balance
    • Wallet Plugins
  • 💳ARWEAVE WALLET KIT
    • Introduction to Arweave Wallet Kit
    • Setup
    • Connect Button
    • Hooks
    • Customization
  • 🏦Transactions
    • Introduction to Transactions
    • Create Transaction
    • Sign Transaction
    • Post Transaction
    • Get Transaction Status
    • Get Transaction
    • Create and Post Transaction with Othent
    • Transaction Plugins
  • 📄SMART CONTRACTS
    • Introduction to Smart Contracts
    • Create Contract
    • Write Contract
    • Read Contract State
    • View Contract State
    • Write Contract with Othent
    • Read Contract with Othent
    • Smart Contract Plugins
  • ✅AUTH
    • Introduction to Auth
    • Connect
    • Disconnect
    • Get Active Address
    • Get Permissions
    • Get Wallet Names
    • Get All Addresses
    • Get Active Public Key
    • Is Installed
    • Log In with Othent
    • Log Out with Othent
    • Get User Details with Othent
    • Auth Plugins
  • 🔐Encryption
    • Introduction to Encryption
    • Encrypt Data with AES
    • Decrypt Data with AES
    • Encrypt AES Key with RSA
    • Decrypt AES Key with RSA
    • Encryption Plugins
  • 🌐GRAPHQL
    • Introduction to GraphQL
    • Query All Arweave Transactions
    • Query Arweave Data
    • Query Arweave Transactions
    • GraphQL Plugins
  • 🗺️RoadMap
    • Features
  • 📘REFERENCES
    • ArweaveKit in Browser Environments
  • 🛠️SUPPORTING TOOLS
    • Arweave StarterKit
Powered by GitBook
On this page
  • Basic Syntax
  • Input Parameters
  • Returned Data

Was this helpful?

  1. SMART CONTRACTS

Read Contract with Othent

Read from a smart contract with Othent

PreviousWrite Contract with OthentNextSmart Contract Plugins

Last updated 1 year ago

Was this helpful?

is library facilitating the onboarding of users from web2 to web3 through account abstraction. The authentication protocol offers a number of "wallet-less" functions for the same. Users can connect and interact with applications using web2 technologies like email accounts with the help of Othent.

The readContractWOthent function enables interacting with a deployed contract based on the input parameters.

Ensure you have pop-ups enabled in your browser for the URL you'll be using this function in.

Basic Syntax

The function is called as follows:

import { readContractWOthent } from 'arweavekit/contract'

const readResult = await readContractWOthent({params});

Input Parameters

The following params are available for this function and they must be passed in as an object:

  • apiId: string : Use of any Othent function requires an apiId which can be fetched from . Towards the bottom of the linked page, the Get your API ID button provides the same.

  • contractTxId: string : The contractTxId points to the contract that is requested to be read.

Example
const readResult = await readContractWOthent({
  apiId: string,
  contractTxId: '2W9NoIJM1SuaFUaSOJsui_5lD_NvCHTjez5HKe2SjYU'
});

This reads the current state of the contract whose id is specified as input.

Returned Data

The function call returns the following data:

  • state: object : The state is the information/ data stored with a contract. The read call returns the latest version of the state for the specified contract as reflected on the network.

  • errors: object : The errors object consists of metadata for any errors that may have occurred returning the read result or previous unsuccessful interactions with the contract.

  • validity : object The validity is the validity of the returned state of a contract.

📄
Othent
othent.io