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

async backing phase 1, 2. Block production 12 secs #890

Open
wants to merge 56 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
3ac960b
compile contract and script to deploy
magecnion Sep 12, 2024
a4dd464
check estimate gas
magecnion Sep 23, 2024
c618a68
add logs
magecnion Sep 23, 2024
3d45a9b
Merge remote-tracking branch 'origin/main' into fix/deploy-contract-u…
magecnion Sep 23, 2024
ed16ada
Merge remote-tracking branch 'origin/main' into fix/deploy-contract-u…
magecnion Sep 26, 2024
3d06b5d
WIP use moonbeam impl
magecnion Oct 1, 2024
311b158
add download_polkadot.sh
magecnion Oct 1, 2024
1e91b20
use script in ci
magecnion Oct 1, 2024
4e6e169
Merge remote-tracking branch 'origin/feature/upgrade-zombienet-relayc…
magecnion Oct 1, 2024
1b4c019
add rest of the async back config
magecnion Oct 2, 2024
22909d3
remove Balances contract tests
magecnion Oct 2, 2024
9a1cce7
remove logs from zombienet
magecnion Oct 2, 2024
f2c7f75
fm
magecnion Oct 2, 2024
90df877
fmt
magecnion Oct 3, 2024
0ec2898
Merge remote-tracking branch 'origin/main' into fix/deploy-contract-u…
magecnion Oct 3, 2024
b416bdc
remove async backing config
magecnion Oct 3, 2024
89c5806
fmt
magecnion Oct 3, 2024
b9b31a6
try darwinia patch
magecnion Oct 9, 2024
2944ff3
try darwinia patch
magecnion Oct 9, 2024
ed1d087
Merge branch 'main' into fix/missing-parachain-inherent-data
asiniscalchi Oct 22, 2024
23c69d2
Merge remote-tracking branch 'origin/main' into fix/deploy-contract-u…
magecnion Nov 6, 2024
91136f4
clippy
magecnion Nov 6, 2024
4603830
test query pending state
magecnion Nov 6, 2024
9c988d8
npm run fmt
magecnion Nov 6, 2024
73711d7
use real storage value to get pending state
magecnion Nov 6, 2024
d4469d2
remove unneeded code
magecnion Nov 6, 2024
fed97f4
rename test
magecnion Nov 6, 2024
19b9aca
use hardhat instead of truffle
magecnion Nov 7, 2024
08029bf
add test deploy with HH
magecnion Nov 7, 2024
ac9cc4c
Merge remote-tracking branch 'origin/main' into fix/deploy-contract-u…
magecnion Nov 14, 2024
3ca4014
add types so typescript doesnt complain
magecnion Nov 14, 2024
4ab1e15
update tsconfig.json make less strict
magecnion Nov 14, 2024
6ffd3ba
fix use this.context
magecnion Nov 14, 2024
94f7a94
add test-deploy to ci
magecnion Nov 14, 2024
210fc45
fix npm command
magecnion Nov 14, 2024
1b987ce
fix e2e job github action file
magecnion Nov 14, 2024
047c1a4
don't remove Storage.sol file
magecnion Nov 14, 2024
ca7fd7b
Merge branch 'main' into fix/deploy-contract-using-hardhat
asiniscalchi Nov 20, 2024
febf52f
Enhance Node Service and Runtime with Async Backing and Updated Confi…
asiniscalchi Nov 5, 2024
a13deaa
no pahse_3
asiniscalchi Nov 21, 2024
9b9255e
fix tests
asiniscalchi Nov 21, 2024
8b0181c
fix tests
asiniscalchi Nov 21, 2024
b9449af
set minimum period
asiniscalchi Nov 21, 2024
1a8748e
transaction_version to 1
asiniscalchi Nov 21, 2024
a2a3917
working
asiniscalchi Nov 21, 2024
2e243e1
updated metadata
asiniscalchi Nov 21, 2024
6f3c7ba
refactoring
asiniscalchi Nov 21, 2024
071f700
acrive async backing
asiniscalchi Nov 22, 2024
2629c28
change of session stalls txs
asiniscalchi Nov 22, 2024
3465e2b
Fix/deploy contract using hardhat (#889)
asiniscalchi Nov 22, 2024
8575fff
set timestamp ahead in for pending inherent data
magecnion Nov 22, 2024
c32ed8c
Merge remote-tracking branch 'origin/fix/missing-parachain-inherent-d…
magecnion Nov 22, 2024
f20bcd1
Merge remote-tracking branch 'origin/fix/missing-parachain-inherent-d…
magecnion Nov 22, 2024
def635a
fix clippy
magecnion Nov 22, 2024
23fbe5a
Merge branch 'fix/deploy-contract-using-hardhat' into feature/no_asyn…
asiniscalchi Nov 22, 2024
d6e3995
deactive async_backing
asiniscalchi Nov 22, 2024
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
Prev Previous commit
Next Next commit
fix use this.context
  • Loading branch information
magecnion committed Nov 14, 2024
commit 6ffd3ba05f61e1a006624e874a1231c3718fbd6f
2 changes: 1 addition & 1 deletion e2e-tests/tests/test-web3api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describeWithExistingNode("Frontier RPC (Web3Api)", function () {
});

step("pending state is returned correctly", async function () {
const balance = new BN(await context.web3.eth.getBalance(FAITH, "pending"));
const balance = new BN(await this.context.web3.eth.getBalance(this.ethereumPairs.faith.address, "pending"));
expect(balance.gt(new BN(0))).to.be.eq(true);
});
});
Loading