Sasuke

Results 12 issues of Sasuke

--- # Please note: This repository is being rebuilt to accept the new volume of token additions and modifications. PR merges will be delayed. --- ## I agree to not...

automerge-error

- **I'm submitting a ...** [ ] bug report [ ] feature request [*] question about the decisions made in the repository [ ] question about how to use this...

Hi. I am developing NFT mutation contract and hope to know how to transfer NFT's updateauthority to the program. Plz answer~~

I have coded in context: ```js #[account( mut, seeds = [owner.key().as_ref()], bump, )] pub user_vault: Account

I have coded to mint new spl-token. in lib.rs ```js pub fn initialize(ctx: Context, _global_bump: u8) -> Result { let global_authority = &mut ctx.accounts.global_authority; global_authority.super_admin = ctx.accounts.admin.key(); Ok(()) } #[derive(Accounts)]...

I have coded like this: ```js #[derive(Accounts)] #[instruction(_create_time: u32)] pub struct CreateProject, #[account( init_if_needed, seeds = [creator.key().as_ref(), _create_time.to_string().as_bytes(),], bump, payer = creator, space = TaskList::LEN)] pub task_list: Account, pub rent:...

Hi! guys! I am developing a upgrading(mutation) smart contract by Anchor. But hope to know how to transfer UpdateAuthority to the program... Plz kindly teach me!

Hi, everyone I am building dapp with ledger wallet. I am using the `promise.all` in FE code. Let's imagine as sending 3 ixs in 1 transaction. For phantom case, users...

I built the program to close the account loader! but I am not sure it works well. ```js let owner = &mut ctx.accounts.owner; let origin_lamports: u64 = owner.lamports(); **owner.lamports.borrow_mut() =...

I have built the program with lots of calculations but the program failed with compute unit exceed error. The error msg : Program returned error: exceeded maximum number of instructions...