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

chore: deploy 1.0.2 #18

Merged
merged 1 commit into from
Nov 8, 2023
Merged
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
92 changes: 66 additions & 26 deletions Deployments.md

Large diffs are not rendered by default.

Binary file modified Quantstamp-Audit.pdf
Binary file not shown.
69 changes: 69 additions & 0 deletions broadcast/Deploy_LightAccountFactory.s.sol/1/run-1699396674.json

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions broadcast/Deploy_LightAccountFactory.s.sol/10/run-1699398298.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

85 changes: 85 additions & 0 deletions broadcast/Deploy_LightAccountFactory.s.sol/137/run-1699396531.json

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions broadcast/Deploy_LightAccountFactory.s.sol/420/run-1699396434.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions broadcast/Deploy_LightAccountFactory.s.sol/5/run-1699396605.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions script/Deploy_LightAccountFactory.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {IEntryPoint} from "account-abstraction/interfaces/IEntryPoint.sol";

import {LightAccountFactory} from "../src/LightAccountFactory.sol";

// @notice Deploys LightAccountFactory to the address `0x000000893A26168158fbeaDD9335Be5bC96592E2`
// @notice Deploys LightAccountFactory to the address `0x00000055C0b4fA41dde26A74435ff03692292FBD`
// @dev Note: Script uses EntryPoint at address 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789
// @dev To run: `forge script script/Deploy_LightAccountFactory.s.sol:Deploy_LightAccountFactory --broadcast --rpc-url ${RPC_URL} --verify -vvvv`
contract Deploy_LightAccountFactory is Script {
Expand Down Expand Up @@ -40,10 +40,10 @@ contract Deploy_LightAccountFactory is Script {
console.log("********************************");

LightAccountFactory factory =
new LightAccountFactory{salt: 0x00000000000000000000000000000000000000007845d3459c316000001d6f83}(entryPoint);
new LightAccountFactory{salt: 0x4e59b44847b379578588920ca78fbf26c0b4956c3406f3bdc271500000c2f72f}(entryPoint);

// Deployed address check
if (address(factory) != 0x000000893A26168158fbeaDD9335Be5bC96592E2) {
if (address(factory) != 0x00000055C0b4fA41dde26A74435ff03692292FBD) {
revert DeployedAddressMismatch(address(factory));
}

Expand Down