What is the difference between wallet create and create account?
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I get this -
cleos wallet private_keys -n trevoro1
password: [[
"EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc",
"5KRb9FhAusiMGMqiQokVcAbLizLtdTvXXSgieiYVqAwi6eeobdr" ] ]
Then when I tried to create a new account I get a strange error -
cleos create account trevoro1 trevoro1new
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7J
c
Error 3090003: Provided keys, permissions, and delays do not satisfy
declared authorizations Ensure that you have the related private keys
inside your wallet and your wallet is unlocked.
I tried a few variations on this. What exactly is the difference between wallet create and account create; and what is the owner key vs the active key?
cleos
add a comment |Â
up vote
2
down vote
favorite
I get this -
cleos wallet private_keys -n trevoro1
password: [[
"EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc",
"5KRb9FhAusiMGMqiQokVcAbLizLtdTvXXSgieiYVqAwi6eeobdr" ] ]
Then when I tried to create a new account I get a strange error -
cleos create account trevoro1 trevoro1new
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7J
c
Error 3090003: Provided keys, permissions, and delays do not satisfy
declared authorizations Ensure that you have the related private keys
inside your wallet and your wallet is unlocked.
I tried a few variations on this. What exactly is the difference between wallet create and account create; and what is the owner key vs the active key?
cleos
you probably never createdtrevoro1
account so you don't have their permission to create a new account using them as a creator
– confused00
Aug 9 at 8:26
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I get this -
cleos wallet private_keys -n trevoro1
password: [[
"EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc",
"5KRb9FhAusiMGMqiQokVcAbLizLtdTvXXSgieiYVqAwi6eeobdr" ] ]
Then when I tried to create a new account I get a strange error -
cleos create account trevoro1 trevoro1new
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7J
c
Error 3090003: Provided keys, permissions, and delays do not satisfy
declared authorizations Ensure that you have the related private keys
inside your wallet and your wallet is unlocked.
I tried a few variations on this. What exactly is the difference between wallet create and account create; and what is the owner key vs the active key?
cleos
I get this -
cleos wallet private_keys -n trevoro1
password: [[
"EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc",
"5KRb9FhAusiMGMqiQokVcAbLizLtdTvXXSgieiYVqAwi6eeobdr" ] ]
Then when I tried to create a new account I get a strange error -
cleos create account trevoro1 trevoro1new
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7Jc
EOS7oVsWPXFXYrxZARSf5qZ5ApSYwX882VpFdqESWap4ecxiUH7J
c
Error 3090003: Provided keys, permissions, and delays do not satisfy
declared authorizations Ensure that you have the related private keys
inside your wallet and your wallet is unlocked.
I tried a few variations on this. What exactly is the difference between wallet create and account create; and what is the owner key vs the active key?
cleos
asked Aug 9 at 3:44
Trevor Oakley
2319
2319
you probably never createdtrevoro1
account so you don't have their permission to create a new account using them as a creator
– confused00
Aug 9 at 8:26
add a comment |Â
you probably never createdtrevoro1
account so you don't have their permission to create a new account using them as a creator
– confused00
Aug 9 at 8:26
you probably never created
trevoro1
account so you don't have their permission to create a new account using them as a creator– confused00
Aug 9 at 8:26
you probably never created
trevoro1
account so you don't have their permission to create a new account using them as a creator– confused00
Aug 9 at 8:26
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
1
down vote
wallet & account
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
cleos wallet import
to sign transaction. - An account is a human-readable identifier that is stored on the blockchain. Account creations is done by transaction, so you should have existing account to create new account. (or, you can use external services to create EOS.IO account)
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
owner key & active key
owner key symbolizes ownership of an account. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active key is used for transferring funds, voting for producers and making other high-level account changes.
add a comment |Â
up vote
1
down vote
What exactly is the difference between wallet create and account create?
Wallet create is the code to create a wallet for you. Wallets are used to store private keys of your accounts.
eg:
cleos wallet create -n mywallet
You can create an account using the following command. This is the latest way of creating an account as per developer portal. The account create
command is deprecated, that may be the reason you got error.
cleos system newaccount [OPTIONS] creator name OwnerKey [ActiveKey]
There are a number of options available to add it with this command like stake-net,stake-cpu etc.
what is the owner key vs the active key?
From the developer portal, we could find its definition as follows,
Every account has two native named permissions
owner authority symbolizes ownership of an account. There are only a few transactions that require this authority, but most notably, are actions that make any kind of change to the owner authority. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active authority is used for transferring funds, voting for producers and making other high-level account changes.
Simply, the owner key has a higher privilege than the active key.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
wallet & account
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
cleos wallet import
to sign transaction. - An account is a human-readable identifier that is stored on the blockchain. Account creations is done by transaction, so you should have existing account to create new account. (or, you can use external services to create EOS.IO account)
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
owner key & active key
owner key symbolizes ownership of an account. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active key is used for transferring funds, voting for producers and making other high-level account changes.
add a comment |Â
up vote
1
down vote
wallet & account
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
cleos wallet import
to sign transaction. - An account is a human-readable identifier that is stored on the blockchain. Account creations is done by transaction, so you should have existing account to create new account. (or, you can use external services to create EOS.IO account)
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
owner key & active key
owner key symbolizes ownership of an account. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active key is used for transferring funds, voting for producers and making other high-level account changes.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
wallet & account
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
cleos wallet import
to sign transaction. - An account is a human-readable identifier that is stored on the blockchain. Account creations is done by transaction, so you should have existing account to create new account. (or, you can use external services to create EOS.IO account)
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
owner key & active key
owner key symbolizes ownership of an account. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active key is used for transferring funds, voting for producers and making other high-level account changes.
wallet & account
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
cleos wallet import
to sign transaction. - An account is a human-readable identifier that is stored on the blockchain. Account creations is done by transaction, so you should have existing account to create new account. (or, you can use external services to create EOS.IO account)
- A wallet is software that protects and makes use of your keys. It is stored in your local storage and you can add your keys by
owner key & active key
owner key symbolizes ownership of an account. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active key is used for transferring funds, voting for producers and making other high-level account changes.
answered Aug 9 at 4:54
conr2d
442
442
add a comment |Â
add a comment |Â
up vote
1
down vote
What exactly is the difference between wallet create and account create?
Wallet create is the code to create a wallet for you. Wallets are used to store private keys of your accounts.
eg:
cleos wallet create -n mywallet
You can create an account using the following command. This is the latest way of creating an account as per developer portal. The account create
command is deprecated, that may be the reason you got error.
cleos system newaccount [OPTIONS] creator name OwnerKey [ActiveKey]
There are a number of options available to add it with this command like stake-net,stake-cpu etc.
what is the owner key vs the active key?
From the developer portal, we could find its definition as follows,
Every account has two native named permissions
owner authority symbolizes ownership of an account. There are only a few transactions that require this authority, but most notably, are actions that make any kind of change to the owner authority. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active authority is used for transferring funds, voting for producers and making other high-level account changes.
Simply, the owner key has a higher privilege than the active key.
add a comment |Â
up vote
1
down vote
What exactly is the difference between wallet create and account create?
Wallet create is the code to create a wallet for you. Wallets are used to store private keys of your accounts.
eg:
cleos wallet create -n mywallet
You can create an account using the following command. This is the latest way of creating an account as per developer portal. The account create
command is deprecated, that may be the reason you got error.
cleos system newaccount [OPTIONS] creator name OwnerKey [ActiveKey]
There are a number of options available to add it with this command like stake-net,stake-cpu etc.
what is the owner key vs the active key?
From the developer portal, we could find its definition as follows,
Every account has two native named permissions
owner authority symbolizes ownership of an account. There are only a few transactions that require this authority, but most notably, are actions that make any kind of change to the owner authority. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active authority is used for transferring funds, voting for producers and making other high-level account changes.
Simply, the owner key has a higher privilege than the active key.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
What exactly is the difference between wallet create and account create?
Wallet create is the code to create a wallet for you. Wallets are used to store private keys of your accounts.
eg:
cleos wallet create -n mywallet
You can create an account using the following command. This is the latest way of creating an account as per developer portal. The account create
command is deprecated, that may be the reason you got error.
cleos system newaccount [OPTIONS] creator name OwnerKey [ActiveKey]
There are a number of options available to add it with this command like stake-net,stake-cpu etc.
what is the owner key vs the active key?
From the developer portal, we could find its definition as follows,
Every account has two native named permissions
owner authority symbolizes ownership of an account. There are only a few transactions that require this authority, but most notably, are actions that make any kind of change to the owner authority. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active authority is used for transferring funds, voting for producers and making other high-level account changes.
Simply, the owner key has a higher privilege than the active key.
What exactly is the difference between wallet create and account create?
Wallet create is the code to create a wallet for you. Wallets are used to store private keys of your accounts.
eg:
cleos wallet create -n mywallet
You can create an account using the following command. This is the latest way of creating an account as per developer portal. The account create
command is deprecated, that may be the reason you got error.
cleos system newaccount [OPTIONS] creator name OwnerKey [ActiveKey]
There are a number of options available to add it with this command like stake-net,stake-cpu etc.
what is the owner key vs the active key?
From the developer portal, we could find its definition as follows,
Every account has two native named permissions
owner authority symbolizes ownership of an account. There are only a few transactions that require this authority, but most notably, are actions that make any kind of change to the owner authority. Generally, it is suggested that owner is kept in cold storage and not shared with anyone. owner can be used to recover another permission that may have been compromised.
active authority is used for transferring funds, voting for producers and making other high-level account changes.
Simply, the owner key has a higher privilege than the active key.
edited Aug 9 at 5:01
answered Aug 9 at 4:51


Blockchain Experts
988
988
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2feosio.stackexchange.com%2fquestions%2f1896%2fwhat-is-the-difference-between-wallet-create-and-create-account%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
you probably never created
trevoro1
account so you don't have their permission to create a new account using them as a creator– confused00
Aug 9 at 8:26