Advertisement
retesere20

exceptions sample- binance

Aug 23rd, 2023 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. [A]
  2. 'exceptions': {
  3. [
  4. 'appliesTo': {'spot': null},
  5. 'exact': X,
  6. 'broad': X
  7. ],
  8. [
  9. 'appliesTo': { 'swap': ['linear'], 'futures': ['linear'] },
  10. 'exact': Y,
  11. 'broad': Y
  12. ],
  13. [
  14. 'appliesTo': { 'swap': ['inverse'], 'futures': ['inverse'] },
  15. 'exact': Z,
  16. 'broad': Z
  17. ]
  18. }
  19.  
  20.  
  21.  
  22. [B]
  23. 'exceptions': {
  24. 'spot': {
  25. 'exact': X,
  26. 'broad': X
  27. },
  28. 'swap': {
  29. 'linear': {
  30. 'exact': Y,
  31. 'broad': Y
  32. },
  33. 'inverse': {
  34. 'exact': Z,
  35. 'broad': Z
  36. },
  37. },
  38. 'future': {
  39. 'linear': {
  40. 'exact': Y,
  41. 'broad': Y
  42. },
  43. 'inverse': {
  44. 'exact': Z,
  45. 'broad': Z
  46. },
  47. },
  48. },
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement