Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@aragon/apps-payroll

Package Overview
Dependencies
Maintainers
9
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aragon/apps-payroll

_**Code in Github:**_ [aragon-apps/apps/payroll](https://github.com/aragon/aragon-apps/tree/master/future-apps/payroll)

  • 1.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
12
decreased by-70.73%
Maintainers
9
Weekly downloads
 
Created
Source

Payroll

Code in Github: aragon-apps/apps/payroll

The purpose of the Payroll app is to implement a Payroll system in multiple currencies.

Initialization

Initializing a Payroll app requires the following parameters:

  • Finance: a reference to Finance instance that Payroll app will use to pay salaries. Finance in turn will use Vault to access funds, but going through Finance will have everything properly accounted for.
  • Ether Token: EtherToken instance used as ether.
  • Denomination Token: token used to denominate salaries. All exchange rates for other tokens will be paired with it.

Lifecycle

Add allowed token
payroll.setAllowedToken(address _allowedToken, true)

Add token to the list of accepted ones for salary payment. It needs MANAGE_ALLOWED_TOKENS_ROLE.

Set exchange rate
payroll.setExchangeRate(address token, uint256 denominationExchangeRate)

Set the exchange rate for an allowed token against the Payroll denomination token. It needs ORACLE_ROLE.

Add employee

Three options can be used:

payroll.addEmployee(address accountAddress, uint256 initialYearlyDenominationSalary, string role, uint256 startDate)

Add employee to the organization. Start date is used as the initial payment day. If it's not provided, the date of the transaction will be used. It needs ADD_EMPLOYEE_ROLE.

Modify employee salary
payroll.setEmployeeSalary(uint128 employeeId, uint256 yearlyDenominationSalary)

It needs ADD_EMPLOYEE_ROLE.

Remove employee
payroll.removeEmployee(uint128 employeeId)

Remove employee from organization. The owed up to current date salary will be transferred to the employee. It needs REMOVE_EMPLOYEE_ROLE.

Determine allocation
payroll.determineAllocation(address[] tokens, uint8[] distribution)

Employees can set the proportion of every allowed token that want to be used for their salary payment. Distribution values are expressed as a ratio to 100.

Request payroll
payroll.payday()

Employees can request payroll whenever they want and the proportional amount of their anual salary since the last request (or since the start date if it's the first one) will be transferred.

Change account address
payroll.changeAddressByEmployee(address newAddress)

Employees can change their own address.

Limitations

  • Allowed tokens can not be removed right now. It wouldn't be trivial, as employees should be notified and they should modifiy their allocation.
  • If an employee requests payroll having allocated an allowed token which doesn't have an exchange rate, the transaction will fail. In other words, exchange rates must be set before employees try to use those tokens for their payrolls.
  • Exchange rate is not updated automatically. So it could happen that rates are outated when payrolls are requested. An external mechanism for updating rates often should be implemented.
  • If there are not enough funds for a given token, payday will fail. There's no automatic token conversion yet.

Keywords

FAQs

Package last updated on 04 Sep 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc