Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed May 13, 2020
1 parent 8c257f6 commit 6c31443
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -5,7 +5,7 @@
[![Coverage Status](https://coveralls.io/repos/github/vittominacori/erc1363-payable-token/badge.svg?branch=master)](https://coveralls.io/github/vittominacori/erc1363-payable-token?branch=master)
[![MIT licensed](https://img.shields.io/github/license/vittominacori/erc1363-payable-token.svg)](https://github.com/vittominacori/erc1363-payable-token/blob/master/LICENSE)

This is an implementation of the [ERC-1363 Payable Token](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1363.md) that defines a Payable Token, a Token Receiver and a Token Spender.
This is an implementation of the [ERC-1363 Payable Token](https://eips.ethereum.org/EIPS/eip-1363) that defines a Payable Token, a Token Receiver and a Token Spender.

The ERC-1363 is an ERC-20 compatible token that can make a callback on the receiver contract to notify token transfers or token approvals.
It can be used to create a token payable crowdsale, selling services for tokens, paying invoices, making subscriptions, use them for a specific utility and many other purposes.
Expand Down Expand Up @@ -44,7 +44,7 @@ This repo contains:

[IERC1363.sol](https://github.com/vittominacori/erc1363-payable-token/blob/master/contracts/token/ERC1363/IERC1363.sol)

Interface for a Payable Token contract as defined in [ERC-1363 Payable Token](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1363.md).
Interface for a Payable Token contract as defined in [ERC-1363 Payable Token](https://eips.ethereum.org/EIPS/eip-1363).

### ERC1363

Expand Down
2 changes: 1 addition & 1 deletion buidler.config.js
Expand Up @@ -13,7 +13,7 @@ module.exports = {
},
},
solc: {
version: '0.6.6',
version: '0.6.7',
optimizer: {
enabled: true,
runs: 200,
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC1363/IERC1363.sol
Expand Up @@ -7,7 +7,7 @@ import "@openzeppelin/contracts/introspection/IERC165.sol";
* @title IERC1363 Interface
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Interface for a Payable Token contract as defined in
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1363.md
* https://eips.ethereum.org/EIPS/eip-1363
*/
interface IERC1363 is IERC20, IERC165 {
/*
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC1363/IERC1363Receiver.sol
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.6.0;
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Interface for any contract that wants to support transferAndCall or transferFromAndCall
* from ERC1363 token contracts as defined in
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1363.md
* https://eips.ethereum.org/EIPS/eip-1363
*/
interface IERC1363Receiver {
/*
Expand Down
2 changes: 1 addition & 1 deletion contracts/token/ERC1363/IERC1363Spender.sol
Expand Up @@ -5,7 +5,7 @@ pragma solidity ^0.6.0;
* @author Vittorio Minacori (https://github.com/vittominacori)
* @dev Interface for any contract that wants to support approveAndCall
* from ERC1363 token contracts as defined in
* https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1363.md
* https://eips.ethereum.org/EIPS/eip-1363
*/
interface IERC1363Spender {
/*
Expand Down
2 changes: 1 addition & 1 deletion ethpm.json
@@ -1,6 +1,6 @@
{
"package_name": "erc-payable-token",
"version": "3.0.3",
"version": "3.0.4",
"description": "ERC-1363 Payable Token Implementation",
"authors": [
"Vittorio Minacori (https://github.com/vittominacori)"
Expand Down
26 changes: 13 additions & 13 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "erc-payable-token",
"version": "3.0.3",
"version": "3.0.4",
"description": "ERC-1363 Payable Token Implementation",
"files": [
"contracts",
Expand Down Expand Up @@ -44,31 +44,31 @@
},
"homepage": "https://vittominacori.github.io/erc1363-payable-token",
"dependencies": {
"@openzeppelin/contracts": "3.0.0"
"@openzeppelin/contracts": "3.0.1"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.3.0",
"@nomiclabs/buidler-ganache": "^1.3.0",
"@nomiclabs/buidler-truffle5": "^1.3.0",
"@nomiclabs/buidler-web3": "^1.3.0",
"@nomiclabs/buidler": "^1.3.3",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-truffle5": "^1.3.3",
"@nomiclabs/buidler-web3": "^1.3.3",
"@openzeppelin/test-helpers": "^0.5.5",
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"coveralls": "^3.1.0",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereumjs-util": "^6.2.0",
"ethereumjs-util": "^7.0.0",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.9.1",
"pify": "^5.0.0",
"solhint": "^3.0.0-rc.8",
"solidity-coverage": "^0.7.4",
"truffle": "^5.1.22",
"solhint": "^3.0.0",
"solidity-coverage": "^0.7.5",
"truffle": "^5.1.25",
"vuepress": "^0.14.11",
"web3": "^1.2.6"
"web3": "^1.2.7"
}
}
2 changes: 1 addition & 1 deletion truffle-config.js
@@ -1,7 +1,7 @@
require('chai/register-should');

const solcStable = {
version: '0.6.6',
version: '0.6.7',
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit 6c31443

Please sign in to comment.