serum-ts icon indicating copy to clipboard operation
serum-ts copied to clipboard

Project Serum TypeScript monorepo

Results 108 serum-ts issues
Sort by recently updated
recently updated
newest added

There are some possibilites to get the number of decimal places a market has. But how do i get the amount of decimal places that are allowed to trade with....

Looks like @project-serum/swap doesn't export swap information TypeError: client.estimate is not a function

I am trying to fetch the orderbook just as a starting point to start playing with the project and interact more with serum. On running ```js import { Account, Connection,...

Hi I want to place orders but I dont understand who are owner and payer and what I need to put in this variables. // Placing orders let owner =...

Why we cannot use testnet and devnet endpoint defined here on the Solana documentation in order to create our connections? Solana documentation: https://docs.solana.com/cluster/rpc-endpoints Testnet https://api.testnet.solana.com Devnet https://api.devnet.solana.com Using them it...

How can we retrieve the information of just only one specific open order instead of loading all of them? For example, we have this documentation here: https://github.com/project-serum/serum-ts/tree/master/packages/serum But we only...

When testing with the serum-ts library I noticed that if I had already created the open orders account, but not yet placed and order, the library would attempt to create...

Sometimes new order fails with the following: Transaction simulation failed: Error processing Instruction 0: custom program error: 0x22 Program 9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin invoke [1] Program 9xQeWvG816bUx9EPjHmaT23yvVM2ZWbrrpZb9PusVFin consumed 8970 of 200000 compute units...

How about we return more information when placing an order instead of just the signature? For example the exchangeId of the order? For now, we only have the option to...

How can we place several orders in just one transaction? Guaranteeing this way that it returns success only if all of them succeeded? For example, we have this documentation here:...