* git rm unnecessary .gitkeep file * After all Pytest runs, show short test summary * abi-gen/Py: facilitate inlining of parameter lists Effectively, stopped new-lines from being introduced by calls to the `params` and `typed_params` partials. * abi-gen: simple Py wrapper test for local dev'ment * abi-gen/Py: stop gen'ing ValidatorBase * abi-gen/Py: declare abi() wrapper method in Base * abi-gen/Py: methods as classes to ease call/sendTx Represent methods as classes in order to faciliate access to a method's different operations (call, send_transaction, etc). * contract_wrappers.py: make Base methods public Changed some methods on BaseContractWrapper to be public. * contract_wrappers.py: remove unused method * contract_wrappers.py: extract method * abi-gen/Py: inline method * contract_wrappers.py: fix bug in call() We were passing transaction parameters through to sendTransaction() invocations, but not to call() invocations. * abi-gen/Py: remove `view_only` param to call/tx Formerly, in the BaseContractWrapper, there was just one function used for both eth_call and eth_sendTransaction, and you would distinguish between the two by specifying `view_only=True` when you wanted a call. This commit defines a method dedicated to executing an eth_call, and leaves the old method behind, with the `view_only` param removed, to be used for eth_sendTransaction. * abi-gen/Py: rename method * contract_wrappers/Py: simplify web3 func handling Pass web3 function instance into generated wrapper method class constructor, rather than having that class obtain it upon each method call. Really this is just an elimination of a call to BaseContractWrapper.contract_instance(), which will be removed completely in a shortly-upcoming commit. * contract_wrappers.py: inline method Inline and remove method BaseContractWrapper.contract_instance(). * contract_wrappers.py: pass Validator to *Method Pass a ValidatorBase instance into construction of the contract method classes, *Method, to eliminate another dependency on the containing contract object, which will be eliminated completely in a shortly-upcoming commit. * abi-gen/Py: BaseContractWrapper -> ContractMethod Change the fundamental thing-to-be-wrapped from the contract to the method. Since the named method classes were introduced (in a previous commit), and since the operations contained within the Base are predominantly focused on supporting method calls more than anything else, it makes more intuitive sense to provide a base for the methods than for the contract. With this change, the method classes no longer require a contract object to be passed to their constructors. The contract members that the methods were utilizing are now passed directly to the method constructor. * contract_wrappers.py: rename module to bases... ...from _base_contract_wrapper. The old name hasn't made sense since ValidatorBase was moved into that module, and definitely doesn't make sense now that the fundamental thing-to-be-wrapped has changed from the contract to the method. Also renamed to make it public (removed the leading underscore) since we're generating code that will depend on it. * abi-gen/Py: clarify call/sendTx docstrings * abi-gen/Py: adjust whitespace * contract_wrappers.py: inline method * abi-gen/Py: rename class ValidatorBase... ...to just Validator. It's in the "bases" module, which provides the context needed in order to know it's a base class * python-packages: fix silent failures of ./parallel * contract_wrappers.py: remove private_key support Having this present was overcomplicating interfaces. And it was untested (and not readily working when testing was attempted). And it only provided a thin layer of convenience, which a client could easily code up themselves. * contract_wrappers.py: inline method * contract_wrappers.py: rm unused member variables * contract_wrappers.py: rm unnecessary instance var * abi-gen/Py: add estimate_gas to gen'd methods * update CHANGELOG.json
106 lines
5.2 KiB
JSON
106 lines
5.2 KiB
JSON
{
|
|
"name": "@0x/abi-gen",
|
|
"version": "3.1.2",
|
|
"engines": {
|
|
"node": ">=6.12"
|
|
},
|
|
"description": "Generate contract wrappers from ABI and handlebars templates",
|
|
"main": "lib/src/index.js",
|
|
"types": "lib/src/index.d.ts",
|
|
"scripts": {
|
|
"lint": "tslint --format stylish --project . && yarn lint-contracts",
|
|
"lint-contracts": "solhint -c ../../contracts/.solhint.json test-cli/contracts/*.sol",
|
|
"fix": "tslint --fix --format stylish --project . && yarn lint-contracts",
|
|
"clean": "shx rm -rf lib && yarn test_cli:clean",
|
|
"build": "tsc -b && yarn generate_contract_wrappers && yarn prettier_contract_wrappers && yarn test_cli:build",
|
|
"build:ci": "yarn build",
|
|
"test": "yarn run_mocha && yarn test_cli",
|
|
"test:circleci": "yarn test:coverage && yarn test_cli",
|
|
"run_mocha": "(uname -s | grep -q Darwin && echo 'HACK! skipping mocha run due to https://github.com/0xProject/0x-monorepo/issues/2000') || mocha --require source-map-support/register --require make-promises-safe lib/test/*_test.js --timeout 100000 --bail --exit",
|
|
"test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
|
|
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
|
|
"test_cli": "yarn test_cli:run_mocha && yarn diff_contract_wrappers",
|
|
"test_cli:clean": "rm -rf test-cli/output && rm -rf test-cli/test_typescript/lib",
|
|
"test_cli:build": "tsc --project test-cli/tsconfig.json",
|
|
"test_cli:run_mocha": "mocha --require source-map-support/register --require make-promises-safe test-cli/test_typescript/lib/**/*_test.js --timeout 100000 --bail --exit",
|
|
"test_cli:test_python": "black --check test-cli/output/python/**/__init__.py; test $? -le 1 # just make sure black can parse the output",
|
|
"rebuild_and_test": "run-s build test",
|
|
"test:profiler": "SOLIDITY_PROFILER=true run-s build run_mocha profiler:report:html",
|
|
"test:trace": "SOLIDITY_REVERT_TRACE=true run-s build run_mocha",
|
|
"clean:sol": "rm -rf test-cli/artifacts",
|
|
"compile:sol": "sol-compiler",
|
|
"watch:sol": "sol-compiler -w",
|
|
"prettier_contract_wrappers": "prettier --write ./test-cli/output/typescript/* --config ../../.prettierrc",
|
|
"generate_contract_wrappers": "run-p gen_typescript gen_python",
|
|
"gen_typescript": "abi-gen --abis ${npm_package_config_abis} --template ../../node_modules/@0x/abi-gen-templates/contract.handlebars --partials '../../node_modules/@0x/abi-gen-templates/partials/**/*.handlebars' --output ./test-cli/output/typescript --backend ethers",
|
|
"gen_python": "abi-gen --abis ${npm_package_config_abis} --template ../../node_modules/@0x/abi-gen-templates/Python/contract.handlebars --partials '../../node_modules/@0x/abi-gen-templates/Python/partials/**/*.handlebars' --output ./test-cli/output/python --language Python",
|
|
"diff_contract_wrappers": "test-cli/diff.sh ./test-cli/expected-output ./test-cli/output",
|
|
"coverage:report:text": "istanbul report text",
|
|
"coverage:report:html": "istanbul report html && open coverage/index.html",
|
|
"profiler:report:html": "istanbul report html && open coverage/index.html",
|
|
"contracts:gen": "contracts-gen"
|
|
},
|
|
"config": {
|
|
"abis": "./test-cli/fixtures/artifacts/@(AbiGenDummy|LibDummy|TestLibDummy).json",
|
|
"abis:comment": "This list is auto-generated by contracts-gen. Don't edit manually."
|
|
},
|
|
"bin": {
|
|
"abi-gen": "bin/abi-gen.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/0xProject/0x-monorepo.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/0xProject/0x-monorepo/issues"
|
|
},
|
|
"homepage": "https://github.com/0xProject/0x-monorepo/packages/abi-gen/README.md",
|
|
"dependencies": {
|
|
"@0x/types": "^2.4.1",
|
|
"@0x/typescript-typings": "^4.2.4",
|
|
"@0x/utils": "^4.4.2",
|
|
"chalk": "^2.3.0",
|
|
"change-case": "^3.0.2",
|
|
"cli-format": "^3.0.9",
|
|
"ethereum-types": "^2.1.4",
|
|
"glob": "^7.1.2",
|
|
"handlebars": "^4.1.2",
|
|
"lodash": "^4.17.11",
|
|
"mkdirp": "^0.5.1",
|
|
"tmp": "^0.0.33",
|
|
"to-snake-case": "^1.0.0",
|
|
"yargs": "^10.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@0x/base-contract": "^5.3.0",
|
|
"@0x/contracts-gen": "^1.0.12",
|
|
"@0x/dev-utils": "^2.2.6",
|
|
"@0x/sol-compiler": "^3.1.11",
|
|
"@0x/subproviders": "^5.0.0",
|
|
"@0x/tslint-config": "^3.0.1",
|
|
"@0x/web3-wrapper": "^6.0.9",
|
|
"@types/glob": "5.0.35",
|
|
"@types/mkdirp": "^0.5.2",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "*",
|
|
"@types/tmp": "^0.0.33",
|
|
"@types/yargs": "^11.0.0",
|
|
"chai": "^4.0.1",
|
|
"chai-as-promised": "^7.1.0",
|
|
"chai-bignumber": "^3.0.0",
|
|
"dirty-chai": "^2.0.1",
|
|
"make-promises-safe": "^1.1.0",
|
|
"mocha": "^6.2.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"shx": "^0.2.2",
|
|
"sinon": "^4.0.0",
|
|
"solhint": "^1.4.1",
|
|
"tslint": "5.11.0",
|
|
"typescript": "3.0.1"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|