123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- use crate::config::ProgramWorkspace;
- use crate::VERSION;
- use anyhow::Result;
- use heck::{CamelCase, SnakeCase};
- pub fn virtual_manifest() -> &'static str {
- r#"[workspace]
- members = [
- "programs/*"
- ]
- "#
- }
- pub fn credentials(token: &str) -> String {
- format!(
- r#"[registry]
- token = "{}"
- "#,
- token
- )
- }
- pub fn cargo_toml(name: &str) -> String {
- format!(
- r#"[package]
- name = "{0}"
- version = "0.1.0"
- description = "Created with Anchor"
- edition = "2018"
- [lib]
- crate-type = ["cdylib", "lib"]
- name = "{1}"
- [features]
- no-entrypoint = []
- no-idl = []
- cpi = ["no-entrypoint"]
- default = []
- [dependencies]
- anchor-lang = "{2}"
- "#,
- name,
- name.to_snake_case(),
- VERSION,
- )
- }
- pub fn deploy_js_script_host(cluster_url: &str, script_path: &str) -> String {
- format!(
- r#"
- const anchor = require('@project-serum/anchor');
- // Deploy script defined by the user.
- const userScript = require("{0}");
- async function main() {{
- const url = "{1}";
- const preflightCommitment = 'recent';
- const connection = new anchor.web3.Connection(url, preflightCommitment);
- const wallet = anchor.Wallet.local();
- const provider = new anchor.Provider(connection, wallet, {{
- preflightCommitment,
- commitment: 'recent',
- }});
- // Run the user's deploy script.
- userScript(provider);
- }}
- main();
- "#,
- script_path, cluster_url,
- )
- }
- pub fn deploy_ts_script_host(cluster_url: &str, script_path: &str) -> String {
- format!(
- r#"
- import * as anchor from '@project-serum/anchor';
- // Deploy script defined by the user.
- const userScript = require("{0}");
- async function main() {{
- const url = "{1}";
- const preflightCommitment = 'recent';
- const connection = new anchor.web3.Connection(url, preflightCommitment);
- const wallet = anchor.Wallet.local();
- const provider = new anchor.Provider(connection, wallet, {{
- preflightCommitment,
- commitment: 'recent',
- }});
- // Run the user's deploy script.
- userScript(provider);
- }}
- main();
- "#,
- script_path, cluster_url,
- )
- }
- pub fn deploy_script() -> &'static str {
- r#"
- // 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.
- }
- "#
- }
- pub fn ts_deploy_script() -> &'static str {
- r#"
- // 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.
- }
- "#
- }
- pub fn xargo_toml() -> &'static str {
- r#"[target.bpfel-unknown-unknown.dependencies.std]
- features = []
- "#
- }
- pub fn lib_rs(name: &str) -> String {
- format!(
- r#"use anchor_lang::prelude::*;
- #[program]
- pub mod {} {{
- use super::*;
- pub fn initialize(ctx: Context<Initialize>) -> ProgramResult {{
- Ok(())
- }}
- }}
- #[derive(Accounts)]
- pub struct Initialize {{}}
- "#,
- name.to_snake_case(),
- )
- }
- pub fn mocha(name: &str) -> String {
- format!(
- r#"const anchor = require('@project-serum/anchor');
- describe('{}', () => {{
- // Configure the client to use the local cluster.
- anchor.setProvider(anchor.Provider.env());
- it('Is initialized!', async () => {{
- // Add your test here.
- const program = anchor.workspace.{};
- const tx = await program.rpc.initialize();
- console.log("Your transaction signature", tx);
- }});
- }});
- "#,
- name,
- name.to_camel_case(),
- )
- }
- pub fn ts_mocha(name: &str) -> String {
- format!(
- r#"import * as anchor from '@project-serum/anchor';
- describe('{}', () => {{
- // Configure the client to use the local cluster.
- anchor.setProvider(anchor.Provider.env());
- it('Is initialized!', async () => {{
- // Add your test here.
- const program = anchor.workspace.{};
- const tx = await program.rpc.initialize();
- console.log("Your transaction signature", tx);
- }});
- }});
- "#,
- name,
- name.to_camel_case(),
- )
- }
- pub fn ts_config() -> &'static str {
- r#"{
- "compilerOptions": {
- "types": ["mocha", "chai"],
- "typeRoots": ["./node_modules/@types"],
- "lib": ["es2015"],
- "module": "commonjs",
- "target": "es6",
- "esModuleInterop": true
- }
- }
- "#
- }
- pub fn git_ignore() -> &'static str {
- r#"
- .anchor
- .DS_Store
- target
- **/*.rs.bk
- "#
- }
- pub fn node_shell(
- cluster_url: &str,
- wallet_path: &str,
- programs: Vec<ProgramWorkspace>,
- ) -> Result<String> {
- let mut eval_string = format!(
- r#"
- const anchor = require('@project-serum/anchor');
- const web3 = anchor.web3;
- const PublicKey = anchor.web3.PublicKey;
- const __wallet = new anchor.Wallet(
- Buffer.from(
- JSON.parse(
- require('fs').readFileSync(
- "{}",
- {{
- encoding: "utf-8",
- }},
- ),
- ),
- ),
- );
- const __connection = new web3.Connection("{}", "processed");
- const provider = new anchor.Provider(__connection, __wallet, {{
- commitment: "processed",
- preflightcommitment: "processed",
- }});
- anchor.setProvider(provider);
- "#,
- wallet_path, cluster_url,
- );
- for program in programs {
- eval_string.push_str(&format!(
- r#"
- anchor.workspace.{} = new anchor.Program({}, new PublicKey("{}"), provider);
- "#,
- program.name.to_camel_case(),
- serde_json::to_string(&program.idl)?,
- program.program_id.to_string()
- ));
- }
- Ok(eval_string)
- }
|