Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Typos correction #59

Closed
wants to merge 18 commits into from
6 changes: 3 additions & 3 deletions docs/advanced/multichain/polkadot/namespaces-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ An example Proposal Namespace for a dapp which supports connecting to Polkadot,
],
"methods": [
"polkadot_signMessage",
"polkadot_signTransaction"
"polkadot_getSignedHex",
"polkadot_signTransaction",
"polkadot_getSignedHex"
],
"events": ["accountsChanged"],
"events": ["accountsChanged"]
}
}

Expand Down
4 changes: 2 additions & 2 deletions docs/advanced/multichain/polkadot/wallet-integration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

```js
import { Core } from '@walletconnect/core'
import { WalletKit } from '@walletconnect/wallekit'
import { WalletKit } from '@walletconnect/walletkit'
```

3. Instantiate and add Core and WalletKit to the state of the wallet.
Expand Down Expand Up @@ -80,7 +80,7 @@ walletKit.on('session_proposal', async proposal => {
accounts: walletConnectAccounts,
methods: ['polkadot_signTransaction', 'polkadot_signMessage'],
chains: ['polkadot:91b171bb158e2d3848fa23a9f1c25182'],
events: ['chainChanged", "accountsChanged']
events: ['chainChanged', 'accountsChanged']
}
}
})
Expand Down
10 changes: 5 additions & 5 deletions docs/advanced/multichain/rpc-reference/cosmos-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ This method returns a signature for the provided document to be signed targeting
1.1. `signerAddress` : `STRING` - corresponding address for keypair
1.2. `signDoc` : `Object` - Document to be signed:
1.2.2. `chainId` : `STRING` - identifier of blockchain
1.2.1. `accountNumber` : `STRING` - blockchain account number
1.2.1. `account_number` : `STRING` - blockchain account number
1.2.3. `authInfoBytes` : `DATA` - encoded authentication information
1.2.4. `bodyBytes` : `DATA` - encoded body of message to sign

Expand Down Expand Up @@ -85,7 +85,7 @@ This method returns a signature for the provided document to be signed targeting
"signerAddress": "cosmos1sguafvgmel6f880ryvq8efh9522p8zvmrzlcrq",
"signDoc": {
"chainId": "cosmoshub-4",
"accountNumber": "1"
"account_number": "1",
"authInfoBytes": "CgoKABIECgIIARgBEhMKDQoFdWNvc20SBDIwMDAQwJoM",
"bodyBytes": "CpABChwvY29zbW9zLmJhbmsudjFiZXRhMS5Nc2dTZW5kEnAKLWNvc21vczFwa3B0cmU3ZmRrbDZnZnJ6bGVzamp2aHhobGMzcjRnbW1rOHJzNhItY29zbW9zMXF5cHF4cHE5cWNyc3N6ZzJwdnhxNnJzMHpxZzN5eWM1bHp2N3h1GhAKBXVjb3NtEgcxMjM0NTY3"
}
Expand All @@ -106,7 +106,7 @@ This method returns a signature for the provided document to be signed targeting
},
"signed": {
"chainId": "cosmoshub-4",
"accountNumber": "1"
"accountNumber": "1",
"authInfoBytes": "CgoKABIECgIIARgBEhMKDQoFdWNvc20SBDIwMDAQwJoM",
"bodyBytes": "CpABChwvY29zbW9zLmJhbmsudjFiZXRhMS5Nc2dTZW5kEnAKLWNvc21vczFwa3B0cmU3ZmRrbDZnZnJ6bGVzamp2aHhobGMzcjRnbW1rOHJzNhItY29zbW9zMXF5cHF4cHE5cWNyc3N6ZzJwdnhxNnJzMHpxZzN5eWM1bHp2N3h1GhAKBXVjb3NtEgcxMjM0NTY3"
}
Expand Down Expand Up @@ -175,7 +175,7 @@ This method returns a signature for the provided document to be signed targeting
"signDoc": {
"chain_id": "foochain",
"account_number": "7",
"sequence": "54"
"sequence": "54",
"memo": "hello, world",
"msgs": [],
"fee": { "amount": [], "gas": "23" }
Expand All @@ -198,7 +198,7 @@ This method returns a signature for the provided document to be signed targeting
"signed": {
"chain_id": "foochain",
"account_number": "7",
"sequence": "54"
"sequence": "54",
"memo": "hello, world",
"msgs": [],
"fee": { "amount": [{"denom": "ufoo", "amount": "10000"}], "gas": "23" }
Expand Down
8 changes: 4 additions & 4 deletions docs/advanced/multichain/rpc-reference/everscale-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Message that can then be sent to the blockchain.
##### Returns:

1. signedExtMessage - signed external message;
2. expireAt - мessage expiration timestamp
2. expireAt - message expiration timestamp

##### Example:

Expand All @@ -122,7 +122,7 @@ Message that can then be sent to the blockchain.
{
"id": 1,
"jsonrpc": "2.0",
"method": "ever_processMessage",
"method": "ever_signMessage",
"params": {
"source_address": "0:695e42...b8d",
"value": 1000000000,
Expand Down Expand Up @@ -210,7 +210,7 @@ Sends an internal message from the user account without waiting for the transact

1. hash: string - external message hash;
2. account: string - destination account address (equals to source_address);
3. expireAt: number - мessage expiration timestamp
3. expireAt: number - message expiration timestamp

##### Example:

Expand Down Expand Up @@ -261,7 +261,7 @@ Sends an external message to the contract without waiting for the transaction.

1. hash: string - external message hash;
2. account: string - destination account address (equals to source_address);
3. expireAt: number - мessage expiration timestamp
3. expireAt: number - message expiration timestamp

##### Example:

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/multichain/rpc-reference/hedera-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ This method accepts a plain text string value as input. If approved by the user,
"jsonrpc": "2.0",
"method": "hedera_signMessage",
"params": {
"signerAccountId": "hedera:testnet:0.0.12345"
"signerAccountId": "hedera:testnet:0.0.12345",
"message": "Co8BKowBCocBChoKDAjchKWmBhDW..."
}
}
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/multichain/rpc-reference/litecoin-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The example below specifies a simple transfer of 1.23 LTC (123000000 Litoshi).
"method": "sendTransfer",
"params": {
"account": "ltc1q8c6fshw2dlwun7ekn9qwf37cu2rn755u9ym7p0",
"recipient": "ltc1qn9h77dt0s6ar78ptxq58t2ne7tyhvfnruc3e7d",
"recipientAddress": "ltc1qn9h77dt0s6ar78ptxq58t2ne7tyhvfnruc3e7d",
"amount": "123000000",
"memo": "636861726c6579206c6f766573206865"
}
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/multichain/rpc-reference/solana-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This method returns an Array of public keys available to sign from the wallet.
{
"id": 1,
"jsonrpc": "2.0",
"method": "solana_getAccounts",
"method": "solana_requestAccounts",
"params": {}
}

Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/multichain/rpc-reference/starknet-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ account, message
"accountAddress" : "0x003a8278a26f32452f156260d81b93efb0eca126b44df7b005a5b27e2bbc4a64",
"typedData" : {
"types" : {
"StarkNetDomain ": [
"StarkNetDomain": [
{ "name" : "name", "type" : "felt" },
{ "name" : "version", "type" : "felt" },
{ "name" : "chainId", "type" : "felt" }
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/walletconnect-deprecations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ For guidance on how to update your implementation, please see [React Native AppK
- **Packages**
- `Web3Wallet` deprecated in favor of `ReownWalletKit`
- `Web3Modal` deprecated in favor of `ReownAppKit`
- `WalletConnectRouter` deprecated in favor of`ReownRouter`
- `WalletConnectRouter` deprecated in favor of `ReownRouter`

**Repositories**

Expand Down
2 changes: 1 addition & 1 deletion docs/cloud/chains/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The WalletConnect protocol is multi-chain by design. By using the [CAIP-25 stand
**It is still up to wallets and dapps to provide concrete support for your chain once it is listed as part of the Explorer.**
:::

If you don't see your chain listed in this [list](./chain-list.mdx), then you will need to create an issue in GitHub to to get the process started.
If you don't see your chain listed in this [list](./chain-list.mdx), then you will need to create an issue in GitHub to get the process started.
You can do so by clicking [here](https://github.com/WalletConnect/walletconnect-monorepo/issues/new?assignees=&labels=type%3A+new+chain+request&template=new_chain_to_explorer.md&title=). Once your chain is added to this list, wallets & dapps will be able to indicate support for your chain via WalletConnect's [Cloud](https://cloud.reown.com).

## CASA
Expand Down
2 changes: 1 addition & 1 deletion docs/walletkit/android/best-practices.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ While pairing the following errors might occur:
- Pairing expired error when scanning a QR code with expired pairing
- User should refresh a QR code and scan again
- Pairing with existing pairing is not allowed
- User should refresh a QR code and scan again. I usually happens when user scans an already paired QR code.
- User should refresh a QR code and scan again. It usually happens when user scans an already paired QR code.

## Session Proposal

Expand Down
2 changes: 1 addition & 1 deletion docs/walletkit/web/best-practices.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ While pairing the following errors might occur:
- Pairing expired error when scanning a QR code with expired pairing
- User should refresh a QR code and scan again
- Pairing with existing pairing is not allowed
- User should refresh a QR code and scan again. I usually happens when user scans an already paired QR code.
- User should refresh a QR code and scan again. It usually happens when user scans an already paired QR code.

## Session Proposal

Expand Down