diff --git a/src/pages/architecture/modules/fungible/messages.md b/src/pages/architecture/modules/fungible/messages.md index ce624844e..3b1f96b39 100644 --- a/src/pages/architecture/modules/fungible/messages.md +++ b/src/pages/architecture/modules/fungible/messages.md @@ -79,7 +79,7 @@ can be updated IMPORTANT: the new contract bytecode must have the same storage layout as the old contract bytecode the new contract can add new variable but cannot remove any existing variable -Authozied: admin policy group 2 +Authorized: admin policy group 2 ```proto message MsgUpdateContractBytecode { diff --git a/src/pages/developers/architecture/modules/fungible/messages.mdx b/src/pages/developers/architecture/modules/fungible/messages.mdx index 0da3e392a..33a35d2a2 100644 --- a/src/pages/developers/architecture/modules/fungible/messages.mdx +++ b/src/pages/developers/architecture/modules/fungible/messages.mdx @@ -81,7 +81,7 @@ can be updated IMPORTANT: the new contract bytecode must have the same storage layout as the old contract bytecode the new contract can add new variable but cannot remove any existing variable -Authozied: admin policy group 2 +Authorized: admin policy group 2 ```proto message MsgUpdateContractBytecode { diff --git a/src/pages/developers/architecture/modules/observer/messages.mdx b/src/pages/developers/architecture/modules/observer/messages.mdx index 0e6328534..b1290d666 100644 --- a/src/pages/developers/architecture/modules/observer/messages.mdx +++ b/src/pages/developers/architecture/modules/observer/messages.mdx @@ -69,7 +69,7 @@ message MsgAddBlameVote { UpdateCrosschainFlags updates the crosschain related flags. -Aurthorized: admin policy group 1 (except enabling/disabled +Authorized: admin policy group 1 (except enabling/disabled inbounds/outbounds and gas price increase), admin policy group 2 (all). ```proto diff --git a/src/pages/developers/architecture/protocol/contracts/zevm/GatewayZEVM.sol/contract.GatewayZEVM.md b/src/pages/developers/architecture/protocol/contracts/zevm/GatewayZEVM.sol/contract.GatewayZEVM.md index 180fb3583..efbd690b9 100644 --- a/src/pages/developers/architecture/protocol/contracts/zevm/GatewayZEVM.sol/contract.GatewayZEVM.md +++ b/src/pages/developers/architecture/protocol/contracts/zevm/GatewayZEVM.sol/contract.GatewayZEVM.md @@ -230,7 +230,7 @@ function withdrawAndCall( |`amount`|`uint256`|The amount of tokens to withdraw.| |`zrc20`|`address`|The address of the ZRC20 token.| |`message`|`bytes`|The calldata to pass to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| @@ -284,7 +284,7 @@ function call( |`receiver`|`bytes`|The receiver address on the external chain.| |`zrc20`|`address`|Address of zrc20 to pay fees.| |`message`|`bytes`|The calldata to pass to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| diff --git a/src/pages/developers/architecture/protocol/contracts/zevm/ZRC20.sol/contract.ZRC20.md b/src/pages/developers/architecture/protocol/contracts/zevm/ZRC20.sol/contract.ZRC20.md index 22b4de914..3bdff35eb 100644 --- a/src/pages/developers/architecture/protocol/contracts/zevm/ZRC20.sol/contract.ZRC20.md +++ b/src/pages/developers/architecture/protocol/contracts/zevm/ZRC20.sol/contract.ZRC20.md @@ -447,7 +447,7 @@ function withdrawGasFeeWithGasLimit(uint256 gasLimit) public view override retur ### withdraw -*Withraws ZRC20 tokens to external chains, this function causes cctx module to send out outbound tx to the +*Withdraws ZRC20 tokens to external chains, this function causes cctx module to send out outbound tx to the outbound chain this contract should be given enough allowance of the gas ZRC20 to pay for outbound tx gas fee.* diff --git a/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVM.md b/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVM.md index d74d541d9..5e99bf491 100644 --- a/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVM.md +++ b/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVM.md @@ -82,7 +82,7 @@ function withdrawAndCall( |`amount`|`uint256`|The amount of tokens to withdraw.| |`zrc20`|`address`|The address of the ZRC20 token.| |`message`|`bytes`|The calldata to pass to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| @@ -110,7 +110,7 @@ function withdrawAndCall( |`amount`|`uint256`|The amount of tokens to withdraw.| |`chainId`|`uint256`|Chain id of the external chain.| |`message`|`bytes`|The calldata to pass to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| @@ -136,7 +136,7 @@ function call( |`receiver`|`bytes`|The receiver address on the external chain.| |`zrc20`|`address`|Address of zrc20 to pay fees.| |`message`|`bytes`|The calldata to pass to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| diff --git a/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVMEvents.md b/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVMEvents.md index 8e4ec55ba..15acf950b 100644 --- a/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVMEvents.md +++ b/src/pages/developers/architecture/protocol/contracts/zevm/interfaces/IGatewayZEVM.sol/interface.IGatewayZEVMEvents.md @@ -28,7 +28,7 @@ event Called( |`zrc20`|`address`|Address of zrc20 to pay fees.| |`receiver`|`bytes`|The receiver address on the external chain.| |`message`|`bytes`|The calldata passed to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| ### Withdrawn @@ -62,7 +62,7 @@ event Withdrawn( |`gasfee`|`uint256`|The gas fee for the withdrawal.| |`protocolFlatFee`|`uint256`|The protocol flat fee for the withdrawal.| |`message`|`bytes`|The calldata passed with the withdraw. No longer used. Kept to maintain compatibility.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| ### WithdrawnAndCalled @@ -96,6 +96,6 @@ event WithdrawnAndCalled( |`gasfee`|`uint256`|The gas fee for the withdrawal.| |`protocolFlatFee`|`uint256`|The protocol flat fee for the withdrawal.| |`message`|`bytes`|The calldata passed to the contract call.| -|`callOptions`|`CallOptions`|Call options including gas limit and arbirtrary call flag.| +|`callOptions`|`CallOptions`|Call options including gas limit and arbitrary call flag.| |`revertOptions`|`RevertOptions`|Revert options.| diff --git a/src/pages/developers/architecture/zetacored/zetacored_export.md b/src/pages/developers/architecture/zetacored/zetacored_export.md index a737712ff..313a930bd 100644 --- a/src/pages/developers/architecture/zetacored/zetacored_export.md +++ b/src/pages/developers/architecture/zetacored/zetacored_export.md @@ -9,7 +9,7 @@ zetacored export [flags] ### Options ``` - --for-zero-height Export state to start at height zero (perform preproccessing) + --for-zero-height Export state to start at height zero (perform preprocessing) --height int Export state from a particular height (-1 means latest height) (default -1) -h, --help help for export --home string The application home directory diff --git a/src/pages/developers/services/goldsky.mdx b/src/pages/developers/services/goldsky.mdx index 60e14f7ca..fcf125b23 100644 --- a/src/pages/developers/services/goldsky.mdx +++ b/src/pages/developers/services/goldsky.mdx @@ -206,10 +206,9 @@ npx hardhat cctx 0xb4318f04329d6ddd398b11ccba40d0404e1872494a054fb382267e2f1de16 ``` ``` -CCCTXs on ZetaChain found. +CCTXs on ZetaChain found. -✓ 0xf5fbf1ba190e074c64adaba044e2c4f6724aeebe70ca01b0998919d0b1059338: 80001 → 7001: OutboundMined (Remote omnichain cont -ract call completed) +✓ 0xf5fbf1ba190e074c64adaba044e2c4f6724aeebe70ca01b0998919d0b1059338: 80001 → 7001: OutboundMined (Remote omnichain contract call completed) ⠏ 0xa0cfd783f991bd060239193082594dd3fe5ae239e97b8baaa0a303ee6ba6ba79: 7001 → 18332: PendingOutbound ``` diff --git a/src/pages/developers/services/particle.mdx b/src/pages/developers/services/particle.mdx index 4a3a87a01..828ae399f 100644 --- a/src/pages/developers/services/particle.mdx +++ b/src/pages/developers/services/particle.mdx @@ -29,7 +29,7 @@ Main components of the Particle Network stack: - Account abstraction (AA) - [Bundler](https://particlenetwork.readme.io/docs/bundler). As apart of the AA stack Particle Network offers an open-source Bundler in which all - "useroOperations" are constructed and sent. + "userOperations" are constructed and sent. - [Paymaster](https://particlenetwork.readme.io/docs/paymaster). Alongside the Bundler, Particle Network also offers a paymaster for multi-chain gas sponsorship. diff --git a/src/pages/developers/tutorials/testnet.mdx b/src/pages/developers/tutorials/testnet.mdx index 12ee101ee..cdd94bafb 100644 --- a/src/pages/developers/tutorials/testnet.mdx +++ b/src/pages/developers/tutorials/testnet.mdx @@ -131,7 +131,7 @@ If the faucet is throwing an error, delete the `access_token` file from the project and try again. In addition to ZETA tokens on ZetaChain, you might need tokens on connected -blockchains like Ethereun, BNB and Bitcoin testnets. +blockchains like Ethereum, BNB and Bitcoin testnets. - https://www.bnbchain.org/en/testnet-faucet - https://www.alchemy.com/faucets/ethereum-sepolia diff --git a/src/pages/nodes/start-here/syncing.mdx b/src/pages/nodes/start-here/syncing.mdx index 7a1525cf6..3dd104668 100644 --- a/src/pages/nodes/start-here/syncing.mdx +++ b/src/pages/nodes/start-here/syncing.mdx @@ -100,7 +100,7 @@ printing `INF` logs like these: 4:10AM INF executed block height=3468229 module=state num_invalid_txs=1 num_valid_txs=24 server=node 4:10AM INF commit synced commit=436F6D6D697449447B5B3139332032323120323438203430203230 4:10AM INF committed state app_hash=C1DDF828CB4126E8239D92FB57006D978664911BF75FDB2606804083C4F65354 height=3468229 -4:10AM INF indexed block exents height=3468229 module=txindex server=node +4:10AM INF indexed block events height=3468229 module=txindex server=node 4:11AM INF Timed out dur=4468.382473 height=3468230 module=consensus round=0 server=node step=1 ``` diff --git a/src/pages/reference/apps/get-testnet-zeta.mdx b/src/pages/reference/apps/get-testnet-zeta.mdx index f6a84e73a..90cf7072c 100644 --- a/src/pages/reference/apps/get-testnet-zeta.mdx +++ b/src/pages/reference/apps/get-testnet-zeta.mdx @@ -27,7 +27,7 @@ provided below. ### Using the ZetaChain CLI faucet The easiest way to get testnet ZETA is to use the ZetaChain CLI faucet. You can -install the CLI by following the instructions (you may need `sudo` priveleges): +install the CLI by following the instructions (you may need `sudo` privileges): ``` npm install -g @zetachain/faucet-cli @@ -94,7 +94,7 @@ instructions provided in the `#zeta-faucet-athens-3` channel. ### Third-party ZETA Faucets -- [Covelent ZETA Faucet](https://www.covalenthq.com/faucet) +- [Covalent ZETA Faucet](https://www.covalenthq.com/faucet) - [Triangle ZETA Faucet](https://faucet.triangleplatform.com/zetachain/athens3) ## Getting Additional Testnet Gas Assets diff --git a/src/pages/reference/learn/faq.mdx b/src/pages/reference/learn/faq.mdx index ee0fdd1d3..1679e261b 100644 --- a/src/pages/reference/learn/faq.mdx +++ b/src/pages/reference/learn/faq.mdx @@ -72,12 +72,12 @@ interoperability built in. It is not a sidechain, rollup, or bridge. ### How does ZetaChain compare to other solutions? -ZetaChain is, at the time of writing, unique in its support for chain-agnostiic +ZetaChain is, at the time of writing, unique in its support for chain-agnostic omnichain dApps. No other blockchain enables fully interoperable smart contracts. This feature allows an unbounded platform to build omnichain and cross-chain applications that function as if everything lived on a single chain. Although some systems like Cosmos offer interoperability within the IBC -ecosystem, ZetaChain brings seamless interoperabiliy to all chains, including +ecosystem, ZetaChain brings seamless interoperability to all chains, including non-smart-contract chains like Bitcoin and Dogecoin. As a blockchain and smart contract platform, ZetaChain provides a fully public, transparent, decentralized interoperability solution that supports both omnichain messaging and smart @@ -98,7 +98,7 @@ interoperability smart contract and messaging platform. One can build need-specific bridges through ZetaChain, although ZetaChain has omnichain value transfer built-in. Transferring value through ZetaChain also does not require wrapping of assets. Wrapped assets and centralized vaults are often the points -of failure or expoits that result in losses of hundreds of millions of dollars +of failure or exploits that result in losses of hundreds of millions of dollars that are not uncommon (Wormhole hack, Poly Network hack). With ZetaChain, all funds at rest are not at risk, because there is no interdependency via wrapping/locking. diff --git a/src/pages/users/keplr/transfer.mdx b/src/pages/users/keplr/transfer.mdx index ea527b2bb..256df2cfa 100644 --- a/src/pages/users/keplr/transfer.mdx +++ b/src/pages/users/keplr/transfer.mdx @@ -16,7 +16,7 @@ native and IBC tokens, but not ZRC-20 or ERC-20. Select ZETA from the list: Keplr extension - Select Asset Enter the recipient address in the bech32 format (`zeta***`) and the amount you -want to transfer. Please, note that the amount in Keplr is speficied in ZETA, so +want to transfer. Please, note that the amount in Keplr is specified in ZETA, so in this example you're sending 1 ZETA or 10¹⁸ azeta. You can also add a memo. Memo is optional and is often used when sending tokens to centralized exchanges.