Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

submodules: bump external/sapphire-paratime from add1b7f to 53a17d1 #714

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/.gitignore
+17 −19 clients/js/package.json
+112 −0 clients/js/scripts/proxy.ts
+19 −97 clients/js/src/cipher.ts
+465 −465 clients/js/src/compat.ts
+1 −27 clients/js/src/index.ts
+79 −0 clients/js/src/interfaces.ts
+29 −0 clients/js/src/networks.ts
+74 −64 clients/js/src/signed_calls.ts
+2 −51 clients/js/test/cipher.spec.ts
+185 −270 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
+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
+34 −28 contracts/test/eip155.ts
+7 −10 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
+1 −0 examples/ethersv5-ts-esm/.gitignore
+23 −0 examples/ethersv5-ts-esm/package.json
+410 −0 examples/ethersv5-ts-esm/src/TestErc20Token.ts
+39 −0 examples/ethersv5-ts-esm/src/index.ts
+13 −0 examples/ethersv5-ts-esm/tsconfig.json
+1 −0 examples/ethersv6-ts-esm/.gitignore
+20 −0 examples/ethersv6-ts-esm/package.json
+410 −0 examples/ethersv6-ts-esm/src/TestErc20Token.ts
+39 −0 examples/ethersv6-ts-esm/src/index.ts
+13 −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
+19 −0 examples/web3js-ts-esm/package.json
+410 −0 examples/web3js-ts-esm/src/TestErc20Token.ts
+34 −0 examples/web3js-ts-esm/src/index.ts
+17 −0 examples/web3js-ts-esm/tsconfig.json
+5 −4 integrations/hardhat/package.json
+0 −2 integrations/hardhat/src/index.ts
+0 −7 integrations/hardhat/src/type-extensions.ts
+4,200 −2,402 pnpm-lock.yaml
+3 −0 pnpm-workspace.yaml
+2 −2 runtime/Cargo.lock
Loading