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

Update libs #34

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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 lib/openzeppelin-contracts-v5
2 changes: 1 addition & 1 deletion lib/superfluid-protocol-monorepo
Submodule superfluid-protocol-monorepo updated 37 files
+2 −2 packages/automation-contracts/autowrap/package.json
+1 −2 packages/automation-contracts/scheduler/README.md
+2 −2 packages/automation-contracts/scheduler/package.json
+433 −0 packages/automation-contracts/scheduler/test/VestingSchedulerV2.StatefulFuzz.t.sol
+156 −1 packages/automation-contracts/scheduler/test/VestingSchedulerV2.t.sol
+4 −1 packages/ethereum-contracts/CHANGELOG.md
+7 −14 packages/ethereum-contracts/contracts/interfaces/utils/IUserDefinedMacro.sol
+9 −1 packages/ethereum-contracts/contracts/utils/ForwarderBase.sol
+5 −4 packages/ethereum-contracts/contracts/utils/MacroForwarder.sol
+8 −0 packages/ethereum-contracts/contracts/utils/SuperfluidFrameworkDeploymentSteps.sol
+5 −13 packages/ethereum-contracts/ops-scripts/deploy-deterministically.js
+15 −9 packages/ethereum-contracts/ops-scripts/deploy-test-environment.js
+3 −3 packages/ethereum-contracts/package.json
+9 −3 packages/ethereum-contracts/tasks/deploy-macro-forwarder.sh
+1 −0 packages/ethereum-contracts/test/foundry/SuperfluidFrameworkDeployer.t.sol
+177 −38 packages/ethereum-contracts/test/foundry/utils/MacroForwarder.t.sol
+1 −1 packages/hot-fuzz/package.json
+2 −2 packages/js-sdk/package.json
+8 −0 packages/metadata/CHANGELOG.md
+17 −16 packages/metadata/main/networks/list.cjs
+17 −16 packages/metadata/module/networks/list.js
+17 −16 packages/metadata/networks.json
+1 −1 packages/metadata/package.json
+2 −2 packages/sdk-core/package.json
+9 −0 packages/subgraph/CHANGELOG.md
+4 −3 packages/subgraph/package.json
+12 −2 packages/subgraph/schema.graphql
+77 −37 packages/subgraph/src/mappingHelpers.ts
+2 −3 packages/subgraph/src/mappings/cfav1.ts
+32 −26 packages/subgraph/src/mappings/gdav1.ts
+9 −9 packages/subgraph/src/mappings/idav1.ts
+4 −4 packages/subgraph/src/mappings/superToken.ts
+5 −5 packages/subgraph/src/mappings/superfluidPool.ts
+2 −0 packages/subgraph/src/utils.ts
+0 −16 packages/subgraph/tests/bugs/2024-03-07-pool-member-total-amount-received.test.ts
+7 −0 packages/subgraph/tests/gdav1/event/gdav1.event.test.ts
+128 −51 yarn.lock
2 changes: 1 addition & 1 deletion src/CustomERC20Wrapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ contract CustomERC20WrapperProxy is CustomSuperTokenBase, UUPSProxy {
) external {
// This call to the factory invokes `UUPSProxy.initialize`, which connects the proxy to the canonical SuperToken implementation.
// It also emits an event which facilitates discovery of this token.
ISuperTokenFactory(factory).initializeCustomSuperToken(address(this));
factory.initializeCustomSuperToken(address(this));

// This initializes the token storage and sets the `initialized` flag of OpenZeppelin Initializable.
// This makes sure that it will revert if invoked more than once.
Expand Down
2 changes: 1 addition & 1 deletion src/PureSuperToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ contract PureSuperTokenProxy is CustomSuperTokenBase, UUPSProxy {
) external {
// This call to the factory invokes `UUPSProxy.initialize`, which connects the proxy to the canonical SuperToken implementation.
// It also emits an event which facilitates discovery of this token.
ISuperTokenFactory(factory).initializeCustomSuperToken(address(this));
factory.initializeCustomSuperToken(address(this));

// This initializes the token storage and sets the `initialized` flag of OpenZeppelin Initializable.
// This makes sure that it will revert if invoked more than once.
Expand Down
2 changes: 1 addition & 1 deletion src/xchain/BridgedSuperToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ contract BridgedSuperTokenProxy is CustomSuperTokenBase, UUPSProxy, Ownable, IXE
) external {
// This call to the factory invokes `UUPSProxy.initialize`, which connects the proxy to the canonical SuperToken implementation.
// It also emits an event which facilitates discovery of this token.
ISuperTokenFactory(factory).initializeCustomSuperToken(address(this));
factory.initializeCustomSuperToken(address(this));

// This initializes the token storage and sets the `initialized` flag of OpenZeppelin Initializable.
// This makes sure that it will revert if invoked more than once.
Expand Down