FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Ethereum-Solidity Quiz Q32: What transaction types are used in Ethereum?
How-ToDevOps

Ethereum-Solidity Quiz Q32: What transaction types are used in Ethereum?

via Dev.toMihaiHng1mo ago

──────────────────────────────────────────────────────────────────── TRANSACTION TYPES ──────────────────────────────────────────────────────────────────── 1. CREATE - Deploy contract (address depends on deployer + nonce) 2. CREATE2 - Deploy contract (address is deterministic/predictable) 3. CALL - Call a function on existing contract 4. DELEGATECALL - Call using caller's storage (used by proxies internally) Transaction Types Explained 1. CREATE // Regular contract deployment new MyContract(arg1, arg2); json{ "transactionType": "CREATE", "to": null, // ◄── null means contract creation "contractAddress": "0x..." } 2. CREATE2 // Deterministic deployment via factory // Foundry does this automatically for libraries json{ "transactionType": "CREATE2", "to": "0x4e59b448...", // ◄── Factory address "contractAddress": "0x..." } 3. CALL // Function call on existing contract provider.setStablecoin(usdcAddress); json{ "transactionType": "CALL", "to": "0xa729b836...", // ◄── Contract being called

Continue reading on Dev.to

Opens in a new tab

Read Full Article
29 views

Related Articles

What we’re looking for in Startup Battlefield 2026 and how to put your best application forward
How-To

What we’re looking for in Startup Battlefield 2026 and how to put your best application forward

TechCrunch • 1d ago

Build Days That Actually Mean Something
How-To

Build Days That Actually Mean Something

Medium Programming • 1d ago

I have blogged about the difference between code coverage and test coverage and why it matters to distinguish between these 2.
How-To

I have blogged about the difference between code coverage and test coverage and why it matters to distinguish between these 2.

Dev.to Beginners • 1d ago

The origin story of Apple’s long-running relationship with FoxConn
How-To

The origin story of Apple’s long-running relationship with FoxConn

The Verge • 1d ago

How to Optimize Big Data Platform Costs Across the Data Lifecycle
How-To

How to Optimize Big Data Platform Costs Across the Data Lifecycle

Hackernoon • 1d ago

Discover More Articles