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 path30.publicPermissions.js
executable file
·60 lines (49 loc) · 1.72 KB
/
30.publicPermissions.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
#!/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)
const publicPermissionsDescriptor = await rhinofi.publicUserPermissions()
logExampleResult(publicPermissionsDescriptor)
// Get currently set permissions for a user, authenticated endpoint
const currentUerPermissions = await rhinofi.account.getPermissions()
logExampleResult(currentUerPermissions)
// Enable all of the permissions
Object.keys(currentUerPermissions).map(async (permissionKey) => {
const updatedPermissions = await rhinofi.account.setPermissions({ key: permissionKey, value: true })
logExampleResult(updatedPermissions)
})
})()
.catch(error => {
console.error(error)
process.exit(1)
})