Giter Club home page Giter Club logo

distributed_exchange_truffle_class_3's Introduction

Hi there ๐Ÿ‘‹

๐Ÿ”ญ Iโ€™m currently working on

2024 - RAG+LLMs, Account Abstraction, (Swing) Trading

I started toying around with RAG+LLMs. My Masters Thesis included a lot of text processing, which comes in handy. I am currently playing with Jan.ai, Nitro and many more or less off-the-shelf products to summarize daily news to get actionale bullet points.

I am also trying to get into Swing Trading. I always did trade based on fundamental news, but never tried to get entries and exits right. Currently reading Bob Volman - Understanding Price Action.

I also finally read up on ERC4337 - Account Abstraction and made a litte video about it.

2023 - CloudFormation, NextJS

2023 was a big year for me. I finally got to fully learn Infrastructure as Code. The Morpher Infrastructure is now fully coded in yml files.

Furthermore, I was trying to use Cloudformation in a special way: Building preview environments that clone production: RDS, ECS, Codepipelines with multi-arch builds, Fargate/Spot with EC2 in the mix, and many more. I am a big fan of Vercels previews. I am actively trying to bring them into my workflow with AWS CodePipeline and ECS.

I also started to use NextJS, Tailwind and Framer-Motion. I like those animations a lot.

๐Ÿ’ฌ Ask me about anything, I'm always happy to help.

๐Ÿ“ซ How to reach me: me at thomaswiesner.com

โšก Fun fact: The best place in the world to see rainbows is in Hawaii. But I have never been there.

Languages

Solidity JavaScript TypeScript HTML Java SQL PHP

Technologies

AWS Docker ECS Cloudformation Linux Node.js React Next.js Redis RabbitMQ PostgreSQL Lucene Ubuntu

Tools and Platforms

VSCode Windows Terminal Adobe Premiere Adobe Lightroom Adobe Photoshop Asana Notion Jira Keybase Zoom Camtasia Udemy Cloudflare GitHub Bitbucket

distributed_exchange_truffle_class_3's People

Contributors

ltfschoen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

distributed_exchange_truffle_class_3's Issues

whenever running npm run dev

while i am running npm run dev

ERROR in ./node_modules/bootstrap-loader/lib/bootstrap.scripts.loader.js?{"bootstrapVersion":3,"useCustomIconFontPath":false,"extractStyles":false,"styleLoaders":["style","css","sass"],"styles":["mixins","normalize","print","glyphicons","scaffolding","type","code","grid","tables","forms","buttons","component-animations","dropdowns","button-groups","input-groups","navs","navbar","breadcrumbs","pagination","pager","labels","badges","jumbotron","thumbnails","alerts","progress-bars","media","list-group","panels","wells","responsive-embed","close","modals","tooltip","popovers","carousel","utilities","responsive-utilities"],"scripts":["transition","alert","button","carousel","collapse","dropdown","modal","tooltip","popover","scrollspy","tab","affix"],"configFilePath":"/home/suyash644/Documents/ethexch/ethexchange/exch/node_modules/bootstrap-loader/.bootstraprc-3-default","bootstrapPath":"/home/suyash644/Documents/ethexch/ethexchange/exch/node_modules/bootstrap-sass","bootstrapRelPath":"../bootstrap-sass"}!./node_modules/bootstrap-loader/no-op.js
Module not found: Error: Can't resolve 'imports-loader' in '/home/suyash644/Documents/ethexch/ethexchange/exch'
@ ./node_modules/bootstrap-loader/lib/bootstrap.scripts.loader.js?{"bootstrapVersion":3,"useCustomIconFontPath":false,"extractStyles":false,"styleLoaders":["style","css","sass"],"styles":["mixins","normalize","print","glyphicons","scaffolding","type","code","grid","tables","forms","buttons","component-animations","dropdowns","button-groups","input-groups","navs","navbar","breadcrumbs","pagination","pager","labels","badges","jumbotron","thumbnails","alerts","progress-bars","media","list-group","panels","wells","responsive-embed","close","modals","tooltip","popovers","carousel","utilities","responsive-utilities"],"scripts":["transition","alert","button","carousel","collapse","dropdown","modal","tooltip","popover","scrollspy","tab","affix"],"configFilePath":"/home/suyash644/Documents/ethexch/ethexchange/exch/node_modules/bootstrap-loader/.bootstraprc-3-default","bootstrapPath":"/home/suyash644/Documents/ethexch/ethexchange/exch/node_modules/bootstrap-sass","bootstrapRelPath":"../bootstrap-sass"}!./node_modules/bootstrap-loader/no-op.js 12:0-64
@ ./node_modules/bootstrap-loader/lib/bootstrap.loader.js!./node_modules/bootstrap-loader/no-op.js
@ ./node_modules/bootstrap-loader/loader.js
@ ./app/javascripts/app.js
@ multi (webpack)-dev-server/client?http://localhost:8081 ./app/javascripts/app.js
webpack: Failed to compile.
^C

depositToken function is not working

    //////////////////////////////////
    // DEPOSIT AND WITHDRAWAL TOKEN //
    //////////////////////////////////
    function depositToken(string symbolName, uint amount)  {
        uint8 symbolNameIndex = getSymbolIndexOrThrow(symbolName);
        require(tokens[symbolNameIndex].tokenContract != address(0));

        ERC20Interface token = ERC20Interface(tokens[symbolNameIndex].tokenContract);

        require(token.transferFrom(msg.sender, address(this), amount) == true);
        require(tokenBalanceForAddress[msg.sender][symbolNameIndex] + amount >= tokenBalanceForAddress[msg.sender][symbolNameIndex]);
        tokenBalanceForAddress[msg.sender][symbolNameIndex] += amount;
        DepositForTokenReceived(msg.sender, symbolNameIndex, amount, now);
    }

I see the following error on Remix
transact to Exchange.depositToken errored: VM error: revert.
revert The transaction has been reverted to the initial state.
Note: The constructor should be payable if you send value. Debug the transaction to get more information.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.