sepolia deploy
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 29s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 29s
Details
This commit is contained in:
parent
c080778872
commit
ffe711ad7f
|
@ -6,9 +6,9 @@
|
|||
"Proposals": "0x981234BBBC1ec93200F5BB3a65e2F9711A6109aa"
|
||||
},
|
||||
"sepolia": {
|
||||
"DAO": "0x241514DC94568e98222fBE66662b054b545A61AE",
|
||||
"Work1": "0xc04152a440d8f79099e2049dc19b07EE7f2F8cc0",
|
||||
"Onboarding": "0xFa5877940e527559320afc1303c06D0fb7E88907",
|
||||
"Proposals": "0xeA9AF5fF56ef2bfd9DbC1295F1488302c61B92dF"
|
||||
"DAO": "0x98F7A2ce8C9b7F739b2bdBc174F59D0e5fDc4Af8",
|
||||
"Work1": "0x514e65208d43865F84Ab6aE67dAAd06078613417",
|
||||
"Onboarding": "0x0f2998E49aeA7081BF86561b9fe51604a962F9FC",
|
||||
"Proposals": "0x9BaEdea14145c5368867b1f0cDd7CE298768737e"
|
||||
}
|
||||
}
|
|
@ -6,9 +6,9 @@
|
|||
"Proposals": "0x981234BBBC1ec93200F5BB3a65e2F9711A6109aa"
|
||||
},
|
||||
"sepolia": {
|
||||
"DAO": "0x241514DC94568e98222fBE66662b054b545A61AE",
|
||||
"Work1": "0xc04152a440d8f79099e2049dc19b07EE7f2F8cc0",
|
||||
"Onboarding": "0xFa5877940e527559320afc1303c06D0fb7E88907",
|
||||
"Proposals": "0xeA9AF5fF56ef2bfd9DbC1295F1488302c61B92dF"
|
||||
"DAO": "0x98F7A2ce8C9b7F739b2bdBc174F59D0e5fDc4Af8",
|
||||
"Work1": "0x514e65208d43865F84Ab6aE67dAAd06078613417",
|
||||
"Onboarding": "0x0f2998E49aeA7081BF86561b9fe51604a962F9FC",
|
||||
"Proposals": "0x9BaEdea14145c5368867b1f0cDd7CE298768737e"
|
||||
}
|
||||
}
|
|
@ -22,7 +22,7 @@ const getCurrentVersion = () => {
|
|||
};
|
||||
|
||||
const fetchCurrentVersionProposal = async () => {
|
||||
const p = await proposalsContract.
|
||||
// const p = await proposalsContract.
|
||||
};
|
||||
|
||||
const getLatestVersion = () => {
|
||||
|
|
|
@ -124,9 +124,12 @@ describe('Onboarding', () => {
|
|||
await expect(dao.evaluateOutcome(1)).to.emit(dao, 'ValidationPoolInitiated').withArgs(2);
|
||||
expect(await dao.postCount()).to.equal(3);
|
||||
const post = await dao.posts('req-content-id');
|
||||
expect(post.author).to.equal(account2);
|
||||
expect(post.sender).to.equal(onboarding.target);
|
||||
expect(post.id).to.equal('req-content-id');
|
||||
const postAuthors = await dao.getPostAuthors('req-content-id');
|
||||
expect(postAuthors).to.have.length(1);
|
||||
expect(postAuthors[0].weightPercent).to.equal(100);
|
||||
expect(postAuthors[0].authorAddress).to.equal(account2);
|
||||
const pool = await dao.validationPools(2);
|
||||
expect(pool.postId).to.equal('req-content-id');
|
||||
expect(pool.fee).to.equal(PRICE * 0.1);
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
"Proposals": "0x981234BBBC1ec93200F5BB3a65e2F9711A6109aa"
|
||||
},
|
||||
"sepolia": {
|
||||
"DAO": "0x241514DC94568e98222fBE66662b054b545A61AE",
|
||||
"Work1": "0xc04152a440d8f79099e2049dc19b07EE7f2F8cc0",
|
||||
"Onboarding": "0xFa5877940e527559320afc1303c06D0fb7E88907",
|
||||
"Proposals": "0xeA9AF5fF56ef2bfd9DbC1295F1488302c61B92dF"
|
||||
"DAO": "0x98F7A2ce8C9b7F739b2bdBc174F59D0e5fDc4Af8",
|
||||
"Work1": "0x514e65208d43865F84Ab6aE67dAAd06078613417",
|
||||
"Onboarding": "0x0f2998E49aeA7081BF86561b9fe51604a962F9FC",
|
||||
"Proposals": "0x9BaEdea14145c5368867b1f0cDd7CE298768737e"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue