Armani Ferrante
Armani Ferrante
#### Problem When a program runs out of log units, newly emitted `msg!` (and others like sol_log_data) logs will silently fail while the transaction succeeds. This is problematic for the...
Instead, we should just use the `publicKey` on the provider object directly. Accessing the `wallet` on the provider is no longer necessary. See https://github.com/coral-xyz/anchor/blob/master/ts/src/program/namespace/account.ts#L291-L295
Steps to reproduce * anchor init hello * anchor test * change the progrma's main `mod hello` to `mod fails_now_hello` * anchor test The test will throw `Transaction simulation failed:...
Addresses https://github.com/project-serum/swap-ui/issues/63 Changes: * displays wrap/unwrap when swapping between sol/wrapped-sol * displays "create accounts" when the "to token" (or quote token for a transitive swap) does not have an account...
[Original issue](https://github.com/project-serum/spl-token-wallet/issues/322). I am testing this wallet for the first time with a small deposit of SOL trying to convert to other SOL tokens. I have created balances for SRM,...
Instead of dynamically creating the account, we should provide an explicit flow. This will help prevent transactions from going over the tx size limit.
We should provide an explicit button or alternative flow for wrapping/unwrapping SOL. E.g. when the "from" mint is native SOL and the "to" mint is wrapped SOL, change the button...
The exchange rate shown doesn't include taker fees (though the calculated `toAmount`, i.e. the token on the bottom of the swap form does). We should either add a note that...
Account closing is currently disabled since it's not released on the dex, yet. Once the next DEX version comes out, we should enable closing accounts in `@project-serum/swap`, so that the...
When the swap component creates a new open orders account, because it detects one doesn't exist, it doesn't save that open orders account after the transaction completes. This will cause...