Socket
Socket
Sign inDemoInstall

@latticexyz/gas-report

Package Overview
Dependencies
Maintainers
4
Versions
1056
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@latticexyz/gas-report - npm Package Versions

13
106

2.2.8-main-b0711983a5f72f9b3236e6cbcef3dae7a424a09c

Diff

alvarius
published 2.2.8-main-0f5b2916edfa24b9d0ad1b82df56aed57f7e657d •

alvarius
published 2.2.8-main-7c7bdb26d0f87e2a5fc20c4eb34abb5167000ab9 •

alvarius
published 2.2.7 •

alvarius
published 2.2.7-main-58f101e45ad50e064779cbc441246a22b70efa07 •

alvarius
published 2.2.7-main-a08ba5e31e90bf3208919bc1d5e08c1ba9524130 •

alvarius
published 2.2.7-main-d21c1d1817ec2394007b28c90fec5a81f1fdd3d0 •

alvarius
published 2.2.7-main-2744df83f644d216630b8516de48483741a9aea9 •

alvarius
published 2.2.6 •

Changelog

Source

Version 2.2.6

Release date: Thu Sep 19 2024

Patch changes

feat(stash): release package to npm (#3184) (@latticexyz/stash)

Added @latticexyz/stash package, a TypeScript client state library optimized for the MUD Store data model. It uses the MUD store config to define local tables, which support writing, reading and subscribing to table updates. It comes with a query engine optimized for "ECS-style" queries (similar to @latticexyz/recs) but with native support for composite keys.

You can find usage examples in the @latticexyz/stash README.md.

This package is experimental and will have breaking changes while we refine its APIs and implementation. All of its exports are temporarily under @latticexyz/stash/internal until we consider it stable.

fix(cli): improve performance of linked library resolution during deployment (#3197) (@latticexyz/cli)

Significantly improved the deployment performance for large projects with public libraries by implementing a more efficient algorithm to resolve public libraries during deployment. The local deployment time on a large reference project was reduced from over 10 minutes to 4 seconds.

feat(store-sync): add syncToStash util (#3192) (@latticexyz/store-sync)

Added a syncToStash util to hydrate a stash client store from MUD contract state. This is currently exported from @latticexyz/store-sync/internal while Stash package is unstable/experimental.

import { createClient, http } from "viem";
import { anvil } from "viem/chains";
import { createStash } from "@latticexyz/stash/internal";
import { syncToStash } from "@latticexyz/store-sync/internal";
import config from "../mud.config";

const client = createClient({
  chain: anvil,
  transport: http(),
});

const address = "0x...";

const stash = createStash(config);
const sync = await syncToStash({ stash, client, address });

alvarius
published 2.2.7-main-5a6c03c6bc02c980ca051dadd8e20560ac25c771 •

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc