npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@aragon/apps-payroll

v1.0.0

Published

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

Downloads

146

Readme

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.