SlideShare a Scribd company logo
Creating an Awesome Developer
Experience for Corda
Conor Svensson and Puneetha Karamsetty
web3labs.com@web3labs
Web3 Labs
@web3labs
Epirus Blockchain Explorer Web3j SDK
web3labs.com
What is Web3j?
JVM integration library for Blockchains
• Java/Android/Kotlin/Scala, etc
Account and transaction management
Type-safe smart contract integration
Native build tool integration
• Maven/Gradle
web3labs.com@web3labs
🎂 Web3j is 3! 🎂
> 100 contributors
> 900 forks
> 400k downloads (>2m all artefacts)
> 2.5k GitHub stars
web3labs.com@web3labs
Why we’re here
web3labs.com@web3labs
+ Web3j
Web3j Corda
web3labs.com@web3labs
Web3j Corda
web3labs.com@web3labs
Creating a great developer experience for Corda
Simplify integration with CordApps
Uses Corda’s OpenAPI connector
Simple template CorDapp creation
Powerful integration testing capabilities
Developer adoption challenges
Corda JVM developer workflow
Create project
Add Corda build dependencies
Create contracts + workflows
Create CorDapp client
Start network
Deploy CorDapp
Run CorDapp
🙏 🙏 🙏 🙏 web3labs.com@web3labs
How can we simplify this?
web3labs.com@web3labs
3 Commands
web3labs.com@web3labs
Installation
curl -L https://getcorda.web3j.io | bash
web3labs.com@web3labs
Create a new project
web3j-corda new …
web3labs.com@web3labs
Or, generate CorDapp client wrappers
web3j-corda generate …
web3labs.com@web3labs
Start network + deploy flow
./gradlew test
web3labs.com@web3labs
Demo
web3labs.com@web3labs
web3labs.com@web3labs
Create Web3j Corda service
web3labs.com@web3labs
val service = CordaService("http://partyb-london-gb:8080")
val corda = Corda.build(service)
Network queries
web3labs.com@web3labs
val partyA = corda.api.network.nodes
.findByX500Name("O=PartyA,L=New York,C=US")[0]
.legalIdentities[0]
val partyB = corda.api.network.nodes
.findByHostAndPort("http://party-new-york-us:8080")
.legalIdentities[0]
Starting a flow
web3labs.com@web3labs
val signedTx = Obligation
.load(corda.service)
.flows
.issueObligationInitiator
.start(
IssueObligation_InitiatorPayload(
AmountCurrency(100, BigDecimal.ONE, "GBP"),
partyB,
false
)
)
Web3j Corda
web3j-corda new|generate
✓ Create project
✓ Add web3j-corda build dependency
✓ Create contracts + workflows
✓ Auto-generate CorDapp client + test
✓ Create full dockerized network w/map service
✓ Deploy + run CorDapp + start flows
🔥 🔥 🔥
web3labs.com@web3labs
What’s next
Java code generation
Vault support
• Queries
• Tracking
Flow progress trackers
Upgrading live CorDapps
web3labs.com@web3labs
Thanks!
curl -L https://getcorda.web3j.io | bash
web3j-corda new …
corda.web3j.io
web3labs.com@web3labs

More Related Content

PPTX
DevDay: Developer Updates: Visual Studio Code, Java 11 and OpenAPI (oh my), L...
 
PDF
Comparison of Current Service Mesh Architectures
PDF
DevDay: Forma: Easily Deploy and Operate Hybrid and Multi-cloud Corda Network...
 
PDF
Voxxed Days Minsk. Microservices:
 The phantom menace
. Istio Service Mesh: 
...
PPTX
apidays LIVE Paris - Multicluster Service Mesh in Action by Denis Jannot
PPT
AlertSite Slideshow for the Booth at Web 2.0 Expo 2009
PPTX
API Gateway: Nginx way
PPTX
Introduction to Kubernetes
DevDay: Developer Updates: Visual Studio Code, Java 11 and OpenAPI (oh my), L...
 
Comparison of Current Service Mesh Architectures
DevDay: Forma: Easily Deploy and Operate Hybrid and Multi-cloud Corda Network...
 
Voxxed Days Minsk. Microservices:
 The phantom menace
. Istio Service Mesh: 
...
apidays LIVE Paris - Multicluster Service Mesh in Action by Denis Jannot
AlertSite Slideshow for the Booth at Web 2.0 Expo 2009
API Gateway: Nginx way
Introduction to Kubernetes

What's hot (20)

PDF
apidays LIVE Paris 2020 - Data Gateways: building “Data-as-a-Service” for the...
PDF
apidays LIVE Australia 2021 - Levelling up database security by thinking in A...
PDF
apidays LIVE Paris - Creating a scalable ecosystem of Microservices by Archan...
PDF
Microservice API Gateways with NGINX
PDF
Using Kubernetes to make cellular data plans cheaper for 50M users
ODP
2449 rapid prototyping of innovative io t solutions
PDF
Hyperledger Fabric Technical Deep Dive 20190618
PPTX
ISTIO Deep Dive
PPTX
Seriously Open Cloud Native Java Microservices
PDF
FIWARE Global Summit - Building Personalized FIWARE Enabled IoT Sandbox Solution
PDF
Your Application Deserves Better than Kubernetes Ingress: Istio vs. Kubernetes
PPT
Technical introduction to Hyperledger's Fabric
PDF
Securing Your Containers is Not Enough: How to Encrypt Container Data
PDF
FIWARE Global Summit - Leveraging Kubernetes for FIWARE Components Automations
PPTX
Deploying and Managing Global Blockchain Networks
PDF
Hyperledger community update Feb 20, 2018
PPTX
Microservice: starting point
PDF
Hyperledger community update 201805
PPTX
Microservices Part 3 Service Mesh and Kafka
PDF
Istio Service Mesh
apidays LIVE Paris 2020 - Data Gateways: building “Data-as-a-Service” for the...
apidays LIVE Australia 2021 - Levelling up database security by thinking in A...
apidays LIVE Paris - Creating a scalable ecosystem of Microservices by Archan...
Microservice API Gateways with NGINX
Using Kubernetes to make cellular data plans cheaper for 50M users
2449 rapid prototyping of innovative io t solutions
Hyperledger Fabric Technical Deep Dive 20190618
ISTIO Deep Dive
Seriously Open Cloud Native Java Microservices
FIWARE Global Summit - Building Personalized FIWARE Enabled IoT Sandbox Solution
Your Application Deserves Better than Kubernetes Ingress: Istio vs. Kubernetes
Technical introduction to Hyperledger's Fabric
Securing Your Containers is Not Enough: How to Encrypt Container Data
FIWARE Global Summit - Leveraging Kubernetes for FIWARE Components Automations
Deploying and Managing Global Blockchain Networks
Hyperledger community update Feb 20, 2018
Microservice: starting point
Hyperledger community update 201805
Microservices Part 3 Service Mesh and Kafka
Istio Service Mesh
Ad

Similar to DevDay: Creating an Awesome Developer Experience for Corda, Web3 Labs (20)

PDF
web3j Overview
PDF
Java and the blockchain - introducing web3j
PDF
Smart contracts using web3.js
PPTX
Blockchain for Java Developers - Cloud Conference Day
PDF
web3j overview
PDF
DevEx in Ethereum - a look at the developer stack
PPTX
Cloud Lunch and Learn - Corda Blockchain on Azure
PDF
What Web 2.pdf
PDF
How to Build a Web3 App That Supports Multiple Blockchains.pdf
PPTX
Enterprise Blockchain Developer Experience
PDF
How to Build And Launch Web3 App? - SoluLab
PDF
Building Java and Android apps on the blockchain
PDF
NodeJS
PDF
How to Build And Launch Web3 App.pdf overview
PDF
Web3j 2.0 Update
PPTX
Building Blockchain Application with Corda
PPTX
Top 10 interview question for corda expert
PDF
Web3 Application Development
PDF
apidays LIVE London 2021 - Open Insurance & Smart Contracts by Giovanni Lesna...
PPTX
StrongLoop Overview
web3j Overview
Java and the blockchain - introducing web3j
Smart contracts using web3.js
Blockchain for Java Developers - Cloud Conference Day
web3j overview
DevEx in Ethereum - a look at the developer stack
Cloud Lunch and Learn - Corda Blockchain on Azure
What Web 2.pdf
How to Build a Web3 App That Supports Multiple Blockchains.pdf
Enterprise Blockchain Developer Experience
How to Build And Launch Web3 App? - SoluLab
Building Java and Android apps on the blockchain
NodeJS
How to Build And Launch Web3 App.pdf overview
Web3j 2.0 Update
Building Blockchain Application with Corda
Top 10 interview question for corda expert
Web3 Application Development
apidays LIVE London 2021 - Open Insurance & Smart Contracts by Giovanni Lesna...
StrongLoop Overview
Ad

More from R3 (20)

PPTX
Supporting trade finance with letters of credit on corda
 
PPTX
Corda Developer Bootcamp: Introduction to Corda
 
PPTX
Corda Developer Bootcamp: Tokens
 
PPTX
Corda Developer Bootcamp: Tokens
 
PPTX
Introduction to Corda Blockchain for Developers
 
PPTX
Corda Developer Bootcamp: Accounts
 
PDF
Insurance Round Table
 
PPTX
BizDay: David E. Rutter Welcome Address
 
PDF
BizDay: Usage Based Insurance and Fleet Management, Infosys
 
PPTX
DevDay: Managing a Distributed Network on a Common Infra, SIA
 
PPTX
BizDay: Improving Remittances in the World's 2nd Largest Corridor, Digiledge
 
PDF
BizDay: Designing the Future of Payments, Mastercard
 
PPTX
DevDay: Node Analytics with Python, Chainhaus
 
PPTX
DevDay: Getting Started with Tokens and Accounts, R3
 
PPTX
BizDay: Transition to DLT in RTGS payments, Accenture, SAP
 
PDF
BizDay: Connecting Construction & Insurance Ecosystem, Tinubu Square
 
PPTX
BizDay: The Wholesale Food Supply Chain is Ripe for Transformation, ripe.io
 
PPTX
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
 
PPTX
BizDay: Truck Wallet, Daimler, KI Decentralized
 
PDF
BizDay: A View From Behind the Curtain, SIX Exchange
 
Supporting trade finance with letters of credit on corda
 
Corda Developer Bootcamp: Introduction to Corda
 
Corda Developer Bootcamp: Tokens
 
Corda Developer Bootcamp: Tokens
 
Introduction to Corda Blockchain for Developers
 
Corda Developer Bootcamp: Accounts
 
Insurance Round Table
 
BizDay: David E. Rutter Welcome Address
 
BizDay: Usage Based Insurance and Fleet Management, Infosys
 
DevDay: Managing a Distributed Network on a Common Infra, SIA
 
BizDay: Improving Remittances in the World's 2nd Largest Corridor, Digiledge
 
BizDay: Designing the Future of Payments, Mastercard
 
DevDay: Node Analytics with Python, Chainhaus
 
DevDay: Getting Started with Tokens and Accounts, R3
 
BizDay: Transition to DLT in RTGS payments, Accenture, SAP
 
BizDay: Connecting Construction & Insurance Ecosystem, Tinubu Square
 
BizDay: The Wholesale Food Supply Chain is Ripe for Transformation, ripe.io
 
BizDay: Fully Managed Corda Enterprise with Azure Blockchain Service, Microsoft
 
BizDay: Truck Wallet, Daimler, KI Decentralized
 
BizDay: A View From Behind the Curtain, SIX Exchange
 

Recently uploaded (20)

PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PDF
NewMind AI Weekly Chronicles - August'25-Week II
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PPTX
A Presentation on Artificial Intelligence
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PDF
Encapsulation theory and applications.pdf
PDF
Heart disease approach using modified random forest and particle swarm optimi...
PPTX
1. Introduction to Computer Programming.pptx
PDF
Getting Started with Data Integration: FME Form 101
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Hybrid model detection and classification of lung cancer
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
project resource management chapter-09.pdf
PPTX
OMC Textile Division Presentation 2021.pptx
SOPHOS-XG Firewall Administrator PPT.pptx
NewMind AI Weekly Chronicles - August'25-Week II
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
A Presentation on Artificial Intelligence
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Group 1 Presentation -Planning and Decision Making .pptx
Encapsulation theory and applications.pdf
Heart disease approach using modified random forest and particle swarm optimi...
1. Introduction to Computer Programming.pptx
Getting Started with Data Integration: FME Form 101
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Hybrid model detection and classification of lung cancer
Programs and apps: productivity, graphics, security and other tools
1 - Historical Antecedents, Social Consideration.pdf
Assigned Numbers - 2025 - Bluetooth® Document
WOOl fibre morphology and structure.pdf for textiles
project resource management chapter-09.pdf
OMC Textile Division Presentation 2021.pptx

DevDay: Creating an Awesome Developer Experience for Corda, Web3 Labs