Skip to content

Commit

Permalink
fix: package version
Browse files Browse the repository at this point in the history
  • Loading branch information
ashitakah committed Nov 7, 2024
1 parent 2d63d58 commit bde5b21
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"package.json": "sort-package-json"
},
"dependencies": {
"@defi-wonderland/prophet-core": "0.0.0-17b27bfb",
"@defi-wonderland/prophet-core": "0.0.0-823459fc",
"@openzeppelin/contracts": "4.9.5",
"solmate": "https://github.com/transmissions11/solmate.git#bfc9c25865a274a7827fea5abf6e4fb64fc64e6c"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import {CommonAccessController} from '@defi-wonderland/prophet-core/solidity/con

import {Module} from '@defi-wonderland/prophet-core/solidity/contracts/Module.sol';
import {IOracle} from '@defi-wonderland/prophet-core/solidity/interfaces/IOracle.sol';
import {IAccessModule} from '@defi-wonderland/prophet-core/solidity/interfaces/modules/accessControl/IAccessModule.sol';

abstract contract ModuleAccessController is CommonAccessController, Module {
constructor(IOracle _oracle) Module(_oracle) {}
Expand Down
10 changes: 5 additions & 5 deletions solidity/test/unit/modules/dispute/BondEscalationModule.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {IAccessController} from '@defi-wonderland/prophet-core/solidity/interfac
import {IModule} from '@defi-wonderland/prophet-core/solidity/interfaces/IModule.sol';

import {IOracle, IOracleAccessController} from '@defi-wonderland/prophet-core/solidity/interfaces/IOracle.sol';
import {IAccessModule} from '@defi-wonderland/prophet-core/solidity/interfaces/modules/accessControl/IAccessModule.sol';
import {IAccessModule} from '@defi-wonderland/prophet-core/solidity/interfaces/modules/access/IAccessModule.sol';
import {ValidatorLib} from '@defi-wonderland/prophet-core/solidity/libraries/ValidatorLib.sol';
import {IERC20} from '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import {Strings} from '@openzeppelin/contracts/utils/Strings.sol';
Expand Down Expand Up @@ -1550,9 +1550,9 @@ contract BondEscalationModule_Unit_AccessControl is BaseTest {
abi.encode(
IAccessModule.AccessControlParameters({
sender: _caller,
accessControl: _accessControl,
typehash: _PLEDGE_FOR_DISPUTE_TYPEHASH,
params: abi.encode(mockRequest, _dispute),
accessControl: _accessControl
typehashParams: abi.encode(mockRequest, _dispute)
})
)
)
Expand Down Expand Up @@ -1623,9 +1623,9 @@ contract BondEscalationModule_Unit_AccessControl is BaseTest {
abi.encode(
IAccessModule.AccessControlParameters({
sender: _caller,
accessControl: _accessControl,
typehash: _PLEDGE_AGAINST_DISPUTE_TYPEHASH,
params: abi.encode(mockRequest, _dispute),
accessControl: _accessControl
typehashParams: abi.encode(mockRequest, _dispute)
})
)
)
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@
dependencies:
"@jridgewell/trace-mapping" "0.3.9"

"@defi-wonderland/[email protected]17b27bfb":
version "0.0.0-17b27bfb"
resolved "https://registry.yarnpkg.com/@defi-wonderland/prophet-core/-/prophet-core-0.0.0-17b27bfb.tgz#118bb97067eb84bf4059e2b5c35ce7d10689694f"
integrity sha512-auL03R3YeBQDdyAq4GH+I653oBMWOIMH1+sYdxl6HYqWZSb/8+973hZ4tj3M5EfQZeWcFywdjkceKdVjeAcD3g==
"@defi-wonderland/[email protected]823459fc":
version "0.0.0-823459fc"
resolved "https://registry.yarnpkg.com/@defi-wonderland/prophet-core/-/prophet-core-0.0.0-823459fc.tgz#a48f7b35899968468f37f5c9eb2c67a1c8a823ff"
integrity sha512-lqTFlKFUwt4yjBGnSUJf9PwNQE6MP4KJHUSCov2+yxJCkKHKzFlYQ7M25dAdebiwa6Hfd+XHQfLx1bzff6mM6Q==

"@defi-wonderland/[email protected]":
version "0.0.0-3e9c8e8b"
Expand Down

0 comments on commit bde5b21

Please sign in to comment.