0.1.1 • Published 4 years ago

@atomicloans/eth-contracts v0.1.1

Weekly downloads
8
License
-
Repository
-
Last release
4 years ago

Atomic Loans Ethereum Contracts

Build Status Coverage Status MIT License Telegram Greenkeeper badge

Loan Contracts

How to run

Requirements

  • Git
  • Node.Js
  • Truffle

Steps:

git clone https://github.com/AtomicLoans/ethereum-contracts.git
cd ethereum-contracts
npm install

Now run the tests:

truffle test

License

MIT

Glossary

Fund

Actions:

   create            create new loan fund
   deposit           post additional toks to fund
   generate          generate secret hashes for loan fund
   request           request loan from fund
   withdraw          withdraw unused funds from the loan fund
   update            update loan fund request details


Getters:

   arbiter             optional automated arbiter
   balance             amount of unused funds deposited in loan fund
   lender              loan fund owner
   fee                 optional automation fee
   interest            interest rate
   liquidationRatio    liquidation ratio
   maxLoanAmt          max loan amount
   maxLoanDur          max loan duration
   minLoanAmt          min loan amount
   minLoanDur          min loan duration
   penalty             liquidation penalty
   token               debt token


Vars:

   fundIndex           get the last fund id
   pubKeys             address pubkeys
   secretHashes        address secret hashes
   secretHashIndex     address secret hash index

Loan

Actions:

   accept                accept loan and remove funds
   approve               approve locking of collateral
   cancel                cancel loan and remove funds
   create                create new loan
   fund                  fund loan
   liquidate             liquidate loan collateral in case of loan position being not safe or default
   refund                refund debt repayment 
   repay                 repay debt
   setSecretHashes       set secret hashes for loan
   withdraw              withdraw loan


Getters:

   acceptExpiration      acceptance expirataion
   arbiter               optional automation arbiter address
   approveExpiration     approval expiraation
   liquidationExpiration liquidation expiration
   borrower              borrower address
   collateral            collateral amount
   collateralValue       current collateral value
   fee                   optional fee paid to automator arbiter if address not 0x0
   interest              loan interest rate
   lender                lender address
   liquidationRatio      liquidation ratio
   minCollateralValue    minimum collateral value to be safe
   off                   loan repayment accepted or loan cancelled
   owedForLiquidation    deductible amount from collateral in the case of liquidation
   owedForLoan           principal + interest + fee
   owedToLender          amount lent by lender
   penalty               liquidation penalty in case not safe or defaulted
   principal             loan principal
   pushed                loan funded
   repaid                amount paid back for loan
   safe                  loan is safe from liquidation


Vars:

   fundIndex             loan fund index
   loanIndex             get the last loan id
   repayments            amount of loan paid back
   

Sales

Actions:

   accept                withdraw discountBuy (accept discountBuy and disperse funds to rightful parties)
   create                create new liquidation (can only be called by loan)
   provideSecret         provide secret
   provideSig            provide signature to move collateral to collateral swap
   refund                refund discountBuy


Getters:

   accepted              discountBuy accepted
   arbiter               optional automated arbiter
   arbiterSigs           arbiter refundable and seizable signatures
   discountBuy           discount purchase of collateral by liquidator
   liquidator            address of individual that liquidates the loan position when it's not safe
   borrower              address borrower
   borrowerSigs          borrower refundable and seizable signatures
   hasSecrets            2 of 3 secrets from bor, lend, and arbiter are correct
   lender                address lender
   lenderSigs            lender refundable and seizable signatures
   next                  get the last liquidation id by loan
   pubKeyHash            liquidator pubkeyhash
   salesExpiration       sales expiration
   secretA               Secret A
   secretB               Secret B
   secretC               Secret C
   secretD               Secret D
   secretHashA           Secret Hash A
   secretHashB           Secret Hash B
   secretHashC           Secret Hash C
   secretHashD           Secret Hash D
   settlementExpiration  liquidation settlement expiration
   
   
Vars:

   saleIndexByLoan       loan liquidation (find by loanIndex)