-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into feature/OS-854-sig…
…nalling-proposal-filtering
- Loading branch information
Showing
51 changed files
with
5,330 additions
and
492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,10 @@ | |
"node": ">=16" | ||
}, | ||
"scripts": { | ||
"start": "tsdx watch", | ||
"build": "tsdx build", | ||
"test": "TESTING=true tsdx test --verbose --runInBand", | ||
"lint": "tsdx lint", | ||
"prepare": "tsdx build", | ||
"build": "yarn run clean && dts build", | ||
"test": "TESTING=true dts test", | ||
"lint": "dts lint", | ||
"prepare": "yarn build", | ||
"size": "size-limit", | ||
"analyze": "size-limit --why", | ||
"clean": "rm -Rf .turbo dist", | ||
|
@@ -50,15 +49,17 @@ | |
], | ||
"devDependencies": { | ||
"@size-limit/preset-small-lib": "^7.0.8", | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@types/jest": "^29.5.9", | ||
"dts-cli": "^2.0.3", | ||
"husky": "^7.0.4", | ||
"size-limit": "^7.0.8", | ||
"tsdx": "^0.14.1", | ||
"tslib": "^2.3.1", | ||
"typescript": "^4.6.2" | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.2.2" | ||
}, | ||
"dependencies": { | ||
"@aragon/osx-ethers-v1.0.0": "npm:@aragon/[email protected]", | ||
"@aragon/osx-ethers": "^1.3.0-rc0.4", | ||
"@aragon/osx-ethers-v1.0.0": "npm:@aragon/[email protected]", | ||
"@aragon/sdk-ipfs": "^1.1.0", | ||
"@ethersproject/abstract-signer": "^5.5.0", | ||
"@ethersproject/bignumber": "^5.6.0", | ||
|
@@ -69,5 +70,8 @@ | |
"graphql": "^16.5.0", | ||
"graphql-request": "^4.3.0", | ||
"yup": "^1.2.0" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
require('@nomiclabs/hardhat-ethers'); | ||
/** @type import('hardhat/config').HardhatUserConfig */ | ||
module.exports = { | ||
solidity: '0.8.19', | ||
networks: { | ||
hardhat: { | ||
forking: { | ||
url: 'https://example.com', | ||
blockNumber: 1, | ||
// Disables forking for tests but necessary for the test-enviornment to function because of a dependency | ||
enabled: false, | ||
}, | ||
chainId: 31337, | ||
// necessary to deploy osx 1.2.1 in hardhat node | ||
allowUnlimitedContractSize: true, | ||
accounts: { | ||
count: 3, | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@aragon/sdk-client", | ||
"author": "Aragon Association", | ||
"version": "1.20.0", | ||
"version": "1.19.2", | ||
"license": "MIT", | ||
"main": "dist/index.js", | ||
"module": "dist/sdk-client.esm.js", | ||
|
@@ -16,19 +16,18 @@ | |
"node": ">=16" | ||
}, | ||
"scripts": { | ||
"start": "tsdx watch", | ||
"build": "tsdx build", | ||
"test": "TESTING=true tsdx test --verbose --runInBand", | ||
"lint": "tsdx lint", | ||
"prepare": "tsdx build", | ||
"build": "yarn run clean && dts build", | ||
"test": "TESTING=true dts test", | ||
"lint": "dts lint", | ||
"prepare": "yarn build", | ||
"size": "size-limit", | ||
"analyze": "size-limit --why", | ||
"clean": "rm -Rf .turbo dist", | ||
"examples": "node ./scripts/generate-examples-md.js ./examples ./examples.md" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "tsdx lint --fix" | ||
"pre-commit": "yarn run lint --fix" | ||
} | ||
}, | ||
"prettier": { | ||
|
@@ -49,16 +48,23 @@ | |
], | ||
"devDependencies": { | ||
"@ensdomains/ens-contracts": "^0.0.15", | ||
"@nomiclabs/hardhat-ethers": "^2.2.3", | ||
"@size-limit/preset-small-lib": "^7.0.8", | ||
"@trivago/prettier-plugin-sort-imports": "^4.3.0", | ||
"@types/jest": "^29.0.3", | ||
"ganache": "^7.5.0", | ||
"@typescript-eslint/eslint-plugin": "^6.11.0", | ||
"@typescript-eslint/parser": "^6.11.0", | ||
"@uniswap/sdk-core": "^4.0.9", | ||
"dts-cli": "^2.0.3", | ||
"glob": "^8.0.3", | ||
"hardhat": "^2.19.1", | ||
"husky": "^7.0.4", | ||
"jest-environment-hardhat": "^1.1.9", | ||
"jest-environment-jsdom": "^29.7.0", | ||
"osx-ethers-v1": "npm:@aragon/[email protected]", | ||
"size-limit": "^7.0.8", | ||
"tsdx": "^0.14.1", | ||
"tslib": "^2.3.1", | ||
"typescript": "^4.6.2" | ||
"tslib": "^2.6.2", | ||
"typescript": "^5.2.2" | ||
}, | ||
"dependencies": { | ||
"@aragon/osx-ethers": "1.3.0-rc0.4", | ||
|
@@ -77,7 +83,8 @@ | |
"yup": "^1.2.0" | ||
}, | ||
"jest": { | ||
"testEnvironment": "../../test-environment.js", | ||
"preset": "ts-jest", | ||
"testEnvironment": "./test-environment.ts", | ||
"testTimeout": 120000 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.