Skip to content

Commit

Permalink
chore: update openzeppelin
Browse files Browse the repository at this point in the history
  • Loading branch information
vittominacori committed May 1, 2021
1 parent f570e5a commit b0211d9
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,4 @@ package-lock.json

# vuepress
docs/.vuepress/dist/
docs/.vuepress/.env.json
3 changes: 3 additions & 0 deletions docs/.vuepress/.env.json.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"gaId": "UA-XXXXXXXXX-X"
}
4 changes: 3 additions & 1 deletion docs/.vuepress/config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
const vars = require('./.env.json');

module.exports = {
title: 'An ERC-20 token that can be used for payments',
description: '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',
base: '/erc1363-payable-token/',
plugins: [
['@vuepress/google-analytics', {
ga: 'UA-115756440-2'
ga: vars.gaId,
}]
],
head: [
Expand Down
2 changes: 1 addition & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
},
},
solidity: {
version: '0.8.3',
version: '0.8.4',
settings: {
optimizer: {
enabled: true,
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "erc-payable-token",
"version": "4.0.0",
"version": "4.1.0",
"description": "ERC-1363 Payable Token Implementation",
"files": [
"contracts",
Expand Down Expand Up @@ -46,27 +46,27 @@
},
"homepage": "https://vittominacori.github.io/erc1363-payable-token",
"dependencies": {
"@openzeppelin/contracts": "4.0.0"
"@openzeppelin/contracts": "4.1.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ganache": "^2.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.10",
"@openzeppelin/test-helpers": "^0.5.11",
"@vuepress/plugin-google-analytics": "^1.8.2",
"chai": "^4.3.4",
"eslint": "^7.22.0",
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"ganache-cli": "^6.12.2",
"hardhat": "^2.1.2",
"hardhat": "^2.2.1",
"solhint": "^3.3.4",
"solidity-coverage": "^0.7.16",
"truffle": "^5.2.5",
"truffle": "^5.3.4",
"vuepress": "^1.8.2"
}
}
2 changes: 1 addition & 1 deletion truffle-config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require('chai/register-should');

const solcStable = {
version: '0.8.3',
version: '0.8.4',
settings: {
optimizer: {
enabled: true,
Expand Down

0 comments on commit b0211d9

Please sign in to comment.