Questions tagged [serum-dex]
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
2
votes
1 answer
connection.getProgramAccounts disabled for certain clusters on Solana?
The RPC call, connection.getProgramAccounts() seems to be working for my local validator and a locally deployed program, but it shows the following error when I'm trying to fetch program accounts for Serum Dex V3,…

sayantank
- 119
- 1
- 1
- 6
0
votes
1 answer
Handling royalty fees payments when trading semi-fungible SPL Tokens
We are building a Solana based application which will mint Semi-Fungible tokens (for Fungible Assets) let people trade them.
What we want next is to add metadata to this mint through which we are also going to set the creators and the seller fee…