Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/base-chain/specs/upgrades/beryl/b20.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ B20 supports two variants:

## ERC-20 Compatibility

B20 tokens are implemented as **Rust precompiles** rather than EVM smart contracts, making them faster, cheaper, and more native to the chain. All tokens are deployed via the singleton `IB20Factory` precompile.
B20 tokens are implemented as **Rust precompiles** rather than EVM smart contracts, making them faster, cheaper, and more native to the chain. All tokens are deployed via the singleton B20Factory precompile.

<Check>
B20 implements the full ERC-20 standard surface with complete selector parity - it is a drop-in replacement for existing tooling and integrations.
Expand Down Expand Up @@ -168,7 +168,7 @@ B20 implements ERC-2612 (signed approvals) using an EIP-712 domain shaped as `(n

## Factory

All B20 tokens are created through the singleton `IB20Factory` precompile via `createB20(variant, salt, params, initCalls)`.
All B20 tokens are created through the singleton B20Factory precompile via `createB20(variant, salt, params, initCalls)`.

| Parameter | Description |
|-----------|-------------|
Expand Down
Loading