Skip to content

Commit

Permalink
chore: updated to new prerelease version
Browse files Browse the repository at this point in the history
  • Loading branch information
mangatafinance committed Mar 27, 2024
1 parent ce3cec3 commit 4cf4b45
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 11 deletions.
14 changes: 13 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/types/metadata.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mangata-finance/types",
"version": "2.2.3-eth-rollup-develop.22",
"version": "2.2.3-feature-timestamp.0",
"description": "Polkadot.js type definitions for Mangata Network",
"author": "Mangata Finance <solutions@mangata.finance>",
"repository": {
Expand Down
8 changes: 4 additions & 4 deletions packages/types/src/interfaces/lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1299,7 +1299,7 @@ export default {
depositRecipient: '[u8;20]',
tokenAddress: '[u8;20]',
amount: 'U256',
blockHash: 'H256'
timeStamp: 'U256'
},
/**
* Lookup144: pallet_rolldown::messages::RequestId
Expand All @@ -1321,7 +1321,7 @@ export default {
requestId: 'PalletRolldownMessagesRequestId',
l2RequestId: 'u128',
cancelJustified: 'bool',
blockHash: 'H256'
timeStamp: 'U256'
},
/**
* Lookup151: pallet_rolldown::messages::WithdrawalResolution
Expand All @@ -1330,15 +1330,15 @@ export default {
requestId: 'PalletRolldownMessagesRequestId',
l2RequestId: 'u128',
status: 'bool',
blockHash: 'H256'
timeStamp: 'U256'
},
/**
* Lookup153: pallet_rolldown::messages::L2UpdatesToRemove
**/
PalletRolldownMessagesL2UpdatesToRemove: {
requestId: 'PalletRolldownMessagesRequestId',
l2UpdatesToRemove: 'Vec<u128>',
blockHash: 'H256'
timeStamp: 'U256'
},
/**
* Lookup155: orml_tokens::module::Call<T>
Expand Down
8 changes: 4 additions & 4 deletions packages/types/src/interfaces/types-lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ declare module '@polkadot/types/lookup' {
readonly depositRecipient: U8aFixed;
readonly tokenAddress: U8aFixed;
readonly amount: U256;
readonly blockHash: H256;
readonly timeStamp: U256;
}

/** @name PalletRolldownMessagesRequestId (144) */
Expand All @@ -1465,22 +1465,22 @@ declare module '@polkadot/types/lookup' {
readonly requestId: PalletRolldownMessagesRequestId;
readonly l2RequestId: u128;
readonly cancelJustified: bool;
readonly blockHash: H256;
readonly timeStamp: U256;
}

/** @name PalletRolldownMessagesWithdrawalResolution (151) */
interface PalletRolldownMessagesWithdrawalResolution extends Struct {
readonly requestId: PalletRolldownMessagesRequestId;
readonly l2RequestId: u128;
readonly status: bool;
readonly blockHash: H256;
readonly timeStamp: U256;
}

/** @name PalletRolldownMessagesL2UpdatesToRemove (153) */
interface PalletRolldownMessagesL2UpdatesToRemove extends Struct {
readonly requestId: PalletRolldownMessagesRequestId;
readonly l2UpdatesToRemove: Vec<u128>;
readonly blockHash: H256;
readonly timeStamp: U256;
}

/** @name OrmlTokensModuleCall (155) */
Expand Down

0 comments on commit 4cf4b45

Please sign in to comment.