Skip to content

Commit efeb5b6

Browse files
lijiang2087gitbook-bot
authored andcommitted
GitBook: [master] 344 pages and 9 assets modified
1 parent 8a5caa7 commit efeb5b6

13 files changed

+20
-24
lines changed

.gitbook/assets/image (183).png

68.5 KB
Loading

README.md

+2-6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ description: To Scale Trust and Create A Radically Fair Economy
66

77
Harmony is an open and fast blockchain. Our mainnet runs Ethereum applications with 2-second transaction finality and 1000 times lower fees.
88

9-
Harmony is your open platform for assets, collectibles, identity, governance. Our secure bridges offer cross-chain asset transfers with Ethereum, Binance and 3 other chains.
10-
9+
Harmony is your open platform for assets, collectibles, identity, governance. Our secure bridges offer cross-chain asset transfers with Ethereum, Binance and 3 other chains.
1110

1211
## Build on Harmony
1312

@@ -17,15 +16,12 @@ This Gitbook document has introduction and resources for all audience:
1716
* **🏗️** [Developers](https://docs.harmony.one/home/developers/getting-started) - web3 toolkits, deploy tutorials, open bounties, hackathon prizes.
1817
* **🌏** [Network](https://docs.harmony.one/home/network/wallets) - token wallets, delegator economics, validator setup, governance dao.
1918

20-
2119
## Bridge to All Chains
2220

2321
Visit [open.harmony.one](https://open.harmony.one) for our _Open Development_:
2422

2523
* **🔥** [Grants](https://harmony.one/grants) – $300M+ on Bounties, Grants & DAOs
2624
* **💎** [NFT](https://harmony.one/nft) – $13M Grants & Bounties on NFT
2725
* **💰** [Wallets](https://harmony.one/wallets) – $20M Grants & Bounties on Wallets
28-
* **💪** [Roadmap](https://harmony.one/roadmap) – Strategy & Launch Dates on Adoption
29-
30-
26+
* **💪** [Roadmap](https://harmony.one/roadmap) – Strategy & Launch Dates on Adoption
3127

SUMMARY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
* [Harmony Chrome Extension Wallet](developers/wallets/onewallet/README.md)
167167
* [Introduction](developers/wallets/onewallet/introduction.md)
168168
* [Project Setup](developers/wallets/onewallet/project-setup-1.md)
169-
* [Interacting with One Wallet](developers/wallets/onewallet/interacting-with-one-wallet.md)
169+
* [Interacting with Harmony Chrome Extension Wallet](developers/wallets/onewallet/interacting-with-one-wallet.md)
170170
* [Using One Wallet with Smart Contracts](developers/wallets/onewallet/using-one-wallet-with-smart-contracts.md)
171171
* [Security Audit](developers/wallets/onewallet/security-audit.md)
172172
* [Math Wallet](developers/wallets/mathwallet.md)
@@ -240,7 +240,7 @@
240240
* [Other CLI References](network/wallets/harmony-cli/other-cli-references.md)
241241
* [Browser Extension Wallets](network/wallets/browser-extensions-wallets/README.md)
242242
* [Metamask](network/wallets/browser-extensions-wallets/metamask-wallet.md)
243-
* [ONE Wallet](network/wallets/browser-extensions-wallets/one-wallet.md)
243+
* [Harmony Chrome Extension Wallet](network/wallets/browser-extensions-wallets/one-wallet.md)
244244
* [Math Wallet](network/wallets/browser-extensions-wallets/mathwallet/README.md)
245245
* [Download & Setup](network/wallets/browser-extensions-wallets/mathwallet/download-and-setup.md)
246246
* [Create/Import/Export Wallet](network/wallets/browser-extensions-wallets/mathwallet/create-import-wallet.md)

developers/harmony-stack.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This is a living document and we are relying on our community to contribute to i
1919

2020
The Harmony Tech Stack consists of the **open-source** technologies contributing to and relying on [Harmony](https://harmony.one). It is meant to be used for decentralized application \(Dapp\) development within numerous verticals including DeFi, Gaming, Provenance and many others not pictured below.
2121

22-
![Harmony Ecosystem](../.gitbook/assets/ecosystem_20.6.2021%20copy%20%281%29%20%281%29%20%281%29.png)
22+
![Harmony Ecosystem](../.gitbook/assets/ecosystem_20.6.2021%20copy%20%281%29%20%281%29%20%281%29%20%281%29.png)
2323

2424
## Layers of Harmony Stack
2525

developers/sdk/web3/find-the-last-transaction.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Find the last transaction
22

3-
### Introduction <a id="introduction"></a>
3+
## Introduction <a id="introduction"></a>
44

55
This guide walks through the process of using [web3.js](https://web3js.readthedocs.io/) to get last block and get last transaction.
66

@@ -10,7 +10,7 @@ For this example, we will use Node.js and straightforward JavaScript code.
1010
This example assumes that you have configured Web3 as described in the previous section.
1111
{% endhint %}
1212

13-
#### Get Block Number
13+
### Get Block Number
1414

1515
```javascript
1616
const lastBlockNumber = await web3.eth.getBlockNumber();
@@ -22,7 +22,7 @@ console.log('Last block hash: ', block.hash);
2222
console.log('Last block transactions: ', block.transactions);
2323
```
2424

25-
#### Get Last Transaction
25+
### Get Last Transaction
2626

2727
```javascript
2828
block = await web3.eth.getBlock(blockNumber);

developers/wallets/onewallet/interacting-with-one-wallet.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
2-
description: This section covers how to interact with one wallet extension.
2+
description: This section covers how to interact with Harmony Chrome Extension Wallet
33
---
44

5-
# Interacting with One Wallet
5+
# Interacting with Harmony Chrome Extension Wallet
66

77
> We are assuming here that you are following the same setup as mentioned in the previous section.
88
@@ -23,13 +23,13 @@ async function initWallet(){
2323

2424
Here we have simply attached a "click" listener before initiating code to interact with the Wallet.
2525

26-
### Detecting one wallet and interacting with it.
26+
### Detecting Harmony Chrome Extension Wallet and interacting with it.
2727

28-
When user loads a page, one wallet automatically inject a `onewallet` object into the `window` object of your browser. We use this to interact with the same.
28+
When user loads a page, Harmony Chrome Extension Wallet automatically inject a `onewallet` object into the `window` object of your browser. We use this to interact with the same.
2929

3030
> In our example, following code is implemented in `src/userWallet.js`
3131
32-
Object to interact with one wallet can be accessed sing the following.
32+
Object to interact with Harmony Chrome Extension Wallet can be accessed sing the following.
3333

3434
```text
3535
const isOneWallet = window.onewallet && window.onewallet.isOneWallet;
@@ -82,7 +82,7 @@ export default userStore
8282

8383
### Congratulations !!
8484

85-
You can now successfully interact with the one wallet browser extension.
85+
You can now successfully interact with the Harmony Chrome Extension Wallet.
8686

8787
For more examples checkout this [link](https://github.com/harmony-one/sdk/tree/master/packages/harmony-core).
8888

general/ecosystem/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Harmony team is focused on delivering a strong foundation for our network an
44

55
Our current ecosystem map as of June 2021:
66

7-
![](../../.gitbook/assets/ecosystem_20.6.2021%20copy%20%281%29%20%281%29%20%281%29%20%281%29.png)
7+
![](../../.gitbook/assets/ecosystem_20.6.2021%20copy%20%281%29%20%281%29%20%281%29%20%281%29%20%281%29.png)
88

99
See below our 2020 Year in Review & Ecosystem Growth:
1010

network/wallets/browser-extensions-wallets/metamask-wallet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ In order to configure Metamask with Binance Smart Chain \(BSC\) check the docume
107107

108108
The example below shows the configuration that needs to be done to connect to Harmony Mainnet on Shard 0:
109109

110-
![](../../../.gitbook/assets/image%20%28294%29%20%281%29%20%282%29%20%282%29%20%281%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%283%29%20%282%29.png)
110+
![](../../../.gitbook/assets/image%20%28294%29%20%281%29%20%282%29%20%282%29%20%281%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%282%29%20%283%29%20%283%29%20%282%29.png)
111111

112112
Click now on the Save button and your configuration should be done!
113113

Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# ONE Wallet
1+
# Harmony Chrome Extension Wallet
22

3-
## **Step 1: Install the ONE Wallet Extension**
3+
## **Step 1: Install the Harmony Chrome Extension Wallet**
44

55
![](../../../.gitbook/assets/image%20%28245%29.png)
66

7-
Download the [Harmony ONE Wallet](https://chrome.google.com/webstore/detail/harmony-one-wallet/fnnegphlobjdpkhecapkijjdkgcjhkib) from the Chrome Store.
7+
Download the [Harmony Chrome Extension Wallet](https://chrome.google.com/webstore/detail/harmony-one-wallet/fnnegphlobjdpkhecapkijjdkgcjhkib) from the Chrome Store.
88

9-
![](../../../.gitbook/assets/one_wallet_install.png)
9+
![](../../../.gitbook/assets/image%20%28183%29.png)
1010

0 commit comments

Comments
 (0)