node-dai

1.0.7 • Public • Published

node-dai

  • Deposit ETH to CDP and draw DAI.
  • Convert DAI to ETH.
  • Fund your CDP with PETH.
  • Draw DAI from your CDP.
  • And much more...

The first comprehensive NPM module for the MakerDAO ecosystem.

Offers 14 different actions for programatically interacting with MakerDAO using Javascript and web3.

Installation

npm install node-dai --save

Prerequisites

  • An open CDP
  • All token allowances approved
  • A little bit of MKR in your wallet (for paying fees)

The first two can be obtained in a few minutes by heading to the MakerDAO dashboard: https://dai.makerdao.com/

MKR can be bought at OasisDEX: https://oasisdex.com/trade/MKR/DAI

Alternatively you can use a public test account that is set up for use already.

Examples

Deposit 1 ETH to CDP and draw 300 DAI:

const nodeDai = require('node-dai');
 
var options = {
  privateKey: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', // Your private key
  cdpId: 614, // The ID of your open CDP
  networkId: 42, // Kovan Test Network, use 1 for Main Network
  DAIToDraw: 300 // Amount of DAI to draw from CDP
};
var ETH = 1;
 
(async function(){
  await nodeDai.ETHToDAI(ETH, options);
})();
 

Convert 200 DAI to ETH:

const nodeDai = require('node-dai');
 
var options = {
  privateKey: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', // Your private key
  cdpId: 614, // The ID of your open CDP
  networkId: 42 // Kovan Test Network, use 1 for Main Network
};
var DAI = 200;
 
(async function(){
  await nodeDai.DAIToETH(DAI, options);
})();
 

Draw 200 DAI from CDP:

const nodeDai = require('node-dai');
 
var options = {
  privateKey: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', // Your private key
  cdpId: 614, // The ID of your open CDP
  networkId: 42 // Kovan Test Network, use 1 for Main Network
};
var DAI = 200;
 
(async function(){
  await nodeDai.CDPToDAI(DAI, options);
})();
 

Deposit 200 DAI to CDP:

const nodeDai = require('node-dai');
 
var options = {
  privateKey: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', // Your private key
  cdpId: 614, // The ID of your open CDP
  networkId: 42 // Kovan Test Network, use 1 for Main Network
};
var DAI = 200;
 
(async function(){
  await nodeDai.DAIToCDP(DAI, options);
})();
 

Convert 1 PETH to ETH:

const nodeDai = require('node-dai');
 
var options = {
  privateKey: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', // Your private key
  networkId: 42 // Kovan Test Network, use 1 for Main Network
};
var PETH = 1;
 
(async function(){
  await nodeDai.PETHToETH(PETH, options);
})();
 

Draw 1 PETH from CDP and convert to 1 ETH:

const nodeDai = require('node-dai');
 
var options = {
  privateKey: 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', // Your private key
  cdpId: 614, // The ID of your open CDP
  networkId: 42 // Kovan Test Network, use 1 for Main Network
};
var PETH = 1;
 
(async function(){
  await nodeDai.CDPToETH(PETH, options);
})();
 

API

  • Deposit ETH and withdraw DAI: nodeDai.ETHToDAI (ETH, options)

  • DAI to ETH: nodeDai.DAIToETH (DAI, options)

  • ETH to WETH: nodeDai.ETHToWETH (ETH, options)

  • WETH to PETH: nodeDai.WETHToPETH (WETH, options)

  • PETH to CDP: nodeDai.PETHToCDP (PETH, options)

  • Draw DAI: nodeDai.CDPToDAI (DAI, options)

  • Repay DAI: nodeDai.DAIToCDP (DAI, options)

  • Withdraw PETH from CDP: nodeDai.CDPToPETH (PETH, options)

  • PETH to WETH: nodeDai.PETHToWETH (PETH, options)

  • WETH to ETH: nodeDai.WETHToETH (WETH, options)

  • CDP to ETH: nodeDai.CDPToETH (ETH, options)

  • PETH to ETH: nodeDai.PETHToETH (PETH, options)

  • WETH to DAI: nodeDai.WETHToDAI (WETH, options)

  • PETH to DAI: nodeDai.PETHToDAI (PETH, options)

Options

    privateKey: Your private key, used for signing transactions. All transactions are signed locally.
    cdpId: The numeric ID of one of your open CDPs (e.g. 614)
    networkId: The ID of the desired network. 1 for Main Network, 42 for Kovan Test Network. Default: 42
    DAIToDraw: Amount of DAI to draw from your CDP. Only relevant for methods: ETHToDAI, WETHToDAI, PETHToDAI
    web3: An optional web3 instance. Must be version 0.20.6 or lower of web3. Version 1.x.x of web3 is currently not supported.
    verbose: Whether to print to console or not. Default: true
    waitInterval: Amount of ms to wait inbetween transactions. Default:  10000
    gasLimit: Gas Limit for every transaction. Default:  300000
    requireConfirm: Require that every transaction receives 12 block confirmations before proceeding to next. Default: false

Networks

  • Main Network (network ID 1)
  • Kovan Test Network (network ID 42)

It is recommended to test the module on Kovan first, before using it with the Main Network.

More test networks will be added soon.

Public test account

If you prefer not to use your own account, you may instead use the Ganache mock account with

  privateKey: c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3
  seed: candy maple cake sugar pudding cream honey rich smooth crumble sweet treat

This account is public, has an open CDP, some MKR and Kovan-ETH in its wallet and has set all permissions. It can be used for fast testing.

DO NOT SEND REAL FUNDS TO THIS ACCOUNT. USE FOR TESTING ONLY.

Troubleshooting

  • Ensure that you have enough MKR to pay the small fee necessary for interacting with a CDP.
  • Ensure that you have enough ETH to pay for gas.
  • Ensure that you have an open CDP and that you have passed along its ID in the options object.
  • Ensure that you have set all permissions in the MakerDAO dashboard (WETH Join, WETH Mock, PETH Exit/Lock, PETH Boom, MKR Wipe/Shut, DAI Wipe/Shut, DAI Bust/Cash) .
  • Ensure that you are on the right network (Kovan is the default network, pass along 1 as networkId to use the Main Network instead).
  • Ensure that your private key is valid.
  • If using a custom web3 instance, ensure that it is valid and is configured to use the right network. You can use Infura for easy access: https://infura.io/
  • Ensure that you are not overleveraging your CDP. You must always leave some collateral (PETH) behind when drawing DAI.

The MakerDAO dashboard can be accessed here: https://dai.makerdao.com/

License

Copyright 2018 Kaisle

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Additional resources

For more information about MakerDAO visit: https://makerdao.com/

Access the MakerDAO dashboard at: https://dai.makerdao.com/

Access OasisDEX at: https://oasisdex.com/trade/MKR/DAI

Contributing

  git clone https://github.com/Kaisle/node-dai.git && cd node-dai
  npm install

This module is still in its infancy. Any pull requests are welcome!

Package Sidebar

Install

npm i node-dai

Weekly Downloads

1

Version

1.0.7

License

MIT

Unpacked Size

43 kB

Total Files

6

Last publish

Collaborators

  • kaisle