@darwinia/types
Advanced tools
Comparing version 2.6.9 to 2.6.100-1
@@ -5,3 +5,3 @@ import type { Metadata } from '@polkadot/metadata'; | ||
import type { UsableBalance } from '@darwinia/types/interfaces/balances'; | ||
import type { Fee } from '@darwinia/types/interfaces/fee'; | ||
import type { Fee, InProcessOrders } from '@darwinia/types/interfaces/fee'; | ||
import type { MMRProofResult } from '@darwinia/types/interfaces/headerMMR'; | ||
@@ -366,2 +366,6 @@ import type { PowerOf } from '@darwinia/types/interfaces/staking'; | ||
marketFee: AugmentedRpc<() => Observable<Fee>>; | ||
/** | ||
* fee_inProcessOrders | ||
*/ | ||
inProcessOrders: AugmentedRpc<() => Observable<InProcessOrders>>; | ||
}; | ||
@@ -368,0 +372,0 @@ grandpa: { |
@@ -229,5 +229,5 @@ declare const _default: { | ||
message: string; | ||
sent_time: string; | ||
confirm_time: string; | ||
assigned_relayers: string; | ||
sentTime: string; | ||
confirmTime: string; | ||
assignedRelayers: string; | ||
}; | ||
@@ -237,3 +237,3 @@ PriorRelayer: { | ||
fee: string; | ||
valid_range: string; | ||
validRange: string; | ||
}; | ||
@@ -240,0 +240,0 @@ }; |
@@ -240,5 +240,5 @@ "use strict"; | ||
message: 'MessageNonce', | ||
sent_time: 'BlockNumber', | ||
confirm_time: 'BlockNumber', | ||
assigned_relayers: 'Vec<PriorRelayer>' | ||
sentTime: 'BlockNumber', | ||
confirmTime: 'BlockNumber', | ||
assignedRelayers: 'Vec<PriorRelayer>' | ||
}, | ||
@@ -248,3 +248,3 @@ PriorRelayer: { | ||
fee: 'Balance', | ||
valid_range: 'BlockNumber' | ||
validRange: 'BlockNumber' | ||
} | ||
@@ -251,0 +251,0 @@ }, |
@@ -201,5 +201,6 @@ import type { Bytes, Compact, Enum, Option, Struct, Text, u128, U256, u32, u64, u8, U8aFixed, Vec } from '@polkadot/types'; | ||
readonly message: MessageNonce; | ||
readonly sent_time: BlockNumber; | ||
readonly confirm_time: BlockNumber; | ||
readonly assigned_relayers: Vec<PriorRelayer>; | ||
readonly sentTime: BlockNumber; | ||
readonly confirmTime: BlockNumber; | ||
readonly lockedCollateral: Balance; | ||
readonly assignedRelayers: Vec<PriorRelayer>; | ||
} | ||
@@ -206,0 +207,0 @@ /** @name OtherAddress */ |
@@ -9,2 +9,8 @@ declare const _default: { | ||
}; | ||
inProcessOrders: { | ||
alias: string[]; | ||
description: string; | ||
params: never[]; | ||
type: string; | ||
}; | ||
}; | ||
@@ -15,4 +21,7 @@ types: { | ||
}; | ||
InProcessOrders: { | ||
orders: string; | ||
}; | ||
}; | ||
}; | ||
export default _default; |
@@ -20,2 +20,8 @@ "use strict"; | ||
type: 'Fee' | ||
}, | ||
inProcessOrders: { | ||
alias: ['fee_inProcessOrders'], | ||
description: 'fee_inProcessOrders', | ||
params: [], | ||
type: 'InProcessOrders' | ||
} | ||
@@ -26,2 +32,5 @@ }, | ||
amount: 'Balance' | ||
}, | ||
InProcessOrders: { | ||
orders: 'Vec<LaneId, MessageNonce>' | ||
} | ||
@@ -28,0 +37,0 @@ } |
@@ -1,3 +0,5 @@ | ||
import type { Struct } from '@polkadot/types'; | ||
import type { Struct, Vec } from '@polkadot/types'; | ||
import type { ITuple } from '@polkadot/types/types'; | ||
import type { Balance } from '@polkadot/types/interfaces/runtime'; | ||
import type { LaneId, MessageNonce } from '../darwiniaInject'; | ||
/** @name Fee */ | ||
@@ -7,2 +9,6 @@ export interface Fee extends Struct { | ||
} | ||
/** @name InProcessOrders */ | ||
export interface InProcessOrders extends Struct { | ||
readonly orders: Vec<ITuple<[LaneId, MessageNonce]>>; | ||
} | ||
export declare type PHANTOM_FEE = 'fee'; |
{ | ||
"name": "@darwinia/types", | ||
"version": "2.6.9", | ||
"version": "2.6.100-1", | ||
"description": "Implementation of the Parity codec", | ||
@@ -25,4 +25,4 @@ "main": "index.js", | ||
"dependencies": { | ||
"@darwinia/types-known": "^2.6.9" | ||
"@darwinia/types-known": "^2.6.100-1" | ||
} | ||
} |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
550533
11362
2