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

Fix recurring vale errors #696

Merged
merged 4 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions .github/styles/config/vocabularies/default/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
[Aa]urora
[Aa]rbitrum
[Aa]ccessor
[Aa]uditability
[Aa]utomation
[Bb]ackend
[Bb]inance
Expand All @@ -23,10 +24,13 @@
[Cc]omposable
[Cc]onfig
[Cc]rypto
[Cc]ryptocurrency
[Cc]ryptocurrencies
[Dd]app
[Dd]apps
[Dd]elist
[Dd]evnet
[Dd]evnets
[Ee]ndhint
[Ee]rigon
[Ee]thereum
Expand All @@ -35,17 +39,19 @@
[Gg]elato
[Gg]oerli
[Gg]nosis
[Gg]wei
[Hh]ackathon
[Ll]inea
[Ll]inea
[Ll]ogics
[Ll][Ll][Mm]
[Mm]ainnet
[Mm]astercopy
[Mm]iddleware
[Mm]onerium
[Mm]ultichain
[Mm]ultisig
[Mm]ultisend
[Mm]ultiSend
[Nn]extra
[Nn]ginx
[Oo]ffchain
Expand All @@ -65,8 +71,10 @@
[Rr]elayers
[Ss]epolia
[Tt]estnet
[Tt]estnets
[Tt]rezor
[Vv]alidator
[Vv]alidators
[Ww]hitepaper
[Xx]code
A1
Expand Down Expand Up @@ -115,10 +123,10 @@ DAO
DAOs
Darwinia
Degen
Devnet
DODOchain
Dogechain
EIP
EIPs
EOA
EOAs
ERC
Expand Down Expand Up @@ -163,7 +171,6 @@ keystore
LUKSO
Lightlink
Lisk
ledgerblue
Mandala
Mantle
Masa
Expand All @@ -176,6 +183,7 @@ Moonbase
Moonbeam
Moonriver
Mordor
Nethermind
Nova
ngrok
Nuxt
Expand All @@ -193,6 +201,7 @@ Prebuild
Protofire
PublicMint
README
READMEs
REI
RPC
Relay Kit
Expand Down Expand Up @@ -247,6 +256,7 @@ UI Kit
Uniswap
Ultron
USD
UserOp
Velas
Venidium
Viction
Expand Down Expand Up @@ -275,8 +285,11 @@ checksummed
createTransaction
const
deployer
eth_getLogs
eSpace
execTransaction
ledgerblue
ledgereth
maxWidth
mempool
messageHash
Expand All @@ -285,11 +298,16 @@ npm
onboarding
onchain
peaq
pnpm
pluggable
polyfills
precompile(?s)
precompile
precompiles
preimage
refetch
refetches
refetching
rollups
saltNonce
stablecoin
superset
Expand Down
4 changes: 2 additions & 2 deletions pages/advanced/erc-4337/4337-safe.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ It implements the ERC-4337 interface, including the functions to validate and ex

The Safe Proxy contract receives a call to the `validateUserOp` function from the `EntryPoint` and forwards it to the `Safe4337Module`. The module validates the `UserOperation` object by checking that the Safe owners signed the `UserOperation` hash and returns the result. It also executes a module transaction to pay the fees back.

![diagram validate userop](../../../assets/diagram-4337-validate.png)
![diagram validate UserOp](../../../assets/diagram-4337-validate.png)

### UserOperation execution

After successful validation, the `EntryPoint` calls the `executeUserOp` function, forwarding it again to the module, which executes a module transaction with the target and data specified in the `UserOperation` object.

![diagram execute userop](../../../assets/diagram-4337-execute.png)
![diagram execute UserOp](../../../assets/diagram-4337-execute.png)
4 changes: 2 additions & 2 deletions pages/config-service-configuration/add-or-edit-chain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ The address of the chain's Safe singleton.

The address of the chain's Safe ProxyFactory.

### `Multisend address`
### `MultiSend address`

The address of the chain's MultiSend contract.

### `Multisand call only address`
### `MultiSend call only address`

The address of the chain's MultiSendCallOnly contract.

Expand Down
2 changes: 1 addition & 1 deletion pages/sdk/onramp.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The guides in this section show how to use different onramp services with the Sa
With these onramp services, you can enable users to buy cryptocurrencies using their credit card or bank account.
With Monerium, you can even send IBAN transfers from a Safe account to a bank account.

The following guides show how to do onramping with the following services:
The following guides show how to onramp with the following services:

- [Monerium](./onramp/monerium.mdx)
- [Stripe](./onramp/stripe.mdx)
2 changes: 1 addition & 1 deletion pages/sdk/relay-kit/reference/safe-4337-pack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Safe4337CreateTransactionProps = {
}
```

- **`transactions`** : Array of `MetaTransactionData` to batch in a `SafeOperation` (using the multisend contract if more than one transaction is included).
- **`transactions`** : Array of `MetaTransactionData` to batch in a `SafeOperation` (using the MultiSend contract if more than one transaction is included).
- **`options`** : Optional parameters.
- **`amountToApprove`** : The amount to approve to the `paymasterTokenAddress`.
- **`validUntil`** : The UserOperation will remain valid until this block's timestamp.
Expand Down
Loading