-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Always deploy with governor as admin and transfer ownership after (#173)
* Set signature bridge sides on the anchor after all initialization has occurred * SignatureBridgeSides always governed by admin * Update connect to existing SignatureBridgeSides * Set the admin of the bridge on static initialization * Fix tests and address PR comments
- Loading branch information
Showing
10 changed files
with
238 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
exports.HARDHAT_PK_0 = '0000000000000000000000000000000000000000000000000000000000000010'; | ||
|
||
|
||
exports.HARDHAT_PK_1 = '0000000000000000000000000000000000000000000000000000000000000001'; | ||
exports.HARDHAT_PK_2 = '0000000000000000000000000000000000000000000000000000000000000002'; | ||
|
||
exports.HARDHAT_ACCOUNTS = [ | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000010', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000001', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000002', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000003', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000004', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000005', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000006', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000007', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000008', | ||
balance: '1000000000000000000000', | ||
}, | ||
{ | ||
privateKey: '0000000000000000000000000000000000000000000000000000000000000009', | ||
balance: '1000000000000000000000', | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.