Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
decentralized-finance-defi
Advanced tools
This package provides distributed ledger based banking features like payments, deposits, loans and automated investment patterns.
This package provides distributed ledger based banking features like payments, deposits, loans and automated investment patterns.
The key value proposition of this package is to connect TypeScript based projects with smart contracts on the Ethereum Blockchain.
require('dotenv').config() // this ensures process.env. ... contains your .env file configuration values
const { DeFiService } = require("decentralized-finance-defi")
const fromWalletAddress = process.env.SENDER_WALLET_ADDRESS
const toWalletAddress = process.env.RECEIVER_WALLET_ADDRESS
const amountInETH = 1
const senderPrivateKey = process.env.SENDER_WALLET_PRIVATE_KEY
await DeFiService.transferEther(fromWalletAddress, toWalletAddress, amountInETH, senderPrivateKey)
You can also test this feature via the compound.finance user interface.
require('dotenv').config() // this ensures process.env. ... contains your .env file configuration values
const { DeFiService } = require("decentralized-finance-defi")
const amountOfEtherToBeDeposited = 1
const senderPrivateKey = process.env.SENDER_WALLET_PRIVATE_KEY
const gasLimit = 250000 // GWEI --> 0.00025 ETH --> currently January 15th 2021 about
const web3ProviderURL = process.env.PROVIDER_URL // e.g. https://mainnet.infura.io/v3/yourinfuraprojectid
await DeFiService.depositEtherToCompound(amountOfEtherToBeDeposited, senderWalletPrivateKey, gasLimit web3ProviderURL)
You can also test this feature via the compound.finance user interface.
require('dotenv').config() // this ensures process.env. ... contains your .env file configuration values
const { DeFiService } = require("decentralized-finance-defi")
const amountOfDAIToBeBorrowed = 100
const walletPrivateKey = process.env.SENDER_WALLET_PRIVATE_KEY
const gasLimit = 250000
const web3ProviderURL = process.env.PROVIDER_URL // e.g. https://mainnet.infura.io/v3/yourinfuraprojectid
await DeFiService.borrowDAIFromCompound(amountOfDAIToBeBorrowed, walletPrivateKey, gasLimit, web3ProviderURL)
You can also test this feature via the compound.finance user interface.
require('dotenv').config() // this ensures process.env. ... contains your .env file configuration values
const { DeFiService } = require("decentralized-finance-defi")
const walletAddress = process.env.SENDER_WALLET_ADDRESS
const walletPrivateKey = process.env.SENDER_WALLET_PRIVATE_KEY
const gasLimit = 250000
const web3ProviderURL = process.env.PROVIDER_URL // e.g. https://mainnet.infura.io/v3/yourinfuraprojectid
const amount = 1 // redeem 1 cETH
await DeFiService.redeemAssetFromCompound(walletAddress, walletPrivateKey, gasLimit, web3ProviderURL, amount)
You can also test this feature via the compound.finance user interface.
const { DeFiService } = require("decentralized-finance-defi")
const walletAddress = '0xA63CD0d627c34Ce3958c4a82E6bB12F7b9C1c324'
const accountInfo = await DeFiService.getCompoundAccountData(walletAddress)
console.log(`The collateral value in ETH is: ${accountInfo.total_collateral_value_in_eth.value}.`)
You can also test this feature via the uniswap.org user interface.
require('dotenv').config() // this ensures process.env. ... contains your .env file configuration values
const { DeFiService } = require("decentralized-finance-defi")
const amountOfDAIToBeSwapped = 50
const walletAddress = process.env.SENDER_WALLET_ADDRESS
const walletPrivateKey = process.env.SENDER_WALLET_PRIVATE_KEY
const web3ProviderURL = process.env.PROVIDER_URL // e.g. https://mainnet.infura.io/v3/yourinfuraprojectid
await DeFiService.swapDAIToETH(amountOfDAIToBeSwapped, walletAddress, walletPrivateKey, web3ProviderURL)
You can compare the results via the coinmarketcap.com user interface.
require('dotenv').config() // this ensures process.env. ... contains your .env file configuration values
const { DeFiService } = require("decentralized-finance-defi")
const pricesWithTimeStamp = DeFiService.getPriceDataWithTimeStamp(process.env.COINMARKETCAP_API_KEY)
// There will be ETH :)
console.log(pricesWithTimeStamp[1])
const { DeFiService } = require("decentralized-finance-defi")
const gasPriceInfo = await DeFiService.getGasPriceInfo()
console.log(gasPriceInfo.fastest)
You can find many more simple and general examples in the [DeFi Service](https://github.com/michael-spengler/decentralized-finance/blob/main/src/defi.service.ts file. If you are looking for anything more specific, feel free to check the corresponding folders and class definitions within the src folder.
If you have not found what you are looking for, feel free to raise an issue or even better raise a Pull Request.
You can find some simple examples for solidity based smart contract development projects within the smart-contracts-development folder.
You might also check aave.com, klopapier.exchange and compound.finance.
To provide your user interfaces in a sustainable way you might check ens.domains. If you want to try it, you might check this tutorial.
For Permaweb deployments you might check argoapp.live. I tested it for a vuejs frontend project. It works pretty straight forward already.
If you see an issue in the DeFi space which you want to see solved, consider funding the solution via gitcoin.co.
I prepared the corresponding Deno module and wait until the dependencies of the package at hand are ready for Deno.
If you like my work, you might download the Brave Browser via my promotion link: https://brave.com/fan464.
FAQs
This package provides distributed ledger based banking features like payments, deposits, loans and automated investment patterns.
The npm package decentralized-finance-defi receives a total of 3 weekly downloads. As such, decentralized-finance-defi popularity was classified as not popular.
We found that decentralized-finance-defi demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.