@polkadot/types
Version:
Implementation of the Parity codec
31 lines (30 loc) • 786 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
rpc: {},
types: {
Bid: {
who: 'AccountId',
kind: 'BidKind',
value: 'Balance'
},
BidKind: {
_enum: {
Deposit: 'Balance',
Vouch: '(AccountId, Balance)'
}
},
// a society-specific Judgement (not the same as identity Judgement)
SocietyJudgement: {
_enum: ['Rebid', 'Reject', 'Approve']
},
// a society-specific Vote
SocietyVote: {
_enum: ['Skeptic', 'Reject', 'Approve']
},
StrikeCount: 'u32',
VouchingStatus: {
_enum: ['Vouching', 'Banned']
}
}
};
;