Write Contract
Write to a smart contract on Arweave
The writeContract
function enables interaction with a deployed contract based on the input parameters.
Basic Syntax
The function is called as follows:
Input Parameters
The following params are available for this function and they must be passed in as an object:
environment: 'local' | 'testnet' | 'mainnet'
: The environment in which the smart contract was created in. Thetestnet
is a pseudo-testing environment created on top of themainnet
with the help of custom tags.
If the contract was created in a local
environment, please make sure thatarlocal
is running in the background to be able to interact with the contract. To create one, simply run npx arlocal
in the command line. Learn more about arlocal
here.
contractTxId: string
: ThecontractTxId
is a unique identifier received upon contract creation. This helps thewriteContract
to identify the contract to interact with.wallet: ArWallet | string
(optional) : The wallet for writing the contract with. The typeArWallet
basically checks for Arweave wallet of the typeJWKInterface
and typeString
expects the private key of the Ethereum wallet and if the wallet param is not passed, it falls back to check for a web-based wallet like Metamask or ArConnect. When falling back to a web wallet, an Ethereum Wallet (like Metamask) is triggered since contract functions use bundling by default, which supports EVM web wallets. If this attempt fails, the function will retry with an Arweave Web Wallet (like ArConnect or arweave.app). The wallet key file can be loaded as follows and passed to the wallet param:
Arweave JWK
or Ethereum Private key
is needed as a wallet parameter in the node environment. And, the wallet param needed not to be passed in the browser environment for use with Arconnect or an Ethereum-based wallet (like Metamask).
options: Object
: The input arguments for the appropriate write interaction call with the contract. For the following sample contract:
The options would be: options: { function: 'initialize' }
.
tags: array
(optional) : Tags can be added to any transaction for ease of indexing and querying. The syntax for adding tags is as follows:The
name
is the key for a givenvalue
that can be used for querying the transaction in the future. By default, the library adds the'ArweaveKit' : '1.5.1'
tag on the backend to help identify the library and version used to deploy the function.vrf : boolean
(optional) : VRF enables the use of verifiable randomness in contracts wherever random values are required. Read more about VRF here.evaluationOptions : object
(optional) : Evaluation options define rules on how a contract will be evaluated during write interactions. Read more about evaluation options to learn about the available configurations and their uses.strategy : 'arweave' | 'ethereum' | 'both'
(optional) : The strategy specifies the wallet (Ethereum or Arweave) to be used for contract writing. While the wallet can be determined by the wallet param passed in, it can be beneficial to pass in when using browser environments. However, by default, the strategy is set to'both'
and thus tries the function call with Ethereum first and fallback on an Arweave Wallet.cacheOptions : object
(optional) : Contract state is cached for fast retrieval and seamless experience. Custom configurations can be passed in as an object for more control over the caching process. This includes aninMemory
option enabling the storage of cache in local memory. By default, the contract state is cached in a database. ThedbLocation
can be configured with the options outlined in these docs.
Returned Data
The function call returns the following data:
writeContract: WriteInteractionRespone
: ThewriteContract
object has metadata relevant to the write operation. Read more about it here.bundlrResponse: BundlrResponse
: By default, the function uses bundlr network to perform the write operation and thus returns information related to the bundling of this write operation.originalTxId: string
: TheoriginalTxId
is the unique identifier that can be used to find information about this write operation on Arweave.
state: object
: Thestate
object is the latest version of information (variables and interactions with them) that is stored on the chain and associated with the contract. ThewriteContract
assumes that the write interaction has been processed as expected and returns the updated state from the cache.result: object
: Theresult
object returns easy to understand information showing the status of the write interaction.status: 200
andstatusText: 'SUCCESSFUL'
indicate that information has been successfully written to the contract.
Last updated