UNPKG

523 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 ProxyDefinition: {
10 delegate: 'AccountId',
11 proxyType: 'ProxyType',
12 delay: 'BlockNumber'
13 },
14 ProxyType: {
15 _enum: ['Any', 'NonTransfer', 'Governance', 'Staking']
16 },
17 ProxyAnnouncement: {
18 real: 'AccountId',
19 callHash: 'Hash',
20 height: 'BlockNumber'
21 }
22 }
23};
\No newline at end of file