This repository has been archived by the owner on Apr 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy path21.ledgerSubmitOrder.js
executable file
·69 lines (58 loc) · 1.71 KB
/
21.ledgerSubmitOrder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#!/usr/bin/env -S yarn node
/* eslint-disable no-unused-vars */
/*
DO NOT EDIT THIS FILE BY HAND!
Examples are generated using helpers/buildExamples.js script.
Check README.md for more details.
*/
const sw = require('@rhino.fi/starkware-crypto')
const getWeb3 = require('./helpers/getWeb3')
const RhinofiClientFactory = require('../src')
const envVars = require('./helpers/loadFromEnvOrConfig')(
process.env.CONFIG_FILE_NAME
)
const logExampleResult = require('./helpers/logExampleResult')(__filename)
const ethPrivKey = envVars.ETH_PRIVATE_KEY
// NOTE: you can also generate a new key using:`
// const starkPrivKey = rhinofi.stark.createPrivateKey()
const starkPrivKey = envVars.STARK_PRIVATE_KEY
const rpcUrl = envVars.RPC_URL
const { web3, provider } = getWeb3(ethPrivKey, rpcUrl)
const rhinofiConfig = {
api: envVars.API_URL,
dataApi: envVars.DATA_API_URL,
useAuthHeader: true,
wallet: {
type: 'tradingKey',
meta: {
starkPrivateKey: starkPrivKey
}
}
// Add more variables to override default values
}
;(async () => {
const rhinofi = await RhinofiClientFactory(web3, rhinofiConfig)
// Submit an order to sell 0.3 Eth for USDT at 250 USDT per 1 Eth
const symbol = 'ETH:USDT'
const amount = -0.3
const price = 200
const validFor = '0'
const feeRate = ''
const ledgerPath= `44'/60'/0'/0'/0`
const submitOrderResponse = await rhinofi.submitOrder({
symbol,
amount,
price,
ledgerPath,
validFor, // Optional
feeRate, // Optional
gid: '1', // Optional
cid: '1', // Optional
partnerId: 'P1' // Optional
})
logExampleResult(submitOrderResponse)
})()
.catch(error => {
console.error(error)
process.exit(1)
})