13 lines
408 B
JavaScript
13 lines
408 B
JavaScript
// Migrations are an early feature. Currently, they're nothing more than this
|
|
// single deploy script that's invoked from the CLI, injecting a provider
|
|
// configured from the workspace's Anchor.toml.
|
|
|
|
const anchor = require("@project-serum/anchor");
|
|
|
|
module.exports = async function (provider) {
|
|
// Configure client to use the provider.
|
|
anchor.setProvider(provider);
|
|
|
|
// Add your deploy script here.
|
|
}
|