Skip to content

Libraries

Partisia Platform offers a set of different libraries to help you interact with smart contracts and work with the states of smart contracts on the chain.

client

Facilitates communication with a blockchain node. It helps you to interact with the blockchain programmatically. It can get data about blocks, transactions, smart contracts, accounts etc. It has the functionality to create and send transactions.

abi-client

Our Smart Contract Binary Interface Client Library. It offers a standard binary interface for deploying contracts and creating transactions, making it ideal for several use cases:

  • Creating binary RPC, which calls an action with parameters on a smart contract.
  • Decode binary contract states to readable types.
  • Decode binary parts of transactions and events.

ABI-Client is available in the following programming languages:

When using the abi-client using codegen can help you as a developer to create a plug-and-play interactions with the blockchain. Abi-client can be used to read from contracts that is not necessarily linked to a specific contract on the blockchain. The strength of codegen compared to abi-client is to handle specific contracts you want to work with. Whereas abi-client is more generalistic in its approach to contracts not already know to the system.
We have created an example client to showcase how to work with the abi-client.

zk-client

Sending secret input to ZK Rust smart contracts. The zk-client is a library that can help you interact with the blockchain. Secondly the zk-client can fetch the secret data that you have ownership of from a ZK contract deployed onto the chain. You can visit the tests inside the projects to see how it works and start from there.

zk-client is available in the following programming languages:

Example client

This is a front end and a backend example of how to integrate you application with Partisia Blockchain, specifically it uses the client and the abi-client to send transactions and read states of the contracts.

Example client is available in the following programming languages: