0.0.1 • Published 2 months ago
@socialproof/mvr-static v0.0.1
mvr-static
The mvr-static tool is a typescript CLI tool to generate a static file for Move Registry (mvr)
resolution. This can be used to cache all MVR names for performance & security reasons, and used in
the NamedPackagesPlugin
(exported from @socialproof/mys
) in your project.
Usage
Generate a static file for MVR resolution
You can generate your static file by running the following command:
pnpm dlx @mysten/mvr-static
Available options:
--directory <directory>
: The directory to run the command in (defaults to.
)--output <file-name>
: The output's file name (defaults tomvr.ts
)--depth <depth>
: The depth of recursive search for MVR names (defaults to10
)--url-mainnet <url>
: The URL to the mainnet MVR (defaults tohttps://mainnet.mvr.mysocial.network
)--url-testnet <url>
: The URL to the testnet MVR (defaults tohttps://testnet.mvr.mysocial.network
)--include <dir_patterns>
: The directory patterns to include in the search (defaults to**/*.{js,ts,jsx,tsx,mjs,cjs}
)--exclude <dir_patterns>
: The directory patterns to exclude in the search (defaults to'node_modules/**', '**/.*'
)--force
: Force overwrite the existing MVR file (useful in CI) (defaults tofalse
)
Use the static file in your project
Once you have your static file, you can use it in your project by importing it and passing it to the
NamedPackagesPlugin
in your project.
import { NamedPackagesPlugin } from '@socialproof/mys/src/transactions';
import { getMvrCache } from './mvr.ts';
// create a cache for your network.
const cache = getMvrCache('mainnet');
const plugin = new NamedPackagesPlugin({
// ...,
overrides: cache,
});