Skip to content

Commit

Permalink
undo number fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alistair-singh committed Dec 24, 2024
1 parent 249b839 commit d1040bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion contracts/scripts/DeployBeefyClient.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract DeployBeefyClient is Script {
function readConfig() internal pure returns (Config memory config) {
// Checkpoint generated using the script `./beefy-checkpoint.js` script in Polkadot-JS.
config = Config({
startBlock: 21_087_413,
startBlock: 21087413,
current: BeefyClient.ValidatorSet({
id: 644,
length: 297,
Expand Down
12 changes: 6 additions & 6 deletions contracts/scripts/westend/UpgradeShell.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,17 @@ contract UpgradeShell is Script {
bridgeHubParaID: ParaID.wrap(1002),
bridgeHubAgentID: 0x03170a2e7597b7b7e3d84c05391d139a62b157e78786d8c082f29dcf4c111314,
foreignTokenDecimals: 12,
maxDestinationFee: 2_000_000_000_000,
maxDestinationFee: 2000000000000,
initializerParams: Gateway.Config({
mode: OperatingMode.Normal,
deliveryCost: 200_000_000_000, // 0.2 Wnd
deliveryCost: 200000000000, // 0.2 Wnd
registerTokenFee: 0.002 ether,
assetHubParaID: ParaID.wrap(1000),
assetHubAgentID: 0x81c5ab2571199e3188135178f3c2c8e2d268be1313d029b30f534fa579b69b79,
assetHubCreateAssetFee: 200_000_000_000, // 0.2 Wnd
assetHubReserveTransferFee: 200_000_000_000, // 0.2 Wnd
exchangeRate: ud60x18(2_400_000_000_000_000),
multiplier: ud60x18(1_330_000_000_000_000_000),
assetHubCreateAssetFee: 200000000000, // 0.2 Wnd
assetHubReserveTransferFee: 200000000000, // 0.2 Wnd
exchangeRate: ud60x18(2400000000000000),
multiplier: ud60x18(1330000000000000000),
rescueOperator: 0x302F0B71B8aD3CF6dD90aDb668E49b2168d652fd
})
});
Expand Down

0 comments on commit d1040bb

Please sign in to comment.