Skip to content

Commit 6b64ae0

Browse files
authoredMay 26, 2023
Merge pull request #238 from SocketDotTech/deploying
deployed dev
2 parents f45c84a + d959d77 commit 6b64ae0

18 files changed

+1054
-1104
lines changed
 

‎contracts/examples/Counter.sol

+15
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ pragma solidity 0.8.7;
33

44
import "../interfaces/IPlug.sol";
55
import "../interfaces/ISocket.sol";
6+
import "../libraries/RescueFundsLib.sol";
67

78
contract Counter is IPlug {
89
// immutables
@@ -120,4 +121,18 @@ contract Counter is IPlug {
120121
function setupComplete() external {
121122
owner = address(0);
122123
}
124+
125+
/**
126+
* @notice Rescues funds from a contract that has lost access to them.
127+
* @param token_ The address of the token contract.
128+
* @param userAddress_ The address of the user who lost access to the funds.
129+
* @param amount_ The amount of tokens to be rescued.
130+
*/
131+
function rescueFunds(
132+
address token_,
133+
address userAddress_,
134+
uint256 amount_
135+
) external onlyOwner {
136+
RescueFundsLib.rescueFunds(token_, userAddress_, amount_);
137+
}
123138
}

‎deploy.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
npx hardhat run scripts/deploy/index.ts &&
2-
npx ts-node scripts/deploy/checkRoles.ts &&
3-
npx hardhat run scripts/deploy/configure.ts &&
4-
npx hardhat run scripts/deploy/connect.ts &&
5-
npx hardhat run scripts/deploy/verify.ts
1+
npx hardhat run scripts/deploy/index.ts &&
2+
npx ts-node scripts/deploy/checkRoles.ts --no-compile &&
3+
npx hardhat run scripts/deploy/configure.ts --no-compile &&
4+
npx hardhat run scripts/deploy/connect.ts --no-compile &&
5+
npx hardhat run scripts/deploy/verify.ts --no-compile

‎deployments/dev_addresses.json

+130-134
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)