![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
kleros-api
Advanced tools
A Javascript library that makes it easy to build relayers and other DApps that use the Kleros protocol.
This repository contains a Javascript library that provides methods to interact with Kleros arbitrator and Arbitrable contracts. It can be used to develop Relayers or DApps that use Kleros smart contracts.
yarn add kleros-api
See the full API docs here.
The base Kleros object initializes all of the different kleros api's with the contract addresses you pass. This object is useful if your application interacts with both arbitrators, arbitrable contracts and uses an off chain store to provide metadata on the different disputes for the UI.
// pay arbitration fee.
import Kleros from 'kleros-api'
const KlerosInstance = new Kleros(
ETH_PROVIDER, // ethereum provider object
KLEROS_STORE_URI, // uri of off chain storage e.g. https://kleros.in
ARITRATOR_CONTRACT_ADDRESS, // address of a deployed Kleros arbitrator contract
ARBITRABLE_CONTRACT_ADDRESS // address of a deployed arbitrable transaction contract
)
KlerosInstance.arbitrable.payArbitrationFeeByPartyA() // pay arbitration fee for an arbitrable contract
You can also use the specific api that best suits your needs.
// deploy a new contract and pay the arbitration fee.
import ArbitrableTransaction from 'kleros-api/contracts/implementations/arbitrable/ArbitrableTransaction'
// deploy methods are static
const contractInstance = ArbitrableTransaction.deploy(
"0x67a3f2BB8B4B2060875Bd6543156401B817bEd22", // users address
0.15, // amount of ETH to escrow
"0x0", // hash of the off chain contract
"0x3af76ef44932695a33ba2af52018cd24a74c904f", // arbitrator address
3600, // number of seconds until there is a timeout
"0x0474b723bd4986808366E0DcC2E301515Aa742B4", // the other party in the contract
"0x0", // extra data in bytes. This can be used to interact with the arbitrator contract
ETH_PROVIDER, // provider object to be used to interact with the network
)
const address = contractInstance.address // get the address of your newly created contract
const ArbitrableTransactionInstance = new ArbitrableTransaction(address) // instantiate instance of the api
ArbitrableTransactionInstance.payArbitrationFeeByPartyA() // pay arbitration fee
If you want to contribute to our api or modify it for your usage
We assume that you have node and yarn installed.
yarn install
yarn ganache
yarn test
yarn run build
FAQs
A Javascript library that makes it easy to build relayers and other DApps that use the Kleros protocol.
The npm package kleros-api receives a total of 65 weekly downloads. As such, kleros-api popularity was classified as not popular.
We found that kleros-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.