Replies: 1 comment 2 replies
-
This is already supported: {
"accounts": [{
...
},{
...
},{
...
}
]} Replace each three dots with one account settings. Would do something like: {
"accounts": [
{
"username": "username",
"password": "password",
"streamerConfigDirectories": [
{
"path": "streamers",
"recursive": true
}
]
},
{
"username": "username2",
"password": "password2",
"streamerConfigDirectories": [
{
"path": "streamers2",
"recursive": true
}
]
},
{
"username": "username3",
"password": "password3",
"streamerConfigDirectories": [
{
"path": "streamers",
"recursive": true
}
]
}
]
} |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, can you please tell me how do i make this work with multiple accounts instead having to run 10 different instances, it's just ridiculous, if there is a way to put accounts in one file from which the miner reads and uses them to mine.
Or would in config.json work if i add numbers so it know that i separated them?
Example
Update: Seems like that this way doesn't work. Can you please implement some more piratical way of adding accounts? for example format i gave or just some better way. And lets say you if you are first time logging in it would require verification code(2fa) it should put all other accounts in queue so after you write 2Fa for account1, it goes to next and etc.. Example.
Solution for this is just to copy paste and create multiple copies of same files.. Then you just put different accounts in each... It's really annoying that way, definitely solution but really bad and takes tons of time..
Beta Was this translation helpful? Give feedback.
All reactions