Skip to content

Commit 90b8ea9

Browse files
committed
PoS - meta-transaction.md titles to sentence case
1 parent 6538122 commit 90b8ea9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/pos/concepts/transactions/meta-transactions.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ DApps are starting to realize their utility but are becoming victims of their su
33
success due to gas fees. Not to mention, the onboarding hurdles of users and the challenges of current
44
UX are no easy fix.
55

6-
## Servicing Smart Contracts
6+
## Servicing smart contracts
77

88
By design, smart contracts are deterministic state machines that execute when transaction fees are
99
paid to service the contract’s logic by using the network’s computational resources.
1010
This is accomplished by a gas-metered model on Ethereum (and Polygon).
1111

12-
## The Current State of Transacting
12+
## The current state of sransacting
1313

1414
There are limitations to this traditional transaction model on Ethereum (and other blockchains alike).
1515
A common limitation is a user not having the means to pay for gas. By default, the sender of the
@@ -25,7 +25,7 @@ experience.
2525
Instead of direct transaction execution, a middleware would exist (via a third party) to handle the gas.
2626
This is where meta transactions come in.
2727

28-
## What are Meta Transactions?
28+
## What are meta transactions?
2929

3030
Meta transactions allow anyone to interact with the blockchain. They do not require users to have
3131
tokens to pay for the network’s services through transaction fees. This is done by decoupling the
@@ -60,7 +60,7 @@ the “sender”, the “sender” becomes more like an “intender” - the sen
6060
they would like executed on the blockchain by signing a message containing specific parameters related to
6161
their message, and not an entirely constructed transaction.
6262

63-
## Use Cases
63+
## Use cases
6464

6565
One can imagine the capabilities of meta transactions for scaling dApps and interactions with smart contracts.
6666
Not only can a user create a gasless transaction, but they can also do so many times, and with an automation
@@ -81,7 +81,7 @@ validates that this transaction is a priority vote, wraps the voting request int
8181
pays the gas fees, and broadcasts it to the voting contract. Everything checks out on the voting contract’s
8282
end, and the vote executes on behalf of the user.
8383

84-
## Try Them Out
84+
## Try 'em out
8585

8686
Assuming your familiarity with the different approaches you can take to integrate meta transactions in your
8787
dApp, and depending on whether you're migrating to meta transactions or building fresh dApp on using it.
@@ -111,7 +111,7 @@ For any action that requires blockchain interaction,
111111
- The relayer interacts with the blockchain to submit user's signature to the contract. A function on the contract called `executeMetaTransaction` processes the signature and executes the requested transaction (via an internal call).
112112
- The relayer pays for the gas making the transaction effectively free 🤑
113113

114-
## Integrate Network Agnostic Transactions in your dApp
114+
## Integrate network agnostic transactions in your dApp
115115

116116
- Choose between a custom simple relayer node/biconomy.
117117

@@ -310,14 +310,14 @@ Contract accounts offer numerous benefits, including:
310310
- **Account security:** Contract accounts enable social recovery and security features such as time-locks and withdraw limits.
311311
- **Atomic multi-operations:** Users can perform multiple operations simultaneously, such as trading in a single click instead of approving and swapping separately.
312312

313-
## Using Account Abstraction on Polygon
313+
## Using account abstraction on Polygon
314314

315315
There are two primary ways users can use account abstraction on Polygon: by sending ERC-4337 transactions or with third party meta transaction services.
316316

317317
### ERC-4337
318318

319319
ERC-4337, also known is EIP-4337, brings account abstraction to the Polygon ecosystem and all EVM-compatible chains.
320320

321-
### Meta Transactions
321+
### Meta transactions
322322

323323
Meta transactions are bespoke third party services for achieving account abstraction.

0 commit comments

Comments
 (0)