Skip to content

Commit

Permalink
submodule: Bump all submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
matevz committed Jan 11, 2024
1 parent 60e6d93 commit 4ab04c9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion external/adrs
2 changes: 1 addition & 1 deletion external/oasis-core
Submodule oasis-core updated 135 files
2 changes: 1 addition & 1 deletion external/oasis-sdk
Submodule oasis-sdk updated 168 files
2 changes: 1 addition & 1 deletion external/sapphire-paratime
Submodule sapphire-paratime updated 44 files
+18 −0 .github/workflows/ci-lint.yaml
+5 −0 .github/workflows/contracts-test.yaml
+6 −0 .github/workflows/publish.yaml
+396 −0 LICENSE-docs
+38 −6 README.md
+17 −0 clients/js/CHANGELOG.md
+2 −2 clients/js/package.json
+5 −0 clients/py/.gitignore
+22 −0 clients/py/Makefile
+36 −0 clients/py/README.md
+4 −0 clients/py/requirements.dev.txt
+3 −0 clients/py/requirements.txt
+0 −0 clients/py/sapphirepy/__init__.py
+584 −0 clients/py/sapphirepy/deoxysii.py
+128 −0 clients/py/sapphirepy/envelope.py
+3 −0 clients/py/sapphirepy/error.py
+141 −0 clients/py/sapphirepy/sapphire.py
+0 −0 clients/py/sapphirepy/tests/__init__.py
+103 −0 clients/py/sapphirepy/tests/test_deoxysii.py
+92 −0 clients/py/sapphirepy/tests/test_e2e.py
+66 −0 clients/py/sapphirepy/tests/testdata/Deoxys-II-256-128-official-20190608.json
+1 −0 clients/py/sapphirepy/tests/testdata/Deoxys-II-256-128.json
+1 −0 clients/py/sapphirepy/tests/testdata/Greeter.abi
+1 −0 clients/py/sapphirepy/tests/testdata/Greeter.bin
+35 −0 clients/py/sapphirepy/tests/testdata/Greeter.sol
+33 −0 clients/py/setup.py
+48 −0 contracts/CHANGELOG.md
+397 −14 contracts/contracts/Subcall.sol
+1 −24 contracts/contracts/opl/Enclave.sol
+12 −14 contracts/contracts/opl/Endpoint.sol
+68 −5 contracts/contracts/tests/SubcallTests.sol
+1 −1 contracts/package.json
+8 −4 contracts/test/gas.ts
+2 −2 contracts/test/semantics.ts
+191 −31 contracts/test/subcall.ts
+2 −1 docs/addresses.md
+9 −9 docs/browser.md
+1 −1 docs/diagrams/c10l-smart-contract-call.mmd.svg
+1 −1 docs/diagrams/c10l-smart-contract-tx.mmd.svg
+13 −13 docs/guide.mdx
+1 −2 runtime/.cargo/audit.toml
+3 −3 runtime/Cargo.lock
+2 −2 runtime/Cargo.toml
+4 −4 runtime/src/lib.rs

0 comments on commit 4ab04c9

Please sign in to comment.