You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: STYLE_GUIDE.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Great documentation is simple and to the point. It should aim to convey more mea
21
21
22
22
- To be clear and inclusive, avoid using jargon and obscure words where possible.
23
23
- Limit the number of clauses in a sentence and make sure that your points are structured.
24
-
- Avoid qualifying language, which is ~~quite~~ often ~~completely~~uneccessary.
24
+
- Avoid qualifying language, which is ~~quite~~ often ~~completely~~unnecessary.
25
25
- Information should be simply organized and easy to find.
26
26
27
27
### Self-explanatory
@@ -34,7 +34,7 @@ Great documentation is self-explanatory. Documentation shouldn't need more docum
34
34
The Sei Docs are structured using the [Nextra](https://nextra.site). Are a guideline, we have split the pages by target audience.
35
35
36
36
### General
37
-
Docs in these section describe Sei and topics that are applicable to all audiences. This is general information that is not specfic to users or developers. Information here is meant to be as layman as possible and should be understandable by everyone.
37
+
Docs in these section describe Sei and topics that are applicable to all audiences. This is general information that is not specific to users or developers. Information here is meant to be as layman as possible and should be understandable by everyone.
38
38
39
39
Information here might include:
40
40
- What is Sei?
@@ -167,7 +167,7 @@ When code blocks are used, they should always be prettified by specifying the la
167
167
168
168
When writing code blocks, avoid
169
169
1. Creating large code blocks. Break your code into smaller, more digestible pieces.
170
-
2. Writing too much documentation in between lines. If neccessary, break the code block up and add text to explain each code block instead.
170
+
2. Writing too much documentation in between lines. If necessary, break the code block up and add text to explain each code block instead.
171
171
172
172
For tutorials, the goal should be to write code blocks that can be directly copied and used by the reader.
Copy file name to clipboardExpand all lines: pages/dev-advanced-concepts/wallet-association.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ next: true
7
7
Wallet association on the Sei network ensures the public key becomes known to the chain. Without this step, the chain cannot determine the Bech32 (`sei...`) address or the EVM-compatible (`0x...`) address from one another.
8
8
9
9
10
-
Below are **4 distinct methods** for associating a wallet along with relevant defitnitions. Each method differs in terms of security considerations and required actions.
10
+
Below are **4 distinct methods** for associating a wallet along with relevant definitions. Each method differs in terms of security considerations and required actions.
Copy file name to clipboardExpand all lines: pages/dev-ecosystem-providers/indexers/goldrush.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ on each for an address.
45
45
46
46
There are 4 primary developer tools for using the APIs:
47
47
48
-
1.[GoldRush APIs](https://goldrush.dev/docs/api) - enteprise-grade REST APIs to use with any programming language. Switch blockchains with one path parameter.
48
+
1.[GoldRush APIs](https://goldrush.dev/docs/api) - enterprise-grade REST APIs to use with any programming language. Switch blockchains with one path parameter.
49
49
50
50
```sh
51
51
curl -X GET https://api.covalenthq.com/v1/sei-mainnet/address/0x6d68A318D0632f7B9Ce9d6757Dea0e9dE19D7CCA/balances_v2/ \
Copy file name to clipboardExpand all lines: pages/dev-interoperability.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ import interoperability from '../public/assets/interoperability.png';
6
6
7
7
EVM and CosmWasm based smart contracts co-exist on Sei, but live in different execution environments.
8
8
This creates a challenge for users, who use wallets that typically only support a single execution environment.
9
-
Likewise for devlelopers, existing tooling and libraries can only interact with either EVM or Wasm (Think EthersJS vs CosmJS).
9
+
Likewise for developers, existing tooling and libraries can only interact with either EVM or Wasm (Think EthersJS vs CosmJS).
10
10
11
11
To bridge the gap between EVM and Wasm, Sei has introduced two interoperability features, allowing for smooth and easy interactions between both environments.
12
12
Precompiled EVM contracts and Pointer Contracts enable all contracts to be accessible from both VM environments.
0 commit comments