SlideShare a Scribd company logo
1 of 11
Download to read offline
The Decentralized
Developer Toolbox
Petros Ring, Block 16
Why Are Tools So Important?
● The best tools can set a language or a platform apart
● Take for example Stripe vs Paypal
○ Stripe quickly gained market share because there systems
were easier to use and implement
● Ethereum/Solidity tools empower developers to make the best
projects the right way
● DevCon3 had a myriad of talks on new, better tools multiple
companies were developing to enhance the ecosystem
● EOS has a long way to go to create better development tools and
attract developers
The Basics: Truffle Suite
Truffle
- The easiest way to
start Solidity
development.
- Install and spin up a
new project as easy as
truffle init
Ganache
- Run your own private
Ethereum blockchain
- Test your applications in
a controlled environment
Drizzle
- A better way to handle
your dApp front end
- Manages syncing and
interactions with your
smart contract
https://truffleframework.com
Solidity IDEs
Web Based
EthFiddle
- Good for experimenting with
code snippets and sharing them
- Comparable to JSFiddle
Remix IDE
- An all inclusive online IDE that
will let you compile, deploy and
analyze smart contract code
- Great for beginners
Application Based
IntelliJ-Solidity
- Solidity language support for a
world class IDE
- Still in Alpha stage but still being
updated over time
EtherAtom
- Bringing many of Remix’s best
features to a local editor for
analyzing code and testing
Accessing Ethereum via APIs
- Reliable access to hosted
Ethereum nodes and IPFS
gateways.
- Allows you to do all of the
Ethereum JSON-RPC requests
you would normally make on
a local node.
- Easiest interface is web3.js
- Access human readable
content on addresses and
blocks separate from
standard web3.js calls
- Suitable for monitoring
information occuring on the
blockchain by a backend
system
Block 16 API
Endpoints
- Access to all the information, transactions, events on a per block level
- Access to token transfers and last 100 ethereum transactions on an
address level
- Endpoints combine calls for all block / uncles / transactions /
transaction receipts into one HTTP call which would normally be
somewhere from 250-500+ calls
Use Cases
- Scanning the entire blockchain and tracking it for transactions
occurring in real time on a separate backend
- Easily accessing assets data on an address
https://docs.block16.io
Canonical Smart Contracts
Zeppelin Solutions and DappHub have created many
audited smart contracts that are ready to be deployed at
any time and integrated into your application
Open Zeppelin
● Whitelists
● Crowdsale
● Lifecycle Management
● SafeMath
● Ownership
● Payment
● Token: ERC-20, 721, 827
Dapp Tools
● Multisig
● Authentication (Authority)
● Proxy
● Cache
● Token: ERC-20
Interfacing into Other Smart Contracts
● The beauty of the Ethereum ecosystem is that once
others deploy smart contracts the only thing you need
to interact with them on a smart contract level is an
Interface.
● Next generation contracts will link what would
normally be multiple transactions (steps) into once
succinct transaction through the use of proxy contracts.
● These proxy contracts send bytecode and data for the
sender as them but use Interfaces to interact with
contracts around them for the individual actions.
Case Study: Oasis Direct Atomic Swaps
Wrapped Ether Token Interface
Exchange Trading Interface
Case Study: Oasis Direct Atomic Swaps
1. Convert ETH -> W-ETH Token
- Send ETH to the deposit() function of
WEthInterface
- Call allowance() function to set the tokens able
to be transferred
2. Exchange Tokens
- Exchange tokens through OTC interface which
buys or sells one set of tokens for another on a
separate contract
3. Send Token to Original Sender of ETH
Thank you for your time!
Petros Ring
petros@block16.io
block16.io

More Related Content

What's hot

Parity Progress Report
Parity Progress ReportParity Progress Report
Parity Progress Reportgavofyork
 
How Does Zilliqa Compare To Other Public Blockchains?
How Does Zilliqa Compare To Other  Public Blockchains?How Does Zilliqa Compare To Other  Public Blockchains?
How Does Zilliqa Compare To Other Public Blockchains?Isaac S Haynes
 
StarkNet JS
StarkNet JSStarkNet JS
StarkNet JSNeven6
 
Blockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain EcosystemBlockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain EcosystemPureStake
 
The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...
The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...
The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...Alessandro Sanino
 
Decentralizing Everything with Blockchain
Decentralizing Everything with BlockchainDecentralizing Everything with Blockchain
Decentralizing Everything with BlockchainDavid Paluy
 
Blockchain Hyperledger Development
Blockchain Hyperledger DevelopmentBlockchain Hyperledger Development
Blockchain Hyperledger DevelopmentPulsehyip
 
Ethereum: Next steps...
Ethereum: Next steps...Ethereum: Next steps...
Ethereum: Next steps...gavofyork
 
How To Pick The Best Crypto Asset To Invest In
How To Pick The Best Crypto Asset To Invest InHow To Pick The Best Crypto Asset To Invest In
How To Pick The Best Crypto Asset To Invest InAiman Nazaal
 
Where can smart contracts take us?
Where can smart contracts take us?Where can smart contracts take us?
Where can smart contracts take us?gavofyork
 

What's hot (13)

Parity Progress Report
Parity Progress ReportParity Progress Report
Parity Progress Report
 
How Does Zilliqa Compare To Other Public Blockchains?
How Does Zilliqa Compare To Other  Public Blockchains?How Does Zilliqa Compare To Other  Public Blockchains?
How Does Zilliqa Compare To Other Public Blockchains?
 
StarkNet JS
StarkNet JSStarkNet JS
StarkNet JS
 
Smart contracts & dApps
Smart contracts & dAppsSmart contracts & dApps
Smart contracts & dApps
 
Blockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain EcosystemBlockchain 101: An Introduction to the Blockchain Ecosystem
Blockchain 101: An Introduction to the Blockchain Ecosystem
 
The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...
The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...
The Ethereum Blockchain - Introduction to Smart Contracts and Decentralized A...
 
Interlay + Encode
Interlay + EncodeInterlay + Encode
Interlay + Encode
 
Decentralizing Everything with Blockchain
Decentralizing Everything with BlockchainDecentralizing Everything with Blockchain
Decentralizing Everything with Blockchain
 
Blockchain Hyperledger Development
Blockchain Hyperledger DevelopmentBlockchain Hyperledger Development
Blockchain Hyperledger Development
 
Blockchain
BlockchainBlockchain
Blockchain
 
Ethereum: Next steps...
Ethereum: Next steps...Ethereum: Next steps...
Ethereum: Next steps...
 
How To Pick The Best Crypto Asset To Invest In
How To Pick The Best Crypto Asset To Invest InHow To Pick The Best Crypto Asset To Invest In
How To Pick The Best Crypto Asset To Invest In
 
Where can smart contracts take us?
Where can smart contracts take us?Where can smart contracts take us?
Where can smart contracts take us?
 

Similar to The Decentralized Developer Toolbox by Petros Ring

Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Tomoaki Sato
 
Introduction to Blockchain Development
Introduction to Blockchain DevelopmentIntroduction to Blockchain Development
Introduction to Blockchain DevelopmentLightstreams
 
10 most used blockchain tools in 2021 for blockchain development
10 most used blockchain tools in 2021 for blockchain development10 most used blockchain tools in 2021 for blockchain development
10 most used blockchain tools in 2021 for blockchain developmentAmniAugustine
 
Defrag X Keynote: Deploying and managing Global Blockchain Network
Defrag X Keynote: Deploying and managing Global Blockchain NetworkDefrag X Keynote: Deploying and managing Global Blockchain Network
Defrag X Keynote: Deploying and managing Global Blockchain NetworkDuncan Johnston-Watt
 
The JavaScript toolset for development on Ethereum
The JavaScript toolset for development on EthereumThe JavaScript toolset for development on Ethereum
The JavaScript toolset for development on EthereumGreeceJS
 
Javascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract developmentJavascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract developmentBugSense
 
Deploying and Managing Global Blockchain Networks
Deploying and Managing Global Blockchain Networks Deploying and Managing Global Blockchain Networks
Deploying and Managing Global Blockchain Networks Duncan Johnston-Watt
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractThanh Nguyen
 
Introduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxIntroduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxGene Leybzon
 
Introducing flow the new blockchain for open worlds
Introducing flow  the new blockchain for open worldsIntroducing flow  the new blockchain for open worlds
Introducing flow the new blockchain for open worldsBlockchain Council
 
Blockchain Development Kit
Blockchain Development KitBlockchain Development Kit
Blockchain Development KitHuda Seyam
 
BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023
BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023
BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023SSTech System
 
VEROS-white-paper
VEROS-white-paperVEROS-white-paper
VEROS-white-paperRip Burman
 
How to Build Your Blockchain Project with Chainstack
How to Build Your Blockchain Project with ChainstackHow to Build Your Blockchain Project with Chainstack
How to Build Your Blockchain Project with ChainstackChainstack
 

Similar to The Decentralized Developer Toolbox by Petros Ring (20)

How to design, code, deploy and execute a smart contract
How to design, code, deploy and execute a smart contractHow to design, code, deploy and execute a smart contract
How to design, code, deploy and execute a smart contract
 
Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)Ethereum Devcon1 Report (summary writing)
Ethereum Devcon1 Report (summary writing)
 
Hyperledger
HyperledgerHyperledger
Hyperledger
 
Introduction to Blockchain Development
Introduction to Blockchain DevelopmentIntroduction to Blockchain Development
Introduction to Blockchain Development
 
10 most used blockchain tools in 2021 for blockchain development
10 most used blockchain tools in 2021 for blockchain development10 most used blockchain tools in 2021 for blockchain development
10 most used blockchain tools in 2021 for blockchain development
 
BlockchainLAB Hackathon
BlockchainLAB HackathonBlockchainLAB Hackathon
BlockchainLAB Hackathon
 
Defrag X Keynote: Deploying and managing Global Blockchain Network
Defrag X Keynote: Deploying and managing Global Blockchain NetworkDefrag X Keynote: Deploying and managing Global Blockchain Network
Defrag X Keynote: Deploying and managing Global Blockchain Network
 
Defrag x blockchain keynote
Defrag x blockchain keynoteDefrag x blockchain keynote
Defrag x blockchain keynote
 
All About Ethereum
All About EthereumAll About Ethereum
All About Ethereum
 
The JavaScript toolset for development on Ethereum
The JavaScript toolset for development on EthereumThe JavaScript toolset for development on Ethereum
The JavaScript toolset for development on Ethereum
 
Javascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract developmentJavascript toolset for Ethereum Smart Contract development
Javascript toolset for Ethereum Smart Contract development
 
Deploying and Managing Global Blockchain Networks
Deploying and Managing Global Blockchain Networks Deploying and Managing Global Blockchain Networks
Deploying and Managing Global Blockchain Networks
 
Introduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart ContractIntroduction to Ethereum Blockchain & Smart Contract
Introduction to Ethereum Blockchain & Smart Contract
 
Introduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptxIntroduction to Solidity and Smart Contract Development (9).pptx
Introduction to Solidity and Smart Contract Development (9).pptx
 
Introducing flow the new blockchain for open worlds
Introducing flow  the new blockchain for open worldsIntroducing flow  the new blockchain for open worlds
Introducing flow the new blockchain for open worlds
 
Blockchain Development Kit
Blockchain Development KitBlockchain Development Kit
Blockchain Development Kit
 
BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023
BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023
BEST BLOCKCHAIN DEVELOPMENT PLATFORMS TO WATCH OUT FOR IN 2023
 
VEROS-white-paper
VEROS-white-paperVEROS-white-paper
VEROS-white-paper
 
Ethereum
EthereumEthereum
Ethereum
 
How to Build Your Blockchain Project with Chainstack
How to Build Your Blockchain Project with ChainstackHow to Build Your Blockchain Project with Chainstack
How to Build Your Blockchain Project with Chainstack
 

Recently uploaded

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessPixlogix Infotech
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 

Recently uploaded (20)

Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 

The Decentralized Developer Toolbox by Petros Ring

  • 2. Why Are Tools So Important? ● The best tools can set a language or a platform apart ● Take for example Stripe vs Paypal ○ Stripe quickly gained market share because there systems were easier to use and implement ● Ethereum/Solidity tools empower developers to make the best projects the right way ● DevCon3 had a myriad of talks on new, better tools multiple companies were developing to enhance the ecosystem ● EOS has a long way to go to create better development tools and attract developers
  • 3. The Basics: Truffle Suite Truffle - The easiest way to start Solidity development. - Install and spin up a new project as easy as truffle init Ganache - Run your own private Ethereum blockchain - Test your applications in a controlled environment Drizzle - A better way to handle your dApp front end - Manages syncing and interactions with your smart contract https://truffleframework.com
  • 4. Solidity IDEs Web Based EthFiddle - Good for experimenting with code snippets and sharing them - Comparable to JSFiddle Remix IDE - An all inclusive online IDE that will let you compile, deploy and analyze smart contract code - Great for beginners Application Based IntelliJ-Solidity - Solidity language support for a world class IDE - Still in Alpha stage but still being updated over time EtherAtom - Bringing many of Remix’s best features to a local editor for analyzing code and testing
  • 5. Accessing Ethereum via APIs - Reliable access to hosted Ethereum nodes and IPFS gateways. - Allows you to do all of the Ethereum JSON-RPC requests you would normally make on a local node. - Easiest interface is web3.js - Access human readable content on addresses and blocks separate from standard web3.js calls - Suitable for monitoring information occuring on the blockchain by a backend system
  • 6. Block 16 API Endpoints - Access to all the information, transactions, events on a per block level - Access to token transfers and last 100 ethereum transactions on an address level - Endpoints combine calls for all block / uncles / transactions / transaction receipts into one HTTP call which would normally be somewhere from 250-500+ calls Use Cases - Scanning the entire blockchain and tracking it for transactions occurring in real time on a separate backend - Easily accessing assets data on an address https://docs.block16.io
  • 7. Canonical Smart Contracts Zeppelin Solutions and DappHub have created many audited smart contracts that are ready to be deployed at any time and integrated into your application Open Zeppelin ● Whitelists ● Crowdsale ● Lifecycle Management ● SafeMath ● Ownership ● Payment ● Token: ERC-20, 721, 827 Dapp Tools ● Multisig ● Authentication (Authority) ● Proxy ● Cache ● Token: ERC-20
  • 8. Interfacing into Other Smart Contracts ● The beauty of the Ethereum ecosystem is that once others deploy smart contracts the only thing you need to interact with them on a smart contract level is an Interface. ● Next generation contracts will link what would normally be multiple transactions (steps) into once succinct transaction through the use of proxy contracts. ● These proxy contracts send bytecode and data for the sender as them but use Interfaces to interact with contracts around them for the individual actions.
  • 9. Case Study: Oasis Direct Atomic Swaps Wrapped Ether Token Interface Exchange Trading Interface
  • 10. Case Study: Oasis Direct Atomic Swaps 1. Convert ETH -> W-ETH Token - Send ETH to the deposit() function of WEthInterface - Call allowance() function to set the tokens able to be transferred 2. Exchange Tokens - Exchange tokens through OTC interface which buys or sells one set of tokens for another on a separate contract 3. Send Token to Original Sender of ETH
  • 11. Thank you for your time! Petros Ring petros@block16.io block16.io