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

Send priority fees to collators #3120

Merged
merged 48 commits into from
Jan 14, 2025
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
ae79201
feat: send eth tips to collator
TarekkMA Dec 27, 2024
ae978b8
style: fix import order
TarekkMA Dec 27, 2024
903a8a8
fix: tests
TarekkMA Dec 30, 2024
35fe6d2
fix: tests
TarekkMA Dec 30, 2024
059436a
style: fix formatting
TarekkMA Dec 30, 2024
1d80e0a
test: fix test
TarekkMA Dec 30, 2024
0835677
test: fix test
TarekkMA Dec 30, 2024
051d628
style: formatting
TarekkMA Dec 30, 2024
da52ecb
fix: test
TarekkMA Dec 30, 2024
1fb8015
fix: test
TarekkMA Dec 30, 2024
a286912
fix: test
TarekkMA Dec 31, 2024
71f0618
fix: parameters tests.
TarekkMA Dec 31, 2024
188676a
fix: contract tests.
TarekkMA Dec 31, 2024
0926425
fix: fix test-eth-pool-resubmit-txn.ts
TarekkMA Jan 3, 2025
12631ff
fix: fix test-eth-pool-error.ts
TarekkMA Jan 3, 2025
794001f
fix: Update balance transfer tests to use CHARLETH_ADDRESS in tests
TarekkMA Jan 6, 2025
bc8d687
style: fix
TarekkMA Jan 6, 2025
c6e887e
fix: Refactor xtokens test and disable tip fee burning
TarekkMA Jan 6, 2025
7ee98f5
fix: fix test-contract tests
TarekkMA Jan 6, 2025
66aff79
fix: commands in update-local-types
TarekkMA Jan 6, 2025
6ca5fce
refactor: fee calculation logic and improve modularity.
TarekkMA Jan 6, 2025
ebb4cf8
fix: FeesTreasuryProportion test logic and helpers
TarekkMA Jan 7, 2025
5b5cb0a
fix: argument order in calculateFeePortions function call
TarekkMA Jan 7, 2025
822c78e
test: Add verification for latest block fees and add a check for tips.
TarekkMA Jan 7, 2025
ccd3df9
refactor: separate fee and tip calculation
TarekkMA Jan 7, 2025
0b3adaf
fix: fee and tip handling logic for clarity and correctness
TarekkMA Jan 7, 2025
f7c64c9
refactor: clean up unused imports in Moonbeam runtime
TarekkMA Jan 7, 2025
8d71ba8
style: correct indentation in runtime lib.rs
TarekkMA Jan 7, 2025
0b11025
test: also check LatestBlockFees in eth transactions
TarekkMA Jan 8, 2025
42e0a69
tmp: check if all tests pass
TarekkMA Jan 8, 2025
6a0346b
refactor: remove unnecessary console logs in tests
TarekkMA Jan 8, 2025
7b16ab2
tmp: change default value
TarekkMA Jan 9, 2025
62301d1
Revert "tmp: change default value"
TarekkMA Jan 9, 2025
fdab76f
tmp: change default value
TarekkMA Jan 9, 2025
56b62d3
tmp: change default value
TarekkMA Jan 9, 2025
df28273
test: add comment explaining test file
TarekkMA Jan 9, 2025
fabaa99
Revert "tmp: change default value"
TarekkMA Jan 9, 2025
c41ed41
Revert "tmp: change default value"
TarekkMA Jan 9, 2025
e3b5c3d
feature: send substrate tips to block author
TarekkMA Jan 9, 2025
f623e04
fix: incorrect generics
TarekkMA Jan 9, 2025
4392ec1
style: fix formatting
TarekkMA Jan 9, 2025
213b022
test: refine fee and tip handling logic for runtime tests
TarekkMA Jan 9, 2025
58bca06
test(runtime): fix incorrect runtime references in tests
TarekkMA Jan 9, 2025
3fdb11d
refactor: move all deal with fees logic into common crate
TarekkMA Jan 14, 2025
f53feb5
refactor: remove unused imports
TarekkMA Jan 14, 2025
7001e14
style: add copyright
TarekkMA Jan 14, 2025
c199943
Update runtime/common/src/deal_with_fees.rs
RomarQ Jan 14, 2025
0980453
test: fix test
TarekkMA Jan 14, 2025
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: commands in update-local-types
  • Loading branch information
TarekkMA committed Jan 6, 2025
commit 66aff791b7c06dfd20610366118abb54f740fa25
3 changes: 2 additions & 1 deletion test/scripts/update-local-types.ts
Original file line number Diff line number Diff line change
@@ -60,6 +60,7 @@ const startNode = (network: string, rpcPort: string, port: string) => {
"--wasm-execution=interpreted-i-know-what-i-do",
"--no-telemetry",
"--no-prometheus",
"--rpc-cors=all",
"--tmp",
],
{
@@ -107,7 +108,7 @@ const executeUpdateAPIScript = async () => {
// Bundle types
await executeScript("../../moonbeam-types-bundle", "pnpm i");
await executeScript("../../moonbeam-types-bundle", "pnpm build");
await executeScript("../../moonbeam-types-bundle", "pnpm fmt:fix");
await executeScript("../../moonbeam-types-bundle", "pnpm check:fix");

// Generate types
console.log("Extracting metadata for all runtimes...");