Initial GSN support (beta) (#1844)
* Add base Context contract * Add GSNContext and tests * Add RelayHub deployment to tests * Add RelayProvider integration, complete GSNContext tests * Switch dependency to openzeppelin-gsn-provider * Add default txfee to provider * Add basic signing recipient * Sign more values * Add comment clarifying RelayHub's msg.data * Make context constructors internal * Rename SigningRecipient to GSNRecipientSignedData * Add ERC20Charge recipients * Harcode RelayHub address into GSNContext * Fix Solidity linter errors * Run server from binary, use gsn-helpers to fund it * Migrate to published @openzeppelin/gsn-helpers * Silence false-positive compiler warning * Use GSN helper assertions * Rename meta-tx to gsn, take out of drafts * Merge ERC20 charge recipients into a single one * Rename GSNRecipients to Bouncers * Add GSNBouncerUtils to decouple the bouncers from GSNRecipient * Add _upgradeRelayHub * Store RelayHub address using unstructored storage * Add IRelayHub * Add _withdrawDeposits to GSNRecipient * Add relayHub version to recipient * Make _acceptRelayedCall and _declineRelayedCall easier to use * Rename GSNBouncerUtils to GSNBouncerBase, make it IRelayRecipient * Improve GSNBouncerBase, make pre and post sender-protected and optional * Fix GSNBouncerERC20Fee, add tests * Add missing GSNBouncerSignature test * Override transferFrom in __unstable__ERC20PrimaryAdmin * Fix gsn dependencies in package.json * Rhub address slot reduced by 1 * Rename relay hub changed event * Use released gsn-provider * Run relayer with short sleep of 1s instead of 100ms * update package-lock.json * clear circle cache * use optimized gsn-provider * update to latest @openzeppelin/gsn-provider * replace with gsn dev provider * remove relay server * rename arguments in approveFunction * fix GSNBouncerSignature test * change gsn txfee * initialize development provider only once * update RelayHub interface * adapt to new IRelayHub.withdraw * update @openzeppelin/gsn-helpers * update relayhub singleton address * fix helper name * set up gsn provider for coverage too * lint * Revert "set up gsn provider for coverage too" This reverts commit 8a7b5be5f942002710cba148f249cb888ee8e373. * remove unused code * add gsn provider to coverage * move truffle contract options back out * increase gas limit for coverage * remove unreachable code * add more gas for GSNContext test * fix test suite name * rename GSNBouncerBase internal API * remove onlyRelayHub modifier * add explicit inheritance * remove redundant event * update name of bouncers error codes enums * add basic docs page for gsn contracts * make gsn directory all caps * add changelog entry * lint * enable test run to fail in coverage
Showing
contracts/GSN/Context.sol
0 → 100644
contracts/GSN/GSNContext.sol
0 → 100644
contracts/GSN/GSNRecipient.sol
0 → 100644
contracts/GSN/IRelayHub.sol
0 → 100644
This diff is collapsed.
Click to expand it.
contracts/GSN/IRelayRecipient.sol
0 → 100644
contracts/GSN/README.adoc
0 → 100644
contracts/GSN/bouncers/GSNBouncerBase.sol
0 → 100644
contracts/mocks/ContextMock.sol
0 → 100644
contracts/mocks/GSNBouncerERC20FeeMock.sol
0 → 100644
contracts/mocks/GSNBouncerSignatureMock.sol
0 → 100644
contracts/mocks/GSNContextMock.sol
0 → 100644
contracts/mocks/GSNRecipientMock.sol
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
| ... | ... | @@ -44,6 +44,8 @@ |
| }, | ||
| "homepage": "https://github.com/OpenZeppelin/openzeppelin-contracts", | ||
| "devDependencies": { | ||
| "@openzeppelin/gsn-helpers": "^0.1.4", | ||
| "@openzeppelin/gsn-provider": "^0.1.4", | ||
| "chai": "^4.2.0", | ||
| "concurrently": "^4.1.0", | ||
| "eslint": "^4.19.1", | ||
| ... | ... |
test/GSN/Context.behavior.js
0 → 100644
test/GSN/Context.test.js
0 → 100644
test/GSN/GSNBouncerERC20Fee.test.js
0 → 100644
test/GSN/GSNBouncerSignature.test.js
0 → 100644
test/GSN/GSNContext.test.js
0 → 100644
test/GSN/GSNRecipient.test.js
0 → 100644
Please
register
or
sign in
to comment