
Product
Introducing GitHub Actions Scanning Support
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.
@mysten/mvr-static
Advanced tools
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 @mysten/sui
) in your project.
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 to mvr.ts
)--depth <depth>
: The depth of recursive search for MVR names (defaults to 10
)--url-mainnet <url>
: The URL to the mainnet MVR (defaults to
https://mainnet.mvr.mystenlabs.com
)--url-testnet <url>
: The URL to the testnet MVR (defaults to
https://testnet.mvr.mystenlabs.com
)--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 to false
)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 '@mysten/sui/src/transactions';
import { getMvrCache } from './mvr.ts';
// create a cache for your network.
const cache = getMvrCache('mainnet');
const plugin = new NamedPackagesPlugin({
// ...,
overrides: cache,
});
FAQs
The static generation tool for Move Registry (mvr)
We found that @mysten/mvr-static demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.