Skip to content

Commit

Permalink
Delete redundant sentence (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
ardislu authored Mar 28, 2023
1 parent 8058dd0 commit a174624
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,16 +194,14 @@ const AboutPage = () => {
<p className="pb-8">
The calldata region is the data sent to a transaction as part of a
smart contract transaction. For example, when creating a contract,
calldata would be the constructor code of the new contract. It is
important to note that when a contract executes an xCALL instruction,
it also creates an internal transaction, with a resulting calldata
region in the new context. Calldata is immutable, and can be read with
instructions <RelativeLink to="#35" title="CALLDATALOAD" />,{' '}
calldata would be the constructor code of the new contract. Calldata
is immutable, and can be read with instructions{' '}
<RelativeLink to="#35" title="CALLDATALOAD" />,{' '}
<RelativeLink to="#36" title="CALLDATASIZE" />, and{' '}
<RelativeLink to="#37" title="CALLDATACOPY" />. When a contract
executes an xCALL instruction, it also creates an internal
transaction. As a result, when executing xCALL, there is a calldata
region in the new context.
<RelativeLink to="#37" title="CALLDATACOPY" />. It is important to
note that when a contract executes an xCALL instruction, it also
creates an internal transaction. As a result, when executing xCALL,
there is a calldata region in the new context.
</p>
</SectionWrapper>

Expand Down

1 comment on commit a174624

@vercel
Copy link

@vercel vercel bot commented on a174624 Mar 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.