Skip to content

Commit cc46db1

Browse files
authored
Merge pull request #293 from kleros/chore/update-fellows-4-11-24
Feat: add Fiorentini, Echeverria and Parul Anand
2 parents 5ec7c4c + a4c82ee commit cc46db1

File tree

9 files changed

+44
-2
lines changed

9 files changed

+44
-2
lines changed

gatsby-config.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,8 +335,11 @@ module.exports = {
335335
{ name: "Clara Lin", title: "Lawyer", location: "China", batch: 6 },
336336
{ name: "Alexis Y. Zeballos", title: "Law Student", location: "Argentina", batch: 6 },
337337
{ name: "Inês Bragança Gaspar", title: "Lawyer", location: "Portugal", batch: 6 },
338-
{ name: "Paul Poenicke", title: "Philosopher", batch: 6},
339-
{ name: "Aakriti Anurag Tewari", title: "Law Student", batch: 6}
338+
{ name: "Paul Poenicke", title: "Philosopher", batch: 6 },
339+
{ name: "Aakriti Anurag Tewari", title: "Law Student", batch: 6 },
340+
{ name: "Darío Echeverría Muñoz", title: "Lawyer Specialist in Digital Law", batch: 7 },
341+
{ name: "Maria Angela Fiorentini", title: "Law Student", batch: 7 },
342+
{ name: "Parul Anand", title: "Law Student", batch: 7 },
340343
],
341344
},
342345

src/assets/images/person/anand.png

147 KB
Loading
86.9 KB
Loading

src/assets/images/person/muñoz.png

89.6 KB
Loading

src/markdown-pages/anand.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "Parul Anand"
3+
title: "Law Student"
4+
report: "https://cdn.kleros.link/ipfs/QmYiakYqNxhp1uRny13TPZc9dnfXbo2oZyzd2xD79q86F4/parul-anand-report.pdf"
5+
---
6+
Parul Anand is an undergraduate law student who is interested in the intersection of technology, law, policy and society. Currently, she is exploring AI, ethics and policy – while she has been previously engaged with Blockchain, law, and policy. Her experience includes several internships and research projects in these fields. Apart from that, she is also a certified Yoga teacher and an aspiring mural artist.
7+
8+
Her research investigates the intersections of blockchain, AI, law, and policy, specifically examining whether decentralized justice — using Kleros’ blockchain-based arbitration platform — could address intellectual property rights (IPR) disputes in generative AI. Using AI-generated art as a case study, her work examines the potential of integrating blockchain-based digital rights frameworks with Kleros' arbitration system as a novel solution for IPR conflicts in AI-generated content.

src/markdown-pages/fiorentini.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "Maria Angela Fiorentini"
3+
title: "Law student"
4+
report: "https://cdn.kleros.link/ipfs/QmY1RQaJJEJ7wHcGaPYj7a6r4EbBoyZ86EA8pCucbqEeDX/maria-fiorentini-fellowship-report.pdf"
5+
---
6+
Maria Fiorentini is an Argentinian law student with expertise in technology, mostly Blockchain and Artificial Intelligence. She is part of Mujeres en Crypto Core Team and co-founder of Mujeres en Derecho. She is also certified as Legal Project Manager.
7+
8+
Her research focuses on integrating a precedent system into Kleros to improve its effectiveness and reliability as a decentralized justice platform. The study outlines two key milestones: (i) establishing the importance of precedents, and (ii) designing Kleros’ precedent system. Through comparative analysis of established legal tools like LexisNexis Shepard and Westlaw, it identifies essential features for Kleros, including advanced search, AI classification, cross-referencing, and predictive analytics. Emphasizing the need for transparency and democratized access, the paper highlights how a robust precedent system could guide jurors, enhance consistency in rulings, and elevate Kleros' operational efficiency in decentralized justice.

src/markdown-pages/muñoz.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: "Darío Echeverría Muñoz"
3+
title: "Lawyer Specialist in Digital Law - Researcher"
4+
report: "https://cdn.kleros.link/ipfs/QmaqtbJfbMZHZqbGUGfXsx513SWbedxiaL2Dubjwpa7zrE/msc.dar-o-echeverria-mu-oz-ll.m.-report.pdf"
5+
---
6+
Darío Echeverría Muñoz is a dedicated Ecuadorian lawyer with a passion for leveraging technology to shape the future of law. He holds a specialization and master’s degree in financial, Securities, and Insurance Law, as well as an LL.M. in International Business Law. Currently, he is completing his master’s degree in digital economy law.
7+
8+
His expertise lies in the intersection of law and technology, particularly in the areas of blockchain, crypto assets, artificial intelligence, and data protection. He has actively shared his knowledge through speaking at international conferences, publishing articles, and mentoring students.
9+
As a Fellow during the 7th Kleros Fellowship batch, Darío undertook the research project titled "Implementation of Kleros in Tokenized Stock Dispute Resolution." This innovative study explored the potential of blockchain-based decentralized justice to address the unique challenges of resolving disputes related to tokenized shares in Ecuador.
10+
11+
Darío's research aligns with Ecuador's 2020 Law of Modernization of the Companies Law, which enables the issuance of dematerialized shares and paves the way for share tokenization. By analyzing the integration of Kleros into Ecuador's legal framework, Darío's work contributes to the development of a robust legal infrastructure for the digital asset economy.

src/pages/fellowship.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ import Zeballos from "src/assets/images/person/zeballos.png";
3939
import Gaspar from "src/assets/images/person/gaspar.png";
4040
import Tewari from "src/assets/images/person/tewari.png";
4141
import Poenicke from "src/assets/images/person/poenicke.png";
42+
import Muñoz from "src/assets/images/person/muñoz.png";
43+
import Fiorentini from "src/assets/images/person/fiorentini.png";
44+
import Anand from "src/assets/images/person/anand.png";
4245
import Config from "../../gatsby-config.js";
4346
import Questions from "src/intl/en.json";
4447
import Slider from "react-slick";
@@ -49,19 +52,22 @@ import "slick-carousel/slick/slick-theme.css";
4952

5053
const PHOTOS = {
5154
Abad,
55+
Anand,
5256
Archila,
5357
Bergolla,
5458
Carrera,
5559
Comenale,
5660
Deplano,
5761
Duarte,
62+
Fiorentini,
5863
Galindo,
5964
Gaspar,
6065
Goldstein,
6166
Gudkov,
6267
Lin,
6368
Lowther,
6469
Mohammadi,
70+
Muñoz,
6571
Narozhny,
6672
Obafemi,
6773
Oladimeji,

src/templates/bio.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,28 @@ import Zeballos from "src/assets/images/person/zeballos.png";
3030
import Gaspar from "src/assets/images/person/gaspar.png";
3131
import Tewari from "src/assets/images/person/tewari.png";
3232
import Poenicke from "src/assets/images/person/poenicke.png";
33+
import Muñoz from "src/assets/images/person/muñoz.png";
34+
import Fiorentini from "src/assets/images/person/fiorentini.png";
35+
import Anand from "src/assets/images/person/anand.png";
3336

3437
const PHOTOS = {
3538
Abad,
39+
Anand,
3640
Archila,
3741
Bergolla,
3842
Carrera,
3943
Comenale,
4044
Deplano,
4145
Duarte,
46+
Fiorentini,
4247
Galindo,
4348
Gaspar,
4449
Goldstein,
4550
Gudkov,
4651
Lin,
4752
Lowther,
4853
Mohammadi,
54+
Muñoz,
4955
Narozhny,
5056
Obafemi,
5157
Oladimeji,

0 commit comments

Comments
 (0)