> For the complete documentation index, see [llms.txt](https://docs.bosagora.org/kr/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bosagora.org/kr/tools/wallets/key-management.md).

# Key Management

이 문서는 Agora(BizNet)에서 분산된 애플리케이션의 클라이언트측 키 관리 전략에 대한 가이드입니다.

### **Web3 설정하기**

`web3.js`는 클라이언트 측 애플리케이션이 블록체인과 대화할 수 있도록 하는 자바스크립트 라이브러리입니다. 메타마스크를 통해 통신할 수 있도록 web3를 구성하여야 합니다.

`web3.js` 에 대한 자세한 설명은 [이곳](https://web3js.readthedocs.io/en/v1.2.2/getting-started.html#adding-web3-js) 을 참조해 주십시오.

### **BizNet에 연결하기**

```javascript
// mainnet 
const web3 = new Web3('https://mainnet.bosagora.org');
// testnet
const web3 = new Web3('https://testnet.bosagora.org');
```

### **계정 설정하기**

web3의 설치 및 인스턴스화에 성공하였다면, 아래 코드는 임의의 계정을 리턴하는 것입니다.

```javascript
const account = web3.eth.accounts.create();
```

### **계정 복구하기**

계정의 개인 키를 백업한 경우 그 개인키를 사용하여 계정을 복원할 수 있습니다.

```javascript
const account = web3.eth.accounts.privateKeyToAccount("$private-key")
```

### **전체코드**

```javascript
const Web3 = require('web3');
async function main() {

	const web3 = new Web3('https://mainnet.bosagora.org');
    const loader = setupLoader({ provider: web3 }).web3;

    const account = web3.eth.accounts.create();
    console.log(account);
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bosagora.org/kr/tools/wallets/key-management.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
