anchor/tests/floats/migrations/deploy.ts

13 lines
405 B
TypeScript
Raw Normal View History

2022-02-17 11:23:21 -08:00
// 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("@coral-xyz/anchor");
2022-02-17 11:23:21 -08:00
module.exports = async function (provider) {
// Configure client to use the provider.
anchor.setProvider(provider);
// Add your deploy script here.
};