Account Management
Wallet Account Management
Some interfaces that interact with the chain have been encapsulated by web3
to facilitate our DApp
development. Via theses web3
encapsulated interfaces, we can use different languages to interact with KIC
. This article elaborates on how to use JavaScript
and Python
to manage accounts on KIC
through Web3
.
Create instances of web3
web3
Javascript
Mostly, javascript
uses databaseweb3.js
to interact with KIC
.
Connect to Mainnet
Connect to Testnet
Python3
Mostly, python
uses packageWeb3.py
to interact with KIC
.
Connect to Mainnet
Connect to Testnet
Create an Account
After instantiating web3
, you can return a random account with the following call:
Javascript
Python3
Recover Account Via Private Key
You can also recover your account on KIC
directly through web3
if you have access to your private key.
Javascript
Python3
Last updated