-
Notifications
You must be signed in to change notification settings - Fork 6
Offchain prototype WIP - do not merge #350
base: develop
Are you sure you want to change the base?
Commits on Aug 4, 2021
-
Squashed commit to move over the "mmontour1306/offchain-prototype" code
into the omgx monorepo, with some cleanup and whitespace fixes. Changes to be committed: modified: l2geth/core/state_processor.go modified: l2geth/core/state_transition.go modified: l2geth/core/vm/evm.go modified: l2geth/eth/api_backend.go modified: l2geth/internal/ethapi/api.go modified: l2geth/miner/worker.go modified: l2geth/params/version.go modified: l2geth/rollup/sync_service.go modified: l2geth/rpc/errors.go modified: l2geth/rpc/handler.go modified: l2geth/rpc/service.go modified: ops/docker/Dockerfile.geth new file: packages/omgx/offchain-prototype/README-moved.md new file: packages/omgx/offchain-prototype/contracts/HelloTuring.sol new file: packages/omgx/offchain-prototype/contracts/TuringHelper.sol new file: packages/omgx/offchain-prototype/hardhat.config.ts new file: packages/omgx/offchain-prototype/local.env new file: packages/omgx/offchain-prototype/package.json new file: packages/omgx/offchain-prototype/test/hello-test.ts new file: packages/omgx/offchain-prototype/tsconfig.json
Configuration menu - View commit details
-
Copy full SHA for 9ccc057 - Browse repository at this point
Copy the full SHA 9ccc057View commit details -
Use StaticJsonRpcProvider to reduce the number of chainId lookups.
Changes to be committed: modified: packages/batch-submitter/src/exec/run-batch-submitter.ts modified: packages/message-relayer/src/exec/run.ts modified: packages/message-relayer/src/exec/withdraw.ts modified: packages/omgx/message-relayer-fast/src/exec/run.ts
Configuration menu - View commit details
-
Copy full SHA for 7244c29 - Browse repository at this point
Copy the full SHA 7244c29View commit details -
Adjust various intervals to reduce log volume during development.
Development only - not tuned for production. Changes to be committed: modified: ops/docker-compose.yml modified: ops/envs/batches.env modified: ops/envs/dtl.env modified: ops/envs/geth.env
Configuration menu - View commit details
-
Copy full SHA for ebebf4f - Browse repository at this point
Copy the full SHA ebebf4fView commit details -
Clean up packages.json and change some versions to match what's
used elsewhere in the monorepo. Changes to be committed: modified: packages/omgx/offchain-prototype/package.json
Configuration menu - View commit details
-
Copy full SHA for c18455e - Browse repository at this point
Copy the full SHA c18455eView commit details
Commits on Aug 5, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 6cc6411 - Browse repository at this point
Copy the full SHA 6cc6411View commit details -
Change the dependencies so that l2geth depends on dtl rather than
the converse. Changes to be committed: modified: ops/docker-compose.yml
Configuration menu - View commit details
-
Copy full SHA for 93c8967 - Browse repository at this point
Copy the full SHA 93c8967View commit details -
Add a very simple cache of the last off-chain result, so that
we don't send multiple off-chain requests during the processing of a single transaction. Changes to be committed: modified: l2geth/core/vm/evm.go
Configuration menu - View commit details
-
Copy full SHA for 4287fc1 - Browse repository at this point
Copy the full SHA 4287fc1View commit details
Commits on Aug 6, 2021
-
Configuration menu - View commit details
-
Copy full SHA for e553ea3 - Browse repository at this point
Copy the full SHA e553ea3View commit details -
create hardhat_swap folder with example stableSwap smart contract wit…
…h tests and python code
Mehul Agarwal committedAug 6, 2021 Configuration menu - View commit details
-
Copy full SHA for 62fe346 - Browse repository at this point
Copy the full SHA 62fe346View commit details -
Configuration menu - View commit details
-
Copy full SHA for 80f5a5f - Browse repository at this point
Copy the full SHA 80f5a5fView commit details
Commits on Aug 11, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 62d1b27 - Browse repository at this point
Copy the full SHA 62d1b27View commit details -
Merge branch 'develop' into offchain-prototype
Conflicts: l2geth/miner/worker.go
Configuration menu - View commit details
-
Copy full SHA for 36a8f1a - Browse repository at this point
Copy the full SHA 36a8f1aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62a449b - Browse repository at this point
Copy the full SHA 62a449bView commit details
Commits on Aug 16, 2021
-
Generalize the RLP encoding to allow arbitrary abiEncoded payloads. R…
…egister multiple methods to be called over JSON-RPC. Update the "hello world" example to include an "add 2 numbers" method as well as the string lookups. modified: packages/omgx/offchain-prototype/contracts/HelloTuring.sol modified: packages/omgx/offchain-prototype/contracts/TuringHelper.sol modified: packages/omgx/offchain-prototype/test/hello-test.ts
Configuration menu - View commit details
-
Copy full SHA for 8e3c6c4 - Browse repository at this point
Copy the full SHA 8e3c6c4View commit details -
Remove the now-broken mock L1 mode.
Changes to be committed: modified: contracts/TuringHelper.sol modified: package.json modified: test/hello-test.ts
Configuration menu - View commit details
-
Copy full SHA for 899a2b1 - Browse repository at this point
Copy the full SHA 899a2b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for a8d98f6 - Browse repository at this point
Copy the full SHA a8d98f6View commit details
Commits on Aug 24, 2021
-
Merge branch 'develop' into offchain-prototype
Conflicts: ops/docker-compose.yml
Configuration menu - View commit details
-
Copy full SHA for f391f1f - Browse repository at this point
Copy the full SHA f391f1fView commit details
Commits on Sep 6, 2021
-
fix fee-test.ts and add sqrt off-chain for stable-test.ts (#330)
Co-authored-by: Mehul Agarwal <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9328880 - Browse repository at this point
Copy the full SHA 9328880View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5199db8 - Browse repository at this point
Copy the full SHA 5199db8View commit details -
TURING OFFCHAIN COMPUTE: add uniswapv2 fee example (incomplete) - WIP (…
…#315) * add uniswapv2 fee example (incomplete) * add offchain in uniswapv2pair * feat: update fee-test Co-authored-by: Mehul Agarwal <[email protected]> Co-authored-by: souradeep-das <[email protected]> Co-authored-by: CAPtheorem <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b9c2dfe - Browse repository at this point
Copy the full SHA b9c2dfeView commit details -
TURING OFFCHAIN COMPUTE: Offchain prototype mult classifier (#317)
* Added multplication to offchain compute * added classifier * added classifier test * addd __pychache__ to gitignore * Added classifier * Updated Readme * nft designing * resolve merge conflicts Co-authored-by: CAPtheorem <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 86ae989 - Browse repository at this point
Copy the full SHA 86ae989View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4648aed - Browse repository at this point
Copy the full SHA 4648aedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f0c74b - Browse repository at this point
Copy the full SHA 1f0c74bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a794a73 - Browse repository at this point
Copy the full SHA a794a73View commit details
Commits on Sep 19, 2021
-
Merge branch 'develop' into offchain-prototype
Conflicts: yarn.lock
Configuration menu - View commit details
-
Copy full SHA for 43c7a88 - Browse repository at this point
Copy the full SHA 43c7a88View commit details -
Update TuringHelper to log the offchain response when called in a
transaction (vs. from eth_call). Skip a broken cat/dog classifier test case. Changes to be committed: modified: contracts/HelloTuring.sol modified: contracts/TuringHelper.sol modified: test/hello-test.ts
Configuration menu - View commit details
-
Copy full SHA for 0908121 - Browse repository at this point
Copy the full SHA 0908121View commit details