Yaci Devnet
Introduction
About Yaci devnet
Yaci Devnet enhances development efficiency with integrated tools, allows for rapid iteration and experimentation, making it ideal for developers seeking flexible and seamless Cardano testing.
Yaci Provider
Integrated data provider
Yaci Provider is a data provider that allows users to interact with the Yaci devnet.
Example:
import { YaciProvider } from "@meshsdk/core";
const blockchainProvider = new YaciProvider('https://yaci-node.meshjs.dev/api/v1/');
const params = await blockchainProvider.fetchProtocolParameters();
console.log(params);
Response:
API
API for Yaci devnet
API that allows users to interact with the blockchain:
https://yaci-node.meshjs.dev/api/v1/
Example:
curl https://yaci-node.meshjs.dev/api/v1/epochs/latest/parameters
Response:
Transaction
Build transaction with Mesh and submit to Yaci
Build a transaction with Mesh and submit it to the Yaci devnet is simple, just follow the example below.
In this example, we are building a transaction that sends 2 ADA to an address and then submits it to the Yaci devnet.
Example: