Giter VIP home page Giter VIP logo

friendtech's Introduction

friendtech - A python module to interact with friend.tech platform

Run pip install friendtech to install the module!

The module uses friend.tech APIs (by default) and you can change the nodeURL to use any other node.

Developed by ItsAditya

For support join discord: FriendTechFeed

How to Use:

Platform Info

  1. Getting global activity (list of recent trades on the platform)
import friendtech

platform = friendtech.Platform()
globalActivity = platform.getGlobalActivity().json()
print(globalActivity)
  1. Getting recently joined users
import friendtech

platform = friendtech.Platform()
recentlyJoined = platform.getRecentlyJoinedUsers().json()
print(recentlyJoined)
  1. Getting address from twitter username
import friendtech

jwt = <YOUR JWT TOKEN> # get this from local storage of friendtech in your browser
platform = friendtech.Platform(jwt=jwt)
addressInfo = platform.getAddressFromTwitterUsername("itsaditya_xyz").json()
print(addressInfo)
  1. Getting share and profile info from address
import friendtech

platform = friendtech.Platform()
userInfo = platform.getInfoFromAddress("0xeab1e59d08e927ec19c9249f4841395bc4af43b8").json()
print(userInfo)
  1. Getting holders of an address
import friendtech

platform = friendtech.Platform()
holderInfo = platform.getHolders("0xeab1e59d08e927ec19c9249f4841395bc4af43b8").json()
print(holderInfo)
  1. Getting holdings of an address
import friendtech

platform = friendtech.Platform()
holdingInfo = platform.getHoldings("0xeab1e59d08e927ec19c9249f4841395bc4af43b8").json()
print(holdingInfo)
  1. Getting info from userID
import friendtech
platform = friendtech.Platform()
userInfo = platform.getInfoFromUserID(69).json()
print(userInfo)

Contract

  1. Getting buy price of a share
import friendtech

contract = friendtech.Contract()
buyPrice = contract.getBuyPrice("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)
print(buyPrice)
  1. Getting buy price after fee of a share
import friendtech

contract = friendtech.Contract()
buyPrice = contract.getBuyPriceAfterFee("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)
print(buyPrice)
  1. Getting sell price of a share
import friendtech

contract = friendtech.Contract()
sellPrice = contract.getSellPrice("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)
print(sellPrice)
  1. Getting sell price after fee of a share
import friendtech

contract = friendtech.Contract()
sellPrice = contract.getSellPriceAfterFee("0xeab1e59d08e927ec19c9249f4841395bc4af43b8", 1)
print(sellPrice)
  1. Getting shares supply
import friendtech

contract = friendtech.Contract()
shareSupply = contract.getSharesSupply("0xeab1e59d08e927ec19c9249f4841395bc4af43b8")
print(shareSupply)
  1. Getting shares owned by an address for subjectAddress
import friendtech

contract = friendtech.Contract()
address = "0xeab1e59d08e927ec19c9249f4841395bc4af43b8"
subjectAddress = "0x61da0a10f748a4d0c7060cd0d9907f9174f59a15"
sharesOwned = contract.getSharesSupply(address, subjectAddress)
print(sharesOwned)

WRITING FUNCTIONS OF CONTRACT

To execute writing functions you will need a wallet that has some eth on base network

  1. Create a new wallet (store the private key in .env always!)
from eth_account import Account
import secrets
priv = secrets.token_hex(32)
private_key = "0x" + priv
print ("SAVE BUT DO NOT SHARE THIS:", private_key)
acct = Account.from_key(private_key)
print("Address:", acct.address)

friendtech's People

Contributors

itsaditya-xyz avatar

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.