-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
126 additions
and
106 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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
module.exports = { | ||
skipFiles: [ | ||
"compliance/legacy", | ||
"_testContracts", | ||
"roles/permissioning/owner/", | ||
"roles/permissioning/agent/", | ||
], | ||
skipFiles: [ | ||
"compliance/legacy", | ||
"_testContracts", | ||
"roles/permissioning/owner/", | ||
"roles/permissioning/agent/", | ||
], | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,58 @@ | ||
const {deployFullSuiteFixture} = require('../test/fixtures/deploy-full-suite.fixture.ts'); | ||
const { | ||
deployFullSuiteFixture, | ||
} = require("../test/fixtures/deploy-full-suite.fixture.ts"); | ||
|
||
async function main(){ | ||
const deployment = await deployFullSuiteFixture(); | ||
async function main() { | ||
const deployment = await deployFullSuiteFixture(); | ||
|
||
|
||
console.log(deployment); | ||
console.log("\n~~ Accounts ~~"); | ||
console.log("Deployer: ", deployment.accounts.deployer.address); | ||
console.log("Token Issuer: ", deployment.accounts.tokenIssuer.address); | ||
console.log("Token Agent: ", deployment.accounts.tokenAgent.address); | ||
console.log("Token Admin: ", deployment.accounts.tokenAdmin.address); | ||
console.log("Claim Issuer: ", deployment.accounts.claimIssuer.address); | ||
console.log("Claim Issuer Signing Key: ", deployment.accounts.claimIssuerSigningKey.address); | ||
console.log("Alice Action Key: ", deployment.accounts.aliceActionKey.address); | ||
console.log("Alice Wallet: ", deployment.accounts.aliceWallet.address); | ||
console.log("Bob WAllet: ", deployment.accounts.bobWallet.address); | ||
console.log("Charlie Wallet: ", deployment.accounts.charlieWallet.address); | ||
console.log("David Wallet: ", deployment.accounts.davidWallet.address); | ||
console.log("Another Wallet: ", deployment.accounts.anotherWallet.address); | ||
console.log("\n~~ Identities ~~"); | ||
console.log("Alice Identity: ", deployment.identities.aliceIdentity.address); | ||
console.log("Bob Identity: ", deployment.identities.bobIdentity.address); | ||
console.log("Charlie Identity: ", deployment.identities.charlieIdentity.address); | ||
console.log("\n~~ Suite ~~"); | ||
console.log("Claim Issuer Contract: ", deployment.suite.claimIssuerContract.address); | ||
console.log("Claim Topics Registry: ", deployment.suite.claimTopicsRegistry.address); | ||
console.log("Identity Registry Storage: ", deployment.suite.identityRegistryStorage.address); | ||
console.log("Basic Compliance: ", deployment.suite.basicCompliance.address); | ||
console.log("Identity Registry: ", deployment.suite.identityRegistry.address); | ||
console.log("TokenOID: ", deployment.suite.tokenOID.address); | ||
console.log("Token: ", deployment.suite.token.address); | ||
console.log("\n--- --- --- --- ---"); | ||
console.log('Deployment completed!'); | ||
|
||
console.log(deployment); | ||
console.log("\n~~ Accounts ~~"); | ||
console.log("Deployer: ", deployment.accounts.deployer.address); | ||
console.log("Token Issuer: ", deployment.accounts.tokenIssuer.address); | ||
console.log("Token Agent: ", deployment.accounts.tokenAgent.address); | ||
console.log("Token Admin: ", deployment.accounts.tokenAdmin.address); | ||
console.log("Claim Issuer: ", deployment.accounts.claimIssuer.address); | ||
console.log( | ||
"Claim Issuer Signing Key: ", | ||
deployment.accounts.claimIssuerSigningKey.address | ||
); | ||
console.log("Alice Action Key: ", deployment.accounts.aliceActionKey.address); | ||
console.log("Alice Wallet: ", deployment.accounts.aliceWallet.address); | ||
console.log("Bob WAllet: ", deployment.accounts.bobWallet.address); | ||
console.log("Charlie Wallet: ", deployment.accounts.charlieWallet.address); | ||
console.log("David Wallet: ", deployment.accounts.davidWallet.address); | ||
console.log("Another Wallet: ", deployment.accounts.anotherWallet.address); | ||
console.log("\n~~ Identities ~~"); | ||
console.log("Alice Identity: ", deployment.identities.aliceIdentity.address); | ||
console.log("Bob Identity: ", deployment.identities.bobIdentity.address); | ||
console.log( | ||
"Charlie Identity: ", | ||
deployment.identities.charlieIdentity.address | ||
); | ||
console.log("\n~~ Suite ~~"); | ||
console.log( | ||
"Claim Issuer Contract: ", | ||
deployment.suite.claimIssuerContract.address | ||
); | ||
console.log( | ||
"Claim Topics Registry: ", | ||
deployment.suite.claimTopicsRegistry.address | ||
); | ||
console.log( | ||
"Identity Registry Storage: ", | ||
deployment.suite.identityRegistryStorage.address | ||
); | ||
console.log("Basic Compliance: ", deployment.suite.basicCompliance.address); | ||
console.log("Identity Registry: ", deployment.suite.identityRegistry.address); | ||
console.log("TokenOID: ", deployment.suite.tokenOID.address); | ||
console.log("Token: ", deployment.suite.token.address); | ||
console.log("\n--- --- --- --- ---"); | ||
console.log("Deployment completed!"); | ||
} | ||
|
||
main() | ||
.then(() => process.exit(0)) | ||
.catch(error => { | ||
console.error(error); | ||
process.exit(1); | ||
}); | ||
.then(() => process.exit(0)) | ||
.catch((error) => { | ||
console.error(error); | ||
process.exit(1); | ||
}); |