UNPKG

423 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/types authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3// order important in structs... :)
4
5/* eslint-disable sort-keys */
6export default {
7 rpc: {},
8 types: {
9 Multisig: {
10 when: 'Timepoint',
11 deposit: 'Balance',
12 depositor: 'AccountId',
13 approvals: 'Vec<AccountId>'
14 },
15 Timepoint: {
16 height: 'BlockNumber',
17 index: 'u32'
18 }
19 }
20};
\No newline at end of file