<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Przemysław Thomann</title>
    <description>The latest articles on DEV Community by Przemysław Thomann (@mobycrypt).</description>
    <link>https://dev.to/mobycrypt</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F480639%2Fa31065ef-3db4-4a24-99bb-8fa2749aeba2.jpeg</url>
      <title>DEV Community: Przemysław Thomann</title>
      <link>https://dev.to/mobycrypt</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mobycrypt"/>
    <language>en</language>
    <item>
      <title>Reading from "blockchain" - how it exactly works?</title>
      <dc:creator>Przemysław Thomann</dc:creator>
      <pubDate>Mon, 02 Oct 2023 12:25:42 +0000</pubDate>
      <link>https://dev.to/mobycrypt/reading-from-blockchain-how-it-exactly-works-85n</link>
      <guid>https://dev.to/mobycrypt/reading-from-blockchain-how-it-exactly-works-85n</guid>
      <description>&lt;p&gt;Blockchain "engineering" has a lot &lt;strong&gt;illusions&lt;/strong&gt;. Are you building a dapp? Is your client application reading data from blockchain? Do you think it's decentralized? &lt;strong&gt;Unfortunately not&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For some it's still a biggest misconception about "decentralized applications/DAPPs" engineering - "reading data from blockchain". We build apps which are decentralized, because they operate with blockchain and smart contracts. In the same time the path, route, infrastructure between user (and his client like Internet browser) and blockchain in most cases is &lt;strong&gt;based on centralized infrastructure provider&lt;/strong&gt;. Should we call it decentralized apps then?&lt;/p&gt;

&lt;p&gt;How it works exactly? Whenever you enter the DAPP (web page) which reads data from the blockchain - it reads it from a &lt;strong&gt;blockchain node&lt;/strong&gt;, through a &lt;strong&gt;provider&lt;/strong&gt;. Does it mean that DAPP creators operate a node and integrated a provider in their DAPP (web page)? In some cases yes but mostly not. So how is it possible that it all works?&lt;/p&gt;

&lt;p&gt;The magic behind it is something you have probably installed in your browser - &lt;a href="https://metamask.io/"&gt;MetaMask&lt;/a&gt; (or other wallet extension like &lt;a href="https://rabby.io/"&gt;Rabby&lt;/a&gt;). These wallets maintain &lt;strong&gt;blockchain nodes on their servers + inject a provider&lt;/strong&gt; to DAPP (web page) so it can communicate with blockchain. That's the whole magic.&lt;/p&gt;

&lt;p&gt;Now, what if you design a DAPP which should work even if user doesn't have Metamask installed? It's a problem - because you have to create your own provider for you DAPP. How? It's easy if you have your &lt;strong&gt;own blockchain node&lt;/strong&gt;. But cmon, who runs own Ethereum blockchain node? Unfortunately almost none - we use service providers like &lt;a href="https://www.alchemy.com/"&gt;Alchemy&lt;/a&gt; , &lt;a href="https://www.quicknode.com/"&gt;QuickNode&lt;/a&gt;  , &lt;a href="https://moralis.io/"&gt;Moralis&lt;/a&gt; , etc. which allows to easily connect to their nodes + have a lot of nice SDK to use (like showing all collections NFTs, etc.). So to summary - is it enough to register in any web3 service providers, get access to web3 provider full node on my DAPP web page and it should work? Unfortunately not really.&lt;/p&gt;

&lt;p&gt;Why? Web3 service providers are paid (except free tier), what means that you pay for the service. You get unique, private API KEY to use which &lt;strong&gt;you don't want to expose public&lt;/strong&gt;. It means that in your DAPP architecture, your client (webcpage) should connect to your backend service, which then connects to web3 service provider. This creates 2 centralized dependencies: &lt;strong&gt;your backend service infrastructure + web3 provider&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Can this be solved somehow to be truly decentralized? Best architecture: every user has a wallet extension connected to his self hosted full node. That's the Bitcoin spirit. Unfortunately impossible scenario for Ethereum (too heavy node). To design a DAPP which doesn't require users to have Metamask for reading data from blockchain, you could maintain own full node, so you eliminate described above web3 provider. It would eliminate 1 centralized provider from the architecture - web3 provider service company. But for most startups + companies it's also not a case. Most use and will use providers due to lower costs (especially at the beginning).&lt;/p&gt;

&lt;p&gt;Is it all bad? Bitcoiners will say that yes, that's sux. As a Bitcoiner I agree from "Bitcoiners point of view" but as a EVM builder &amp;amp; DLT architect I will say that in the end we read data from blockchain and it's the clue. Still I believe it's important that there is &lt;strong&gt;kind of illusion in that space and architecture&lt;/strong&gt; which is important to be aware of - especially for not deeply tech involved people.&lt;/p&gt;

&lt;p&gt;Follow me on Twitter: &lt;a href="https://twitter.com/mobycrypt_com"&gt;https://twitter.com/mobycrypt_com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>web3</category>
      <category>blockchain</category>
      <category>programming</category>
    </item>
    <item>
      <title>So I started a new project. Addicted builder confession.</title>
      <dc:creator>Przemysław Thomann</dc:creator>
      <pubDate>Thu, 14 Sep 2023 11:00:10 +0000</pubDate>
      <link>https://dev.to/mobycrypt/so-i-started-a-new-project-addictive-builder-confession-6je</link>
      <guid>https://dev.to/mobycrypt/so-i-started-a-new-project-addictive-builder-confession-6je</guid>
      <description>&lt;p&gt;~3 years ago I've published here &lt;a href="https://dev.to/_pthomann/how-i-lost-1-year-of-life-doing-failed-crypto-startup-5hlp"&gt;my story&lt;/a&gt; of building failed crypto startup. I spent whole year on hardcore coding a crypto &amp;amp; token exchange, without any income and without any serious reason to succeed. Time passed and I'm doing a next project. Again. Similar to previous. Why? Let me share my motivations, goal and honest confession.&lt;/p&gt;

&lt;p&gt;So my motivation building a new thing? &lt;strong&gt;Enjoy it&lt;/strong&gt;. I will explain why and how. My article from 2020 ends with the details about my new project, which I actually started to build after trading platform startup failed. Because I'm professionally involved in blockchain and wanted to stay in it, I told to myself that the next thing I want to build will be about &lt;strong&gt;Bitcoin&lt;/strong&gt; - because it was the most exciting thing for me from this whole "blockchain/crypto" space. So I started to build &lt;strong&gt;Bittery - better Bitcoin&lt;/strong&gt; payments platform.&lt;/p&gt;

&lt;h2&gt;
  
  
  I build Bittery!
&lt;/h2&gt;

&lt;p&gt;Bittery idea was to allow e-commerce + physical stores to integrate Bitcoin payments, especially Lightning Network (LN) payments. LN is like a second layer of Bitcoin, and it really allows for quick (seconds), cheap (like 0.01 cent) micro-transactions (like 1 cent) on Bitcoin. It's a complex, developing tech. Bittery was supposed to be such payments provider (SASS) for businesses. I learned on mistakes from previous project, so I really wanted to build this product in the way it won't have to obey or follow strict regulations (I mostly failed on previous project because of it).&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Bittery landing page&lt;/em&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--j8R91vIj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5c72bbrc4e692mna4ab0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--j8R91vIj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5c72bbrc4e692mna4ab0.png" alt="Bittery landing page" width="800" height="367"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I build my projects fast - I mean, &lt;strong&gt;I sacrifice typical enterprise software engineering principles and processes for a fast outcome&lt;/strong&gt;. Is it good or bad? Well, for sure no-one would hear on tech interview, that I have a docker-compose setup, simple bash deployment scripts, actually zero unit test coverage and a lot of repetitions in code. I have an enterprise engineering background so I know how to make things properly, but it's just not needed or sometimes I'm just lazy and want to move forward. The goal in startup product or "indie project" is to build a thing fast, at least this is my opinion.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Bittery UI - users can crypto create payment widgets, even generate PDF invoices&lt;/em&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--cwZiX2uL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ixe24gk6drqegwhn7ta2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--cwZiX2uL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ixe24gk6drqegwhn7ta2.png" alt="Bittery user UI" width="800" height="389"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;So after half year of work I built Bittery. And it worked - so again, I built a product, wohooo! And guess what - again I didn't built any business! Why? I kind of overestimated the possibilities of the technology. My platform ended up as a "centralized" Lightning Network infrastructure provider for users, including hosting their wallets, what means -&amp;gt; controlling their funds. I didn't want it initially but unfortunately it is how LN works. Without talking with any lawyer (I even did it) I knew that it sux - I jump to regulatory box and this is not a "startup" I would handle "cheap" (at least initially), how I planned. Worth to mention also that this time I wanted to build a team, but it's really hard to find anyone be excited about Bitcoin. Even if Bitcoin has the biggest marketcap on the cryptocurrency market, it is a small tech space. LN is quite small, even now in 2023, comparing to other platforms (DEFI). People are excited and engaged with other things (Ethereum, L2, DEFI, NFTs, etc.) but not with Bitcoin payments. &lt;/p&gt;

&lt;p&gt;And last thing, lol - why would anyone spend their Bitcoin? Yeah...&lt;br&gt;
More details about Bittery are &lt;a href="https://www.mobycrypt.com/bittery/"&gt;here&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's next?
&lt;/h2&gt;

&lt;p&gt;Have you ever failed a project? Or have you wasted time on something what didn't succeed? Probably you know this feeling of "&lt;strong&gt;no more sh*t like that&lt;/strong&gt;". You are tired and say to yourself: never more. Technology starts to be awful. No more tech/startup podcasts, no more learning new UI library, no more socials, because you don't want to see successful happy faces. You play your guitar more, you watch Netflix more, you spend more time outside, maybe with friends and enjoy everything what is not related to tech. Maybe you work with tech, but if you do, it's only work, minimum engagement. Do you know that feeling? In most cases it appears when you resign with something you built and... passes after few months.&lt;/p&gt;

&lt;h2&gt;
  
  
  Stagnation
&lt;/h2&gt;

&lt;p&gt;After Bittery I told to myself, that I want to learn more and don't try any idea until I'm not really sure it will work. I must admit that failing projects &lt;strong&gt;learns you&lt;/strong&gt; to validate ideas quickly. Especially talking with tech friends having next cool idea - you can quickly position yourself in the place they are (without your failures) and based on it assess if the idea is worth engagement or not. In most cases it's not.&lt;/p&gt;

&lt;p&gt;So I didn't build anything new for ~2 years. And it was fine. I worked as a blockchain architect, did some freelance, and joined new company to build blockchain competences. Learning caused good outcome. But I didn't build, my validation process was rejecting everything came to my mind.&lt;/p&gt;

&lt;p&gt;And finally few months ago I started new thing. Again.&lt;/p&gt;

&lt;h2&gt;
  
  
  I'm addicted builder
&lt;/h2&gt;

&lt;p&gt;Yeah, I think I'm addicted builder. I enjoy building new software very much. I prefer spending my evening on coding rather than anything else (in most cases). I had to realize that and act accordingly. &lt;strong&gt;And I believe it's very important&lt;/strong&gt;. Why?&lt;/p&gt;

&lt;p&gt;You can't do everything. Thinking about startup or business is never related to reality of running it. I don't know it from autopsy BUT come on - Internet is full of content related to that. If your project, product, startup would succeed - if you with to be a CEO, there is no more coding anymore. If you like it, ok - but well, I'm addicted builder, so?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--smq0aL1G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ue8tomu6pulz39kbqxyl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--smq0aL1G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ue8tomu6pulz39kbqxyl.png" alt="Garage" width="800" height="671"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;I realized that I love building things and I don't want to leave the garage.&lt;/strong&gt; This is why, the things I build must be quite specific, not in the sense popular startup products are. Blockchain gives opportunity to build such a products - there can be no formal barrier between user and a product, they just need to have a "wallet" and you just have to build a product. If it's specific enough, without aspirations to be next unicorn, you can never leave the garage, just build and expand it.&lt;/p&gt;

&lt;p&gt;And we like build interesting things right? For most devs just a process of programming is interesting enough, that they can build anything. But when a project becomes business, then domain becomes important. Is it really interesting for you? Do you want to wake up every morning being a CEO of the  next "online notes" SASS? It's ok if you want, but I don't. One confession to make is that I never ever wanted to do projects which domain is not interesting for me. And never did. And I don't want to change that. &lt;/p&gt;

&lt;p&gt;So after this smart speech, let me introduce you...&lt;/p&gt;

&lt;h2&gt;
  
  
  Stateborn - minimum trust democracy
&lt;/h2&gt;

&lt;p&gt;Isn't that a cool name? State Born. Product for states to born. I build a new DAO platform. What's that? It's one of the first blockchain use-case concepts: instead of companies as they exist now (formally registered in some countries) we use smart contracts entities governed by blockchain tokens. Users can vote, DAOs can own assets, etc. Very intriguing concept, at least for me.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://stateborn.org"&gt;stateborn.org&lt;/a&gt; is quite unique, because it is build based on some experimental approach: it's off-chain DAO with on-chain (blockchain) non-permissioned DAO treasury which should be governed by off-chain voting. It might sound complex but believe me, it's challenging domain. If you are interested in more details, read about it here: &lt;a href="https://stateborn.org/onchain-dao"&gt;stateborn protocol&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--o4nA7fK5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1xnc1hip6ik90uhvptrm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--o4nA7fK5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1xnc1hip6ik90uhvptrm.png" alt="Stateborn UI" width="800" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What is my purpose with stateborn? I don't necessarily build a startup now. I mean if it will succeed in that "startup" sense, I would love it, but it's not my intention. &lt;strong&gt;My mind is now clear, because I just build.&lt;/strong&gt; There is no pricing, because it's free! It's open source (first time ever). I just build and explore the ideas I'm passionate. I have a cool ideas to share, definitely! And.. I probably gonna even have a partner soon!&lt;/p&gt;

&lt;h2&gt;
  
  
  What can you learn?
&lt;/h2&gt;

&lt;p&gt;Come on, I won't give any lessons. I just wanted to show you, that I build with a clear mind. I learn new things, I experiment with things which I would not if I would have a typical "startup" oriented mindset, because I don't have any business model for what I'm building. It became my hobby, passion rather than a struggle. I had to admit some things to myself, resign with some sick ambitious, but I feel healthy now. I mean - I'm still addicted, yes - but I consider it as a healthy thing at the moment. Will it stay like that? I don't know - lol, I even hope not, because I have a big plans for stateborn!&lt;/p&gt;

&lt;p&gt;I gonna document stateborn on my Twitter. Exciting topic. Just started. Join me with that journey and see where it goes! &lt;a href="https://twitter.com/mobycrypt_com"&gt;Follow me on Twitter!&lt;/a&gt;&lt;/p&gt;

</description>
      <category>startup</category>
      <category>career</category>
      <category>blockchain</category>
      <category>discuss</category>
    </item>
    <item>
      <title>How I lost 1 year of life doing failed crypto startup</title>
      <dc:creator>Przemysław Thomann</dc:creator>
      <pubDate>Mon, 05 Oct 2020 19:26:59 +0000</pubDate>
      <link>https://dev.to/mobycrypt/how-i-lost-1-year-of-life-doing-failed-crypto-startup-5hlp</link>
      <guid>https://dev.to/mobycrypt/how-i-lost-1-year-of-life-doing-failed-crypto-startup-5hlp</guid>
      <description>&lt;p&gt;In April 2019 I decided to completely stop developing my cryptocurrency project ending entire year of full time work in failed tech startup which I wanted to create. During that time:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I spent about &lt;strong&gt;2200 hours&lt;/strong&gt; hardcore coding, writing, meeting, pitching, calling and everything else related to building a startup – in that case a software product;&lt;/li&gt;
&lt;li&gt;implemented ~ &lt;strong&gt;80 000 lines of code&lt;/strong&gt; which never experienced production usage;&lt;/li&gt;
&lt;li&gt;registered company which did not gained &lt;strong&gt;any profit only expanses&lt;/strong&gt;;&lt;/li&gt;
&lt;li&gt;spent about &lt;strong&gt;10 000 USD&lt;/strong&gt; on life living costs without any income;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I would like to share my story. I believe it may be an inspiration and bring some answers for anyone who dreams about running own startup. During that time I’ve done tons of mistakes but I’ve also achieved a lot of milestones. This was a very interesting adventure and I believe anyone can enjoy that chronicle.&lt;/p&gt;

&lt;p&gt;I invite you for the story of a dream and the failure.&lt;/p&gt;

&lt;h1&gt;
  
  
  How it all started
&lt;/h1&gt;

&lt;p&gt;At the beginning of 2016 I’ve joined Volvo Group as a regular Java developer. I just got my MCs degree in computer science. I was a fresh graduate but already with a few years experience on professional IT market. The project I joined was quite interesting. Old technologies however international environment and planned business trips (to France). As young ambitious developer I wanted to learn modern technologies however I decided that big project will allow me to get a valuable experience.&lt;/p&gt;

&lt;p&gt;It was a time when my professional carrier widely started. The end of university duties. Well paid job. I loved to be software developer but sadly I already felt meaningless of work I do. It was not specifically about Volvo Group – it was my perception of overall IT market, especially here in Wrocław where I live. I always had rebel soul being a metal guy and always consider myself to be against the machine. Unfortunately I had very critical opinion about the IT market surrounding me. A lot of foreign corporations and a lot of companies making software for foreign corporations. Very income oriented industry. Of course it’s the main goal of every business – to generate profit. However I was in the moment of my life where I wanted to be part of something purposeful, at least in my eyes. Unfortunately there was lack of purpose in the work I could do. Also everyone around doing carrier was focused mainly on making money. Simply what I saw around didn’t satisfy my personal need of challenging growth in the name of something meaningful.&lt;/p&gt;

&lt;p&gt;I’ve heard about Bitcoin for the first time in 2016. In Volvo I’ve met some Bitcoin geeks who introduced me to the world of blockchain and cryptocurrencies. The topic interested me extremely quickly. Since childhood my personal interests were focused on computers and this is why I’ve decided to study computer science. There was a time however when I really wanted to study economics what ended as a broken dream. Taking into consideration all of my interests and my internal conflicts  – blockchain and cryptocurrencies got sucked me very quickly. Bitcoin represents for me a technological resistance movement. It is the tool against a broken economic system and it has a purpose. What’s the best – I could be part of it. I fell in love in this unique and extremely intriguing movement connecting computer science and economics at first place but also other spaces like social science or even politics.&lt;/p&gt;

&lt;p&gt;I’ve met Bitcoin in quite interesting time. I could observe the great rise of blockchain. 2017 year ended with all-time high Bitcoin price which reached almost 20 000 USD. The Bitcoin hype was everywhere and everyone was talking about it. New cryptocurrencies were created every day, new different businesses and projects were emerging. Among many interesting projects for a software geek like me there was the “holy grail” of all crypto businesses. That business during the 2017 was focusing most crypto world attention and was earning extreme amounts of money: a cryptocurrency exchange.&lt;/p&gt;

&lt;p&gt;I’ve always been passionate developer and I simply love to code. Learning software methodologies, mastering best coding practices, trying new libraries and tools, building own products. I believe the love to code drives people to work in open source projects, start freelancing, open software houses and finally try to create software startup. The work I was doing in Volvo was not enough to satisfy my needs of coding. I needed more autonomy, more challenges and I felt I could do more. Corporation couldn’t give me what I wanted in that time.&lt;/p&gt;

&lt;p&gt;It took a whole year and I didn’t expect that the seed inside me will grow to something what will change my life inevitably. But it happened. The idea or even obsessive dream of having own cryptocurrency exchange born in my head at the end of 2017. I felt it is something what will allow me to feel fulfilled: the work in the blockchain space developing the technology of the new open financial system. None knew how Bitcoin future will look like but some were expecting it’s going to change the world. I believed in that too. 2018 however was not going to be that time yet.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 1: The beginnings of Cryptomeda.
&lt;/h1&gt;

&lt;p&gt;At the end of 2017 more precisely in August I initialized my new cryptocurrency exchange project – without the name yet. Decided to use Java for backend and Vue.js for frontend. I love the story of Moby Dick, the great white sperm whale which couldn’t be hunted by humans. A whale has rather negative meaning in crypto world – this is how are described rich traders who often manipulate the market. I didn’t care. I liked to think about the platform that deals with crypto that it will be against the system. My platform was going to become the great whale of the crypto ocean.&lt;/p&gt;

&lt;p&gt;I was spending time on my side project mainly after regular job and at weekends. After some time it was noticed by close friends and family members. I was slowly introducing myself to the startup world by reading and learning what should I do and how should I behave. One of the things which I read I should do was telling everybody that I build a startup. The positive effect of that suppose to motivate me more to work and focus on the project since everyone expected me to succeed.&lt;/p&gt;

&lt;p&gt;Everyone I knew thought that my idea is crazy. At the beginning of 2018 I decided to go for the &lt;a href="https://startupweekend.org/" rel="noopener noreferrer"&gt;Startup Weekend&lt;/a&gt; in Łódź and try to search potential co-founders. It’s the event where during a weekend people simply try to build a startup idea. It was good experience however all I heard was how low chances I have with such serious business idea.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Me pitching in Startup Weekend. First time I could taste some of a startup world and meet few interesting people.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F670d8nrrxfgwlf7xi5st.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F670d8nrrxfgwlf7xi5st.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;There was one of my relatives however who liked the idea of the cryptocurrency exchange and gave me the serious business proposal to make it together. I liked it since he had business experience (however not in IT field). The deal was simple: I put 10 000 USD and focus on product development, he gives 40 000 USD and focuses on the business. I accepted it. That proposal gave me a kick. I started to code more and more and plan how the platform can start to really work for customers.&lt;/p&gt;

&lt;p&gt;We showed names proposals of our new common project to relatives and close friends. MobyCrypt lost the voting. Our new project name was Cryptomeda.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 2: I quit my job.
&lt;/h1&gt;

&lt;p&gt;It didn’t take so much time to start having problems with my regular job. My thoughts were all around Cryptomeda and there was still my regular job where I was working on the different project. The regular job was taking me about 10 hours every day. When I was coming back home at 6 p.m. I had not much time to work until I was really tired and had to go sleep. I was living with my current wife at that time, so I was not independent only.&lt;/p&gt;

&lt;p&gt;In January 2018 after negotiations with my boss I reduced the time working in Volvo to 20 hours per week. I worked 2 days at Volvo and then had full 5 days at home (including weekend). The salary was enough to cover life expanses: mostly flat rent and food. The project was accelerated, and I was really motivated to work.&lt;/p&gt;

&lt;p&gt;3 months passed by quite quickly and Cryptomeda started to have very easy UI. Coding was all I was focused on every day, and I was putting great attention to the details especially on the backend side. I knew that cryptocurrency exchange platform requires very good and flawless performance. My main goal was to handle 5000 tx/s. Coding backend features, frontend UI and unit tests – this is how my every day looked like.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Cryptomeda at March 2018. Most my focus was on backend side engine implementation. Beginnings of the UI.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F621flciayqg75xb3i5qv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F621flciayqg75xb3i5qv.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It was good for me to work 2 days and be paid in a regular job. Rest of the week I could spend on Cryptomeda. However, I felt that I need to focus full time on the project. My partner was more and more willing to start doing something more about the potential Cryptomeda company. I decided – in March 2019 I was ready to quit my job. This was very irrational in that time. I remember when I shared my decision with my current wife parents. They told me I need to have at least 50 000 USD of free cash. I had a bit more than 20% of that. However,  things went quickly. I described everything to my team members and manager. March was going to be my last month in Volvo Group.&lt;/p&gt;

&lt;p&gt;At the middle of March my partner called me to meet in the coffee house and talk about the project. I was quite happy that things are moving forward. I remember that day very clearly because I was first in the place and my partner was late. Some negative thoughts came to my mind. I felt something bad in the air. When he came I knew bad news are coming. Few minutes later he told me that he will not be my partner in that business. Basically he just resigned. I was left alone with huge mess in my head and without any realistic future plan.&lt;/p&gt;

&lt;p&gt;From big perspective everything changed and I should give up. But I was already too much involved with the vision of creating the startup. I wanted to fulfill my plans and March 2018 after 2 years in Volvo was the last month of my regular job.&lt;/p&gt;

&lt;p&gt;After I left that coffee house the project wasn’t Cryptomeda anymore. The MobyCrypt has reborn.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 3: Startup life.
&lt;/h1&gt;

&lt;p&gt;With the beginning of April 2018 I’ve started to work from home. My day was usually starting around 8 a.m. and I was coding until my (current) wife came back from work. She was very supportive for me. Telling true I had not too much home duties, I was not even cooking – so basically I was coding until evening or even further. And this is how days were passing. Even weeks. There was not too much to talk about MobyCrypt with family or friends because there was nothing really interesting to show. I also didn’t want to argue about the irrational decision of leaving my job. In fact I was more and more separated from everybody. I didn’t go out too much, didn’t enjoy meetings. I was focused only on the work.&lt;/p&gt;

&lt;p&gt;From the development perspective I was working on matching engine implementation and exchange UI – but still it was nothing extraordinary. It wasn’t the simple application to develop how I thought before it will be. Everything I was coding – all the complex features were basically required components of any cryptocurrency exchange. The amount of work was overwhelming but I could handle this. The lack of extraordinary was something what in the beginning of holiday period started to worry me much more.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Intellij was my main work tool. The screenshot of the project (already from the 2019). Backend codebase is about 65 000 lines of code.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fscvf98ds1j0uyrnxvmbu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fscvf98ds1j0uyrnxvmbu.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;End of 2017 was all-time high for cryptocurrencies and 2018 was the beginning of the price downfall. Bitcoin was losing the value very drastically and to be honest you could hear about it less and less often. Cryptocurrency exchanges were fighting to get users attention. It was not a bad year but was not the year of hype, and we were just about in the middle of that year. I started to worry if my product has any sense in that time.&lt;/p&gt;

&lt;p&gt;There were of course much more things which worried me. First I was all alone. Just after my potential partner told me it’s over – I decided to try search partners on few Facebook groups. There was not much attention since I was very critical to the people I was searching. I expected full engagement – I was involved full time in the project and was expecting at least 20 hours a week in the project from anyone who would like to join me. Secondly – I was searching for developers because this is what I thought is the most important at that moment. Doing startup is of course not so simple but it wasn’t yet the time for me to find it out. I didn’t find any partner.&lt;/p&gt;

&lt;p&gt;In May 2018 I went to Amsterdam for a blockchain conference organized by some Polish guys. One of them wrote a post on Facebook offering free ticket. Not thinking too much I took it. It was a nice trip for me. I met some projects from blockchain space, for example Aeternity team. Unfortunately I couldn’t find anyone interested with MobyCrypt. Every project there was focused on searching attention exactly the same as me.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Me in front of Chainges conference venue. Amsterdam, Holland.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fdvnswaug0xrrr23z4wc7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fdvnswaug0xrrr23z4wc7.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;The conference was very fancy with a lot of blockchain projects showcases.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fkdlyj7l0zj2xyhrlk6at.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fkdlyj7l0zj2xyhrlk6at.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I started to believe that being traditional cryptocurrency exchange was not enough to build successful business. This thought was growing in my head and started to have more and more impact on my motivation to work. I knew I want to build cryptocurrency exchange but I felt I must be different from others. Not only better exchange but to bring something fresh to the market.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 4: Exchange prototype ready.
&lt;/h1&gt;

&lt;p&gt;At the end of May 2018 so 2 months after I left Volvo I had the cryptocurrency exchange prototype finished. I was ready to show it to some bigger audience (with focus on crypto geeks which would be eager to test it). Also, I wanted to try again searching potential co-founders. This time I had not only the idea but also the working prototype. On 31 May I posted in the Bitcoin Polska Facebook group:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;My post to the Bitcoin Polska Facebook group about MobyCrypt prototype.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fyt6q4nwfzmwyz2qfstsv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fyt6q4nwfzmwyz2qfstsv.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The interest was not spectacular however I got some attention and questions. Unfortunately most questions were about the technologies used in the project. Now I am not surprised with this lack of attention but at that time I expected that something will change. Few hours passed, few days passed and nothing happened. Google Analytics showed some traffic but very little. There were few registrations.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;MobyCrypt main page. The great whale was swimming from one edge of screen to another.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F1iuhzjjul3c0fs7m7vpa.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F1iuhzjjul3c0fs7m7vpa.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Overview of MobyCrypt exchange UI.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fw7s0t75rc3w94adkjgrw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fw7s0t75rc3w94adkjgrw.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Among all the feedback and contact requests I received unique one. This lead to another chapter of MobyCrypt story where I had the chance for the first real and valuable partnership. In order to meet with my potential co-founder I needed to visit Poznań.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 5: I have the co-founder.
&lt;/h1&gt;

&lt;p&gt;In Poznan I’ve met a lawyer. He owned a law firm. We spend about half day together, and we found the synergy of working together on MobyCrypt. I had the prototype of a cryptocurrency exchange. Even better – I had new interesting idea of unique services MobyCrypt could offer. My potential co-founder had appropriate resources, experience and knowledge – he could provide legal and formal help in running MobyCrypt as a company. We agreed to start working together.&lt;/p&gt;

&lt;p&gt;The day I was coming back to home from Poznań was also the day which gave me another power kick. There was someone who could help me with a project and saw a real business potential in it. Such stories, such deals usually don’t have happy ending and it was also going to be my case too, but I was not aware it yet. I was thrilled and motivated.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 6: Tokenize your brand.
&lt;/h1&gt;

&lt;p&gt;Second half of 2018. It was a time that the concept of tokenization was becoming more popular. The success of cryptocurrencies going mainstream was mostly the Ethereum platform and all the ICOs made on it. There were hundreds of tokens which were used to raise capital for many cryptocurrencies projects born in 2017 bubble. MobyCrypt was going to allow trading these tokens however I started to think different. What if MobyCrypt would offer easy token creation and going further: to become the tokenization business, deliver everything required for anyone to issue and use a token? Companies would use such token as a marketing tool or even for rising the capital. That thought was big and it started to be pretty interesting pivot in MobyCrypt story.&lt;/p&gt;

&lt;p&gt;During whole 2018 cryptocurrencies prices were falling. It was the end of the bubble. If I would even think about doing crypto exchange at that time then I would probably not even start. But I was already on my way. The new concept of MobyCrypt platform was to be the tokenization center. This concept of tokens was very interesting for me. I was sure I have the new undiscovered idea, not present on the market yet. As I mentioned before – I shared that ideas with my co-founder and he really liked it.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F79fga8dzn0aootvljxu3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F79fga8dzn0aootvljxu3.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;My idea for business was to enable companies, influencers, generally everyone to issue their own personal/loyalty token. That should be kind of digital currency, digital ownership existing on the blockchain. MobyCrypt would allow to create tokens and exchange markets for trading these tokens and even more – possibilities to utilize them. How?&lt;/p&gt;

&lt;p&gt;People having token could exchange them on services/products of the token owner. Thinking about using it for a business: imagine a company issuing loyalty token which simply represents discount for their services. Let’s say 5000 tokens represents a 5% discount. You buy the necklace in the jewelry store and get 5000 tokens for a next purchase discount. Now having that tokens you can use them but you can also sell them on the MobyCrypt exchange. Someone who needs to buy jewelry can buy your tokens in order to have a discount. In that scenario you gain (because you sold the discount you could probably never use anymore). Buyer gains because probably he bought 5% discount and it was probably good deal. After all also jewelry store gains because they have a new customer to come (with 5% discount but still it’s customer). Sounds interesting? I was excited.&lt;/p&gt;

&lt;p&gt;I accelerated MobyCrypt development because very quickly I wanted to have the platform with features I’ve described. There were quite a lot of technical challenges especially about automatization of token issuing process. I wanted to issue ERC-20 token on the blockchain with the single button click. Also, I had to focus on other aspects of customer ready features like KYC process which was required by regulatory.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 7: The ending and the beginning.
&lt;/h1&gt;

&lt;p&gt;The 2018 holidays passed fast but all I wanted to be ready before the end of summer. My co-founder organized the company registration and the MobyCrypt officially started to be a legal business entity. It didn’t take long however when my relations with co-founder have broken.&lt;/p&gt;

&lt;p&gt;I was very afraid of all the legal aspects of our cooperation with my co-founder. What will be our responsibilities? What will we bring to the company? Finally, what will be the “stocks” share in the business we create? I spent many evenings preparing the founders agreement. I knew that it will be side project for my co-founder and he doesn’t want to involve 100%. He had resources and wanted rather to utilize MobyCrypt in order to strengthen his already crypto related business. I proposed him 35% company share and he agreed. He had also exclusive rights for providing accounting/law services for all MobyCrypt customers. I believe it was too good deal for him without significant risk yet. It didn’t take much time however when I started to feel he is more focused on his businesses rather than on MobyCrypt. We didn’t find any customer yet for MobyCrypt but there was already a proposal for me to do some kind of software development work. I would work already for our new company however I didn’t like it. I wanted to develop MobyCrypt, not to code for anyone.&lt;/p&gt;

&lt;p&gt;Even after some time has passed already – I can’t find out whether I made some serious mistakes in that relation. However, it took us 1 evening to decide that we completely stop working together. Few days later I was left alone. I had to pay for all the services my co-founder already made for MobyCrypt (e.g. terms and conditions page). I’ve also bought all the MobyCrypt company shares from him. I was alone. Again.&lt;/p&gt;

&lt;p&gt;Having the new vision of MobyCrypt I didn’t break up anyway. At the end of October 2018 I was ready with the beta release of the new MobyCrypt. Again I posted on Facebook groups.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Searching first companies to try experimental MobyCrypt tool. Still on testnet but all features were ready.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F8d10nlr8x4df2p94q460.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F8d10nlr8x4df2p94q460.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;My marketing didn’t make a lot of sense. I was showing my product to people who were not going to be my real customers. I had something experimental to offer for users however it was not clear enough what is it. In fact, it didn’t bring any real value for anyone in that time (running on testnet). I found some attention but it was mostly from the people who just wanted to play with it for fun. In fact I even knew how pointless my actions were. But in the same time I was at a standstill because I knew that I cannot yet offer serious service to any company. But I was trying hard.&lt;/p&gt;

&lt;p&gt;During that time I’ve also tried to speak with real businesses about the services MobyCrypt can offer to them. I send e-mails to few polish companies with the proposal of meeting. I’ve received successful response from one of the largest polish coffee house chains. I’ve met with the CEO and talked about some ideas. Unfortunately it was the stage where I was desperately looking someone to help me run MobyCrypt as a business. Sadly I was not yet ready to offer any services independently. We didn’t make any deal, but I was satisfied with the opportunity to meet.&lt;/p&gt;

&lt;p&gt;After all I was disappointed and lost. I started to understand how crazy is my idea in front of the real world. I needed money for better development, marketing, legal and regulation stuff. I knew there are no chances to run it without investment. And I didn’t have the money. All I had was a website and application prototype. In that hard time being alone again someone contacted with me with the interesting proposal. This time the proposal for a deal with the company from the capital – from Warsaw.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 8: The huge vision and the plan.
&lt;/h1&gt;

&lt;p&gt;I’ve met a guy who was closely cooperating with some tech company from Warsaw. They were doing IT related businesses and they were very interested with this catchy cryptocurrency tokens topic. They could provide resources for MobyCrypt and what even more important: very attractive customers.&lt;/p&gt;

&lt;p&gt;My experiences with previous co-founder learned me to be cautious. I wasn’t searching for a fair deal but I didn’t want to be abused. I had the product and I was searching for someone who can offer also something valuable. The concept of fair deal in business is hard to describe. Being the single guy like I was with nothing more than a piece of software running on VPS hosting – I knew I must search for any opportunity.&lt;/p&gt;

&lt;p&gt;The guy who contacted me was quite young but ambitious and startup oriented. I noticed quite fast that he can build relations better than me. After few weeks of online/phone talks he succeeded to organize a meeting with one of the company founders which was interested to run MobyCrypt with me.&lt;/p&gt;

&lt;p&gt;We met in Poznań – exactly the same city where I traveled to meet my previous co-founder. This time I was invited to a classy restaurant. During the 2 hours meeting we ate a dinner and talked about the idea of tokenizing people. The idea where MobyCrypt could become a first company in Poland (or even at the world) which would start to tokenize people – more specifically celebrities, opening them another field to gain profit.&lt;/p&gt;

&lt;p&gt;Few weeks later I was in Warsaw where I’ve met all of my new co-founders. They liked what I did so far and the most especially my vision of MobyCrypt brand. We talked about the future and the details of our cooperation. They had a plan how to monetize MobyCrypt and this plan was aligned with my goals. Additionally, they could provide all necessary development support for running MobyCrypt on production. And what most important: they could reach top celebrities in Poland. I agreed on 20% share of the new business we were going to start.&lt;/p&gt;

&lt;p&gt;The plan was simple. I had to focus on preparing business model and estimate everything what is needed in order to start MobyCrypt not only as a platform but also as a business. Also, I had to prepare for meeting with our first customers. My co-founders job was to organize that first meeting.&lt;/p&gt;

&lt;p&gt;The day I was coming back from Warsaw to home was another day I felt that I achieved some important step. New motivated co-founders with valuable resources and with exciting plan.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 9: Hustle, Turkey and the great meeting.
&lt;/h1&gt;

&lt;p&gt;The 2018 was going to end. I was focused on developing MobyCrypt to work faultless and to have all of the professional platform features. It was a lot of detailed work: backend with its own performance challenges. Frontend needed nice looking main page, password recovery, 2-fa, administrator site.&lt;/p&gt;

&lt;p&gt;At the same time there was only one among my 3 new co-founders who was really involved in the project. We were working on the business plan and were preparing commercial materials. I was few more times in Warsaw where we were working on site. I felt like it was serious involvement from all of us. However, except own time they didn’t spend any money yet.&lt;/p&gt;

&lt;p&gt;Our business model was to enable celebrities to issue their own crypto token. Fans could buy these tokens exchanging them on the celebrity services/products. Think about popular musician and exclusive concert or meeting which could be possible only for tokens owner. People would sell, buy and use these tokens. Everything using the MobyCrypt platform.&lt;/p&gt;

&lt;p&gt;Very important in that case to make sure that everything will be done in accordance to law. We knew that none will make a deal with us if we will not have legal and formal work done. Still, none here was ready spend any money for lawyers if we didn’t have any celebrity ready to issue the token.&lt;/p&gt;

&lt;p&gt;2018 ended and 2019 started. In January, I decided that it’s time to stop development. The platform was ready even if I knew that it required professional testing and security penetration tests.&lt;/p&gt;

&lt;p&gt;From a technical point of view I developed everything I planned since the very beginning. MobyCrypt enabled everyone to issue a token and provide trading markets for that token (dynamically created trading markets in MobyCrypt exchange e.g. Token/BTC). The trading performance could reach about 5000 tx/s per single trading market. It also gave users possibility to send tokens, even utilize them – exchange on the services offered by token creator. There was also tokens catalog page where everyone could promote their tokens. &lt;a href="https://mobycrypt.com/mobycrypt" rel="noopener noreferrer"&gt;Read more about features here&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;MobyCrypt front page. It was a challenge to describe all the features. The topic was unknown for most people.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Flkojuhs9xw4qbbcaavao.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Flkojuhs9xw4qbbcaavao.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;MobyCrypt trading view. Anyone could create market for his token with a single mouse click.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fxsd7qwqvic0b28jkiy7d.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fxsd7qwqvic0b28jkiy7d.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F45ora8gpvnnkf9r96ict.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F45ora8gpvnnkf9r96ict.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F54tg161gts5f6byb11mh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2F54tg161gts5f6byb11mh.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fcairqdu07guluijeuz69.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Fcairqdu07guluijeuz69.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I wasn’t doing any marketing when I’ve finished. All I was waiting was the expected meeting with one of the most popular TV celebrity in Poland.&lt;/p&gt;

&lt;p&gt;It was a time I was also involved as the Aeternity ambassador. I’ve made a &lt;a href="https://mobycrypt.com/aemonitor" rel="noopener noreferrer"&gt;AEmonitor&lt;/a&gt; tool which was awarded by &lt;a href="https://blog.aeternity.com/blockchain-dashboard-bounty-winners-788a2c8a5f79?gi=785fe0826090" rel="noopener noreferrer"&gt;Aeternity Dashboard Bounty&lt;/a&gt;. At the beginning of 2019 I was invited to take part in &lt;a href="https://blog.aeternity.com/https-blog-aeternity-com-the-first-aepps-summit-54eb591a27bf" rel="noopener noreferrer"&gt;Aeternity Aepps Summit&lt;/a&gt; in Turkey. The event was focused on Aeternity blockchain main-net launch. I’ve spent few days with Aeternity team members and it was really great time. The time with a focus on open source community oriented blockchain project also showed me what does meaningful work mean for me. I also understood how far am I from these ideals with the MobyCrypt.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;At Aepps Summit in Antalya, Turkey. Great few days spend on workshops and learning.&lt;/em&gt;&lt;br&gt;
&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Faiiwemv755fy3bjg2vqd.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fi%2Faiiwemv755fy3bjg2vqd.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It was February when I received the message that the meeting with the celebrity is finally scheduled, of course in Warsaw. I was going to present MobyCrypt to the celebrity who probably earns hundreds of thousands USD yearly income and who has own TV show in public television since years.&lt;/p&gt;

&lt;p&gt;My train was at 4 a.m. morning and at about 8 a.m. I was in Warsaw. Few hours later we were in the celebrity office. The atmosphere was very nice, and I was excited however positively scarred of what will happen next. I presented MobyCrypt in the cluttered office simply talking about our idea and showing slides of presentation directly from my laptop screen. It took about 2 hours and the result was great. Thinking that our potential celebrity customer has about 80% recognition in Poland I was corrected that it’s almost 100%. It showed me how big chance we have. Guess what? He was willing to make a deal with us. However, it was clear that it’s not a one way ticket for him in the same way as it was for me. This could be just another business for him – another potential source of revenue.&lt;/p&gt;

&lt;p&gt;Taking into consideration my whole adventure so far – this was the most successful and amazing day in my startup story. This meeting was probably my biggest achievement and showed me that everything is possible.&lt;/p&gt;

&lt;h1&gt;
  
  
  Chapter 10: The phone call and the end.
&lt;/h1&gt;

&lt;p&gt;I didn’t mention before how across the months I’ve changed inside. There were a lot of stressful nights where I couldn’t sleep thinking about the business I’m going to start. I felt overwhelmed with the feeling that I’ve done a software which will have to work flawless. I had a lot of visions how it doesn’t work properly and is causing serious problems. My fears were focused mostly on the software I’ve created because that piece of software was actually all I have done.&lt;/p&gt;

&lt;p&gt;I was also stressed with lack of cash. MobyCrypt was a company and it required monthly payments for accounting and flat renting. My savings for living were going to finish very, very soon.&lt;/p&gt;

&lt;p&gt;Finally there was something else. After the year passed I already knew that my vision of MobyCrypt – the platform which represents the rebel and freedom is a total bullshit. It was everything but no rebel and no freedom. I already knew that we will need tons of regulations and will have millions of formal responsibilities. We were going to closely cooperate with government agencies. Also, the service we were going to offer was mainly going to give profit to rich celebrities and us. I didn’t like it. I hated what I’ve created.&lt;/p&gt;

&lt;p&gt;I also felt that everything is too beautiful to be true. From a simple project completely written by a single guy to top celebrities in the country. Days passed and I started to understand that nothing suppose to happen after our meeting with the celebrity. 3 weeks later I called to my Warsaw co-founders. They told me unfortunately there will be no deal because simply there are completely no law regulations for the service we want to offer. No celebrity will risk doing anything in that scenario. Simply: the whole MobyCrypt vision disappeared during single phone call.&lt;/p&gt;

&lt;p&gt;It was over and I knew it even before the phone call. And I was fine with it. In March 2019 I’ve stopped working on MobyCrypt.&lt;/p&gt;

&lt;h1&gt;
  
  
  Summary
&lt;/h1&gt;

&lt;p&gt;In March 2019 I went for a life trip to Thailand. I rested. I experienced something new. I cleared my mind.&lt;br&gt;
In April 2019 I started new work in the innovative blockchain project concept. Exactly 1 year passed since I quit Volvo Group.&lt;br&gt;
In June 2020 I’ve married and organized really beautiful wedding.&lt;/p&gt;

&lt;p&gt;It’s truth probably that my aspirations were very naive. No real business plan, no team, no users, no money, no marketing – generally no chance to succeed. However, I don’t consider my story as a failure story. This was a beautiful adventure. I’ve developed the greatest portfolio project so far. My technical skills extremely increased. Do I regret it? Maybe a bit. But who can know what tomorrow brings?&lt;/p&gt;

&lt;p&gt;My story is not about a failed project. It’s the story of me. Now I understand that for the whole time I was the MobyCrypt. I was the whale who took adventure through the ocean of unknown. That adventure gave me lot of new experiences. Allowed me to learn a lot. I had a chance to know myself better. I could taste things which I probably never would without starting my journey. Who knows – maybe without MobyCrypt I could be now still a silent developer in Volvo Group?&lt;/p&gt;

&lt;p&gt;I am now the Blockchain Architect at &lt;a href="https://trans.eu/en" rel="noopener noreferrer"&gt;Trans.eu&lt;/a&gt; building the innovative blockchain project for logistics. I’m still in the blockchain space exactly how I wanted at the beginning. Since few months I try to work on my new startup idea: &lt;a href="https://bittery.io" rel="noopener noreferrer"&gt;bittery.io - better Bitcoin payments&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Have any questions? Feel free to ask in the comments.&lt;/p&gt;

&lt;p&gt;If you are interested in my adventure through the Bitcoin, blockchain, cryptocurrencies, software and startup world: &lt;a href="https://twitter.com/_pthomann" rel="noopener noreferrer"&gt;follow me on Twitter&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>startup</category>
      <category>blockchain</category>
      <category>motivation</category>
      <category>career</category>
    </item>
  </channel>
</rss>
