Skip to content

Commit

Permalink
Merge pull request #727 from oasisprotocol/dependabot/submodules/exte…
Browse files Browse the repository at this point in the history
…rnal/sapphire-paratime-cfc6eeb

submodules: bump external/sapphire-paratime from `add1b7f` to `cfc6eeb`
  • Loading branch information
matevz authored Feb 6, 2024
2 parents 61fae30 + e197597 commit 87d4716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/sapphire-paratime
Submodule sapphire-paratime updated 81 files
+12 −7 .github/workflows/ci-docs.yaml
+2 −2 .github/workflows/ci-lint.yaml
+3 −3 .github/workflows/ci-test.yaml
+10 −3 .github/workflows/contracts-test.yaml
+1 −0 clients/js/.eslintrc.cjs
+1 −0 clients/js/.gitignore
+17 −0 clients/js/CHANGELOG.md
+3 −12 clients/js/README.md
+16 −21 clients/js/package.json
+165 −0 clients/js/scripts/proxy.ts
+259 −0 clients/js/src/calldatapublickey.ts
+39 −133 clients/js/src/cipher.ts
+342 −488 clients/js/src/compat.ts
+1 −27 clients/js/src/index.ts
+84 −0 clients/js/src/interfaces.ts
+29 −0 clients/js/src/networks.ts
+74 −64 clients/js/src/signed_calls.ts
+2 −63 clients/js/test/cipher.spec.ts
+195 −321 clients/js/test/compat.spec.ts
+4 −5 clients/js/test/signed_calls.spec.ts
+5 −5 clients/js/test/utils.ts
+5 −1 clients/js/tsconfig.json
+9 −32 clients/js/type-only-test/index.ts
+1 −1 clients/js/type-only-test/package.json
+1 −0 contracts/.gitignore
+6 −0 contracts/CHANGELOG.md
+23 −3 contracts/README.md
+4 −0 contracts/book.toml
+16 −13 contracts/contracts/ConsensusUtils.sol
+12 −11 contracts/contracts/EIP155Signer.sol
+35 −27 contracts/contracts/EthereumUtils.sol
+8 −28 contracts/contracts/RLPWriter.sol
+346 −49 contracts/contracts/Sapphire.sol
+50 −56 contracts/contracts/Subcall.sol
+1 −1 contracts/contracts/opl/Enclave.sol
+7 −4 contracts/contracts/opl/Endpoint.sol
+1 −1 contracts/contracts/opl/Host.sol
+14 −0 contracts/contracts/tests/Omnibus.sol
+11 −5 contracts/hardhat.config.ts
+9 −8 contracts/package.json
+12 −0 contracts/post-build-doc.sh
+1 −1 contracts/scripts/deploy-wrose.ts
+35 −29 contracts/test/eip155.ts
+7 −16 contracts/test/gas.ts
+4 −5 contracts/test/hashes.ts
+17 −13 contracts/test/semantics.ts
+1 −1 contracts/test/signedqueries.ts
+2 −2 contracts/test/signing.ts
+83 −72 contracts/test/subcall.ts
+58 −0 contracts/theme/pagetoc.css
+3 −3 docs/authentication.md
+1 −1 docs/browser.md
+4 −2 docs/gasless.md
+0 −317 docs/precompiles.md
+1 −1 docs/quickstart.mdx
+32 −0 docs/security.md
+1 −0 examples/ethersv5-ts-esm/.gitignore
+23 −0 examples/ethersv5-ts-esm/package.json
+83 −0 examples/ethersv5-ts-esm/src/index.ts
+14 −0 examples/ethersv5-ts-esm/tsconfig.json
+1 −0 examples/ethersv6-ts-esm/.gitignore
+20 −0 examples/ethersv6-ts-esm/package.json
+77 −0 examples/ethersv6-ts-esm/src/index.ts
+14 −0 examples/ethersv6-ts-esm/tsconfig.json
+2 −5 examples/hardhat-boilerplate/frontend/package.json
+1 −1 examples/hardhat-boilerplate/frontend/src/components/Dapp.js
+2 −2 examples/hardhat/hardhat.config.ts
+5 −9 examples/hardhat/package.json
+1 −1 examples/hardhat/scripts/deploy-arcanum.ts
+7 −5 examples/hardhat/scripts/run-counter.ts
+5 −5 examples/hardhat/scripts/run-vigil.ts
+6 −7 examples/onchain-signer/contracts/Gasless.sol
+4 −1 examples/onchain-signer/hardhat.config.ts
+11 −13 examples/onchain-signer/package.json
+25 −22 examples/onchain-signer/test/CommentBox.ts
+5 −4 integrations/hardhat/package.json
+0 −2 integrations/hardhat/src/index.ts
+0 −7 integrations/hardhat/src/type-extensions.ts
+4,036 −2,427 pnpm-lock.yaml
+3 −0 pnpm-workspace.yaml
+2 −2 runtime/Cargo.lock

0 comments on commit 87d4716

Please sign in to comment.