Skip to content

v0.3.0

Latest

Choose a tag to compare

@github-actions github-actions released this 10 Jun 11:03
v0.3.0
ecbdcc0
npm install @ligate-labs/sdk@0.3.0

Pairs with ligate-chain v0.4.0 and the ligate-devnet-3 cutover. Adds builders + query methods for the two new chain modules (bounty and contract), folds the LGTAVOW token-symbol rename from chain v0.3.0, and clarifies the two-tier read surface at the class-doc level. No wire-format changes for previously-shipped surfaces; consumers pinning ^0.2.0 will NOT auto-upgrade and need to bump intentionally to talk to a v0.4.0 chain.

Install: npm install @ligate-labs/sdk@0.3.0.

Added

  • bounty runtime-call builders: signPostBounty, signClaimBounty, signDisputeBounty, signResolveBounty, signCancelBounty. Borsh layout pinned against ligate-chain/crates/bootstrap-cli/examples/disc_probe.rs. Mirrors the chain handlers shipped in chain#532.
  • contract runtime-call builders: signPostContract, signCommitContract, signDeliverContract, signAcceptContract, signRejectContract, signResolveContract, signCancelContract. Named-arbiter dispute flow from chain#538 + the chain_state-driven expiry / auto-accept from chain#541.
  • LigateClient indexer-direct query methods: listBounties / getBounty, listContracts / getContract. Returns indexer-projected shapes via ligate-api once ligate-api#78 (event ingestion) + ligate-api#80 (wire types) land.
  • Class-doc on LigateClient now states the contract-level split between chain-direct methods (/rollup/*, /modules/bank/*, write path) and indexer-direct methods (everything paginated / projected). Helps consumers reason about latency, availability, and what to point rpcUrl at for which tier.

Changed

  • Renamed token symbol LGTAVOW everywhere. Tracks ligate-chain#457 and aligns with chain v0.3.0. Substitutions cover prose, doc comments, example code, README quickstart, and internal helpers. $ prefix dropped per the cleaner convention adopted chain-side. Paired with ligate-api#70. (#44)
  • README + status references flipped from ligate-devnet-2 to ligate-devnet-3 per the chain v0.4.0 cutover (chain#546). Past devnet-1 / devnet-2 mentions remain in archival changelog/blog entries.