Questions tagged [serum-project]
3 questions
3
votes
1 answer
Error while sending Serum DEX make new order instruction (makeNewOrderV3Instruction) on Solana
I'm trying to make an order request on Serum DEX V3:
tx.add(market.makeNewOrderV3Instruction( {
owner,
payer,
side: 'buy',
price,
size,
orderType: 'ioc',
selfTradeBehavior: 'decrementTake'
}));
and then later:
await…

Ehsan Khodarahmi
- 4,772
- 10
- 60
- 87
0
votes
1 answer
Serum Error What is "Unable to simulate swap"?
I would like to swap using project-serum/serum-ts.
I prepared the following while reading readme.MD.
Use the latest version of Yarn etc.
Install the dependent modules according to readme.MD
Prepare the id.json file containing the wallet secret in…
-1
votes
1 answer
Solana: How to setup github action (CI) for an Anchor Project
I've my anchor project build with serum's anchor framework.
I want to set up github action, So that whenever a new pull request is raised or any commit is made on the main branch, I can be sure that no code has been broken and flag any such pull…

Arjun
- 3,248
- 18
- 35