diff --git a/protobuf/types.go b/protobuf/types.go index 3302819..176d590 100644 --- a/protobuf/types.go +++ b/protobuf/types.go @@ -6,8 +6,9 @@ import ( ) type Field interface { - SetName(name string) - ToProto() string + GetType() string + IsPrimitive() bool + ToProto(idx int) (string, int) } type Proto struct { @@ -22,7 +23,7 @@ type Enums struct { } type Message struct { - Name string // Utility_Batch_Call, Utility_Batch_Storage + Name string Fields []Field } @@ -30,8 +31,12 @@ func (m *Message) ToProto() string { var sb strings.Builder sb.WriteString("message " + m.Name + " {\n") + idx := 0 + str := "" for _, field := range m.Fields { - sb.WriteString("\t" + field.ToProto() + "\n") + idx++ + str, idx = field.ToProto(idx) + sb.WriteString("\t" + str + "\n") } sb.WriteString("}\n") @@ -39,52 +44,70 @@ func (m *Message) ToProto() string { } type RepeatedField struct { - Type string - Name string + Type string + Name string + Primitive bool } -func (r *RepeatedField) SetName(name string) { - r.Name = name +func (r *RepeatedField) GetType() string { + return r.Type } -func (r *RepeatedField) ToProto() string { - return "repeated " + r.Type + " " + r.Name +func (r *RepeatedField) ToProto(idx int) (string, int) { + str := fmt.Sprintf("repeated %s %s = %d;\n", r.Type, r.Name, idx) + return str, idx +} + +func (r *RepeatedField) IsPrimitive() bool { + return r.Primitive } type BasicField struct { - Optional bool - Type string - Name string + Optional bool + Type string + Name string + Primitive bool } -func (b *BasicField) SetName(name string) { - b.Name = name +func (r *BasicField) GetType() string { + return r.Type } -func (b *BasicField) ToProto() string { +func (b *BasicField) ToProto(idx int) (string, int) { + str := fmt.Sprintf("%s %s = %d;", b.Type, b.Name, idx) if b.Optional { - return "optional " + b.Type + " " + b.Name + str = "optional " + str } - return b.Type + " " + b.Name + return str, idx +} + +func (r *BasicField) IsPrimitive() bool { + return r.Primitive } type OneOfField struct { - Name string - Types []string + Name string + Types []*BasicField + Primitive bool } -func (o *OneOfField) SetName(name string) { - o.Name = name +func (r *OneOfField) GetType() string { + panic("OneOfField does not have a type") } -func (o *OneOfField) ToProto() string { +func (o *OneOfField) ToProto(idx int) (string, int) { var sb strings.Builder sb.WriteString("oneof " + o.Name + " {\n") - for i, field := range o.Types { - sb.WriteString(fmt.Sprintf("\t%s = %d;\n", field, i+1)) + for _, field := range o.Types { + sb.WriteString(fmt.Sprintf("\t\t%s %s = %d;\n", field.Type, field.Name, idx)) + idx++ } - sb.WriteString("}") + sb.WriteString("\t}") + idx-- + return sb.String(), idx +} - return sb.String() +func (r *OneOfField) IsPrimitive() bool { + return r.Primitive } diff --git a/rpc/convert_metadata.go b/rpc/convert_metadata.go index 0a33cc0..580ea50 100644 --- a/rpc/convert_metadata.go +++ b/rpc/convert_metadata.go @@ -2,6 +2,7 @@ package rpc import ( "fmt" + "os" "strings" substrateTypes "github.com/centrifuge/go-substrate-rpc-client/v4/types" @@ -70,11 +71,10 @@ func (mc *MetadataConverter) fetchStateMetadata(blockHash string) (*substrateTyp type TypeConverter struct { // here we pass in the id of the types map, if we have already SEEN the id, we skip // nothing to do, we have already processed it - types map[string]types.IType - seenTypes map[int64]types.IType - seenMessages map[string]*protobuf.Message - allMetadataTypes []substrateTypes.PortableTypeV14 - currentFieldNameToBeRemovedSomehow string + types map[string]types.IType + seenTypes map[int64]types.IType + seenMessages map[string]*protobuf.Message + allMetadataTypes []substrateTypes.PortableTypeV14 } func (tc *TypeConverter) UpdateName(name string) { @@ -84,104 +84,218 @@ func (tc *TypeConverter) UpdateName(name string) { func (c *TypeConverter) convertTypesFromv14(metadata substrateTypes.MetadataV14) (map[string]types.IType, error) { allMetadataTypes := metadata.Lookup.Types c.allMetadataTypes = allMetadataTypes + totalNumberOfCalls := 0 + + for _, pallet := range metadata.Pallets { + // if pallet.Name != "Multisig" { + // continue + // } - for i, pallet := range metadata.Pallets { - if i > 10000 { - break - } - // Call if pallet.HasCalls { idx := pallet.Calls.Type.Int64() - variants := c.allMetadataTypes[idx] calls := variants.Type.Def.Variant + totalNumberOfCalls += len(calls.Variants) for _, variant := range calls.Variants { - str := stringy.New(string(variant.Name) + "_Call") + // if variant.Name != "as_multi_threshold_1" { + // continue + // } + // fmt.Println("Processing call", variant.Name) + + palletName := string(pallet.Name) + callName := string(variant.Name) + messageName := stringy.New(palletName).PascalCase().Get() + "_" + stringy.New(callName).PascalCase().Get() + "_Call" message := &protobuf.Message{ - Name: str.PascalCase().Get(), // identity.set_subs + Name: messageName, } - c.ProcessCallFields(variant, message) + + c.ProcessCallFields(variant, message, palletName, callName) c.seenMessages[message.Name] = message } } + + // if pallet.HasEvents { + // idx := pallet.Events.Type.Int64() + // variants := c.allMetadataTypes[idx] + + // events := variants.Type.Def.Variant + // totalNumberOfCalls += len(events.Variants) + // for _, variant := range events.Variants { + // // if variant.Name != "as_multi_threshold_1" { + // // continue + // // } + // // fmt.Println("Processing call", variant.Name) + + // palletName := string(pallet.Name) + // callName := string(variant.Name) + // messageName := stringy.New(palletName).PascalCase().Get() + "_" + stringy.New(callName).PascalCase().Get() + "_Call" + // message := &protobuf.Message{ + // Name: messageName, + // } + + // c.ProcessCallFields(variant, message, palletName, callName) + // c.seenMessages[message.Name] = message + // } + // } } + outputs := make([]*protobuf.Message, 0) + for _, seenMsg := range c.seenMessages { - fmt.Println(seenMsg.ToProto()) + if seenMsg != nil { + outputs = append(outputs, seenMsg) + } + } + + var sb strings.Builder + for _, out := range outputs { + sb.WriteString(out.ToProto()) + } + err := os.WriteFile("output.proto", []byte(sb.String()), 0644) + if err != nil { + return nil, fmt.Errorf("writing output.proto: %w", err) } return nil, nil } -func (c *TypeConverter) ProcessCallFields(variant substrateTypes.Si1Variant, message *protobuf.Message) { +func (c *TypeConverter) ProcessCallFields(variant substrateTypes.Si1Variant, message *protobuf.Message, palletName string, callName string) { for _, f := range variant.Fields { - fieldName := string(f.Name) // identity.set_subs.subs - c.currentFieldNameToBeRemovedSomehow = fieldName - field := c.ProcessField(f) // this should return the interface Field (either basic or optional) + fieldName := string(f.Name) + field := c.ProcessField(f, palletName, callName, fieldName) if field != nil { - field.SetName(fieldName) message.Fields = append(message.Fields, field) } - c.currentFieldNameToBeRemovedSomehow = "WARK" } } -func (c *TypeConverter) ProcessField(f substrateTypes.Si1Field) protobuf.Field { +func (c *TypeConverter) ProcessField(f substrateTypes.Si1Field, palletName string, callName string, fieldName string) protobuf.Field { idx := f.Type.Int64() ttype := c.allMetadataTypes[idx] - return c.ProcessFieldType(ttype) // 177 + return c.FieldForType(ttype, palletName, callName, fieldName) +} + +func (c *TypeConverter) FieldForPrimitive(ttype substrateTypes.PortableTypeV14, fieldName string) *protobuf.BasicField { + return &protobuf.BasicField{ + Name: fieldName, + Type: c.convertPrimitiveType(ttype.Type.Def.Primitive.Si0TypeDefPrimitive).GetProtoFieldName(), + Primitive: true, + } +} + +func (c *TypeConverter) FieldForSequence(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) *protobuf.RepeatedField { + lookupId := ttype.Type.Def.Sequence.Type.Int64() + lookupType := c.allMetadataTypes[lookupId] + typeName := c.ExtractTypeName(lookupType, palletName, callName, fieldName) + + return &protobuf.RepeatedField{ + Type: typeName, + Name: fieldName, + Primitive: lookupType.Type.Def.IsPrimitive, + } +} + +func (c *TypeConverter) FieldForArray(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) *protobuf.RepeatedField { + lookupId := ttype.Type.Def.Array.Type.Int64() + lookupType := c.allMetadataTypes[lookupId] + typeName := c.ExtractTypeName(lookupType, palletName, callName, fieldName) + + return &protobuf.RepeatedField{ + Name: fieldName, + Type: typeName, + Primitive: lookupType.Type.Def.IsPrimitive, + } +} + +func (c *TypeConverter) FieldForCompact(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) *protobuf.BasicField { + name := c.ExtractTypeName(ttype, palletName, callName, fieldName) + + return &protobuf.BasicField{ + Name: fieldName, + Type: name, + } } -func (c *TypeConverter) ProcessFieldType(ttype substrateTypes.PortableTypeV14) protobuf.Field { +func (c *TypeConverter) FieldForComposite(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) *protobuf.BasicField { + name := c.ExtractTypeName(ttype, palletName, callName, fieldName) + + return &protobuf.BasicField{ + Name: fieldName, + Type: name, + } +} + +func (c *TypeConverter) FieldForType(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) protobuf.Field { if len(ttype.Type.Path) != 0 { isOptional := ttype.Type.Path[len(ttype.Type.Path)-1] if isOptional == "Option" { - ttype := c.ProcessOptionalType(ttype) + optionType := c.ProcessOptionalType(ttype, palletName, callName, fieldName) return &protobuf.BasicField{ - Optional: true, - Type: ttype, + Optional: true, + Name: fieldName, + Type: optionType, + Primitive: ttype.Type.Def.IsPrimitive, } } } + if ttype.ID.Int64() == 65 { + return c.FieldFor65(ttype, palletName, callName, fieldName) + } + + var field protobuf.Field if ttype.Type.Def.IsPrimitive { - return &protobuf.BasicField{ - Type: c.convertPrimitiveType(ttype.Type.Def.Primitive.Si0TypeDefPrimitive).GetProtoFieldName(), - } + return c.FieldForPrimitive(ttype, fieldName) } if ttype.Type.Def.IsSequence { - lookupId := ttype.Type.Def.Sequence.Type.Int64() - lookupType := c.allMetadataTypes[lookupId] // 178 - typeName := c.ExtractTypeName(lookupType) + field = c.FieldForSequence(ttype, palletName, callName, fieldName) + } - return &protobuf.RepeatedField{ - Type: typeName, - } + if ttype.Type.Def.IsArray { + field = c.FieldForArray(ttype, palletName, callName, fieldName) } if ttype.Type.Def.IsTuple { - return c.ProcessTupleType(ttype.Type.Def.Tuple) + field = c.FieldForTuple(ttype, palletName, callName, fieldName) } if ttype.Type.Def.IsVariant { - return c.ProcessVariantType(ttype.Type.Def.Variant) + field = c.FieldForVariant(ttype, palletName, callName, fieldName) + } + + if ttype.Type.Def.IsCompact { + field = c.FieldForCompact(ttype, palletName, callName, fieldName) + } + + if ttype.Type.Def.IsComposite { + field = c.FieldForComposite(ttype, palletName, callName, fieldName) + } + + if !ttype.Type.Def.IsVariant { + if _, ok := c.seenMessages[field.GetType()]; !ok { + if field.IsPrimitive() { + c.seenMessages[field.GetType()] = nil + } else { + msg := c.MessageForType(field.GetType(), ttype, palletName, callName, fieldName) + c.seenMessages[field.GetType()] = msg + } + } } - // panic(fmt.Sprintf("unsupported type: %v", ttype.Type.Def)) - return nil + return field } -func (c *TypeConverter) ExtractTypeName(ttype substrateTypes.PortableTypeV14) string { +func (c *TypeConverter) ExtractTypeName(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) string { name := "" if ttype.Type.Def.IsPrimitive { - name = c.convertPrimitiveType(ttype.Type.Def.Primitive.Si0TypeDefPrimitive).GetProtoFieldName() + name = c.convertPrimitiveType(ttype.Type.Def.Primitive.Si0TypeDefPrimitive).ToProtoMessage() } if ttype.Type.Def.IsTuple { - name = c.ExtractTypeNameFromTuple(ttype.Type.Def.Tuple) + name = c.ExtractTypeNameFromTuple(ttype.Type.Def.Tuple, palletName, callName, fieldName) } if ttype.Type.Def.IsComposite { @@ -192,24 +306,154 @@ func (c *TypeConverter) ExtractTypeName(ttype substrateTypes.PortableTypeV14) st name = c.ExtractTypeNameFromPath(ttype.Type.Path) } - if ttype.Type.Def.IsSequence { - name = fmt.Sprintf("%s_list", c.currentFieldNameToBeRemovedSomehow) + if ttype.Type.Def.IsSequence || ttype.Type.Def.IsArray { + name = fmt.Sprintf("%s_%s_list", palletName, fieldName) } - if _, ok := c.seenMessages[name]; ok { - return name + if ttype.Type.Def.IsCompact { + name = "Compact" + + lookupId := ttype.Type.Def.Compact.Type.Int64() + lookupType := c.allMetadataTypes[lookupId] + typeName := c.ExtractTypeName(lookupType, palletName, callName, fieldName) + name = fmt.Sprintf("%s_%s", name, typeName) } return name } -func (c *TypeConverter) ExtractTypeNameFromTuple(tuple substrateTypes.Si1TypeDefTuple) string { +func (c *TypeConverter) MessageForType(name string, ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) *protobuf.Message { + msg := &protobuf.Message{ + Name: name, // + "_GEN", + } + + if ttype.Type.Def.IsTuple { + msg.Fields = append(msg.Fields, c.FieldForTuple(ttype, palletName, callName, fieldName)) + } + + if ttype.Type.Def.IsComposite { + if len(ttype.Type.Def.Composite.Fields) == 1 { + field := ttype.Type.Def.Composite.Fields[0] + lookup := field.Type.Int64() + lookupType := c.allMetadataTypes[lookup] + + fName := string(field.Name) + if !field.HasName { + fName = fieldName + } + + f := c.FieldForType(lookupType, palletName, callName, fName) + msg.Fields = append(msg.Fields, f) + } else { + for _, f := range ttype.Type.Def.Composite.Fields { + lookup := f.Type.Int64() + lookupType := c.allMetadataTypes[lookup] + fieldName := string(f.Name) + field := c.FieldForType(lookupType, palletName, callName, fieldName) + msg.Fields = append(msg.Fields, field) + } + } + } + + if ttype.Type.Def.IsVariant { + field := &protobuf.OneOfField{ + Name: name, + } + for _, v := range ttype.Type.Def.Variant.Variants { + typeName := fmt.Sprintf("%s_%s", palletName, string(v.Name)) + field.Types = append(field.Types, &protobuf.BasicField{ + Name: string(v.Name), + Type: typeName, + }) + } + msg.Fields = append(msg.Fields, field) + } + + if ttype.Type.Def.IsSequence { + lookupId := ttype.Type.Def.Sequence.Type.Int64() + childType := c.allMetadataTypes[lookupId] + + f := c.FieldForType(childType, palletName, callName, fieldName) + msg.Fields = append(msg.Fields, f) + } + + if ttype.Type.Def.IsArray { + lookupId := ttype.Type.Def.Array.Type.Int64() + childType := c.allMetadataTypes[lookupId] + + f := c.FieldForType(childType, palletName, callName, fieldName) + msg.Fields = append(msg.Fields, f) + } + + if ttype.Type.Def.IsCompact { + lookupId := ttype.Type.Def.Compact.Type.Int64() + childType := c.allMetadataTypes[lookupId] + typeName := c.ExtractTypeName(childType, palletName, callName, fieldName) + + field := &protobuf.BasicField{ + Name: "value", + Type: typeName, + Primitive: ttype.Type.Def.IsPrimitive, + } + + msg.Fields = append(msg.Fields, field) + } + + return msg +} + +func (tc *TypeConverter) FieldFor65(ttype substrateTypes.PortableTypeV14, _ string, callName string, fieldName string) protobuf.Field { + of := &protobuf.OneOfField{ + Name: fieldName, + } + + pallets := ttype.Type.Def.Variant.Variants + for _, v := range pallets { // 1. System + palletName := v.Name + calls := v.Fields + for _, c := range calls { // 1. 66 + lookupId := c.Type.Int64() + palletCalls := tc.allMetadataTypes[lookupId] // 1. System + palletCallNames := palletCalls.Type.Def.Variant.Variants + + for _, palletCallName := range palletCallNames { // remark + of.Types = append(of.Types, &protobuf.BasicField{ + Name: string(palletCallName.Name), + Type: fmt.Sprintf("%s_%s_Call", palletName, string(palletCallName.Name)), + }) + } + } + } + + return of +} + +func (c *TypeConverter) MessageForVariantTypes(name string, variant substrateTypes.Si1Variant, palletName string, callName string, fieldName string) { + msg := &protobuf.Message{ + Name: name, + } + + for _, f := range variant.Fields { + idx := f.Type.Int64() + fieldType := c.allMetadataTypes[idx] + field := c.FieldForType(fieldType, palletName, callName, string(f.Name)) + msg.Fields = append(msg.Fields, field) + } + + c.seenMessages[msg.Name] = msg +} + +func (c *TypeConverter) ExtractTypeNameFromTuple(tuple substrateTypes.Si1TypeDefTuple, palletName string, callName string, fieldName string) string { var name strings.Builder name.WriteString("Tuple_") + if len(tuple) == 0 { + name.WriteString("Null") + } + for _, item := range tuple { lookupId := item.Int64() ttype := c.allMetadataTypes[lookupId] - name.WriteString(c.ExtractTypeName(ttype)) + name.WriteString(c.ExtractTypeName(ttype, palletName, callName, fieldName)) } return name.String() @@ -223,40 +467,41 @@ func (c *TypeConverter) ExtractTypeNameFromPath(path substrateTypes.Si1Path) str return strings.Join(parts, "_") } -func (c *TypeConverter) ProcessTupleType(tuple substrateTypes.Si1TypeDefTuple) *protobuf.BasicField { +func (c *TypeConverter) FieldForTuple(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) *protobuf.BasicField { field := &protobuf.BasicField{ - Type: c.ExtractTypeNameFromTuple(tuple), + Type: c.ExtractTypeNameFromTuple(ttype.Type.Def.Tuple, palletName, callName, fieldName), } return field } -func (c *TypeConverter) ProcessVariantType(variant substrateTypes.Si1TypeDefVariant) *protobuf.OneOfField { - field := &protobuf.OneOfField{} - for _, v := range variant.Variants { - for _, f := range v.Fields { - ttype := c.allMetadataTypes[f.Type.Int64()] +func (c *TypeConverter) FieldForVariant(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) protobuf.Field { + of := &protobuf.OneOfField{ + Name: fieldName, + } - if len(ttype.Type.Path) != 0 { - typeName := c.ExtractTypeNameFromPath(ttype.Type.Path) - field.Types = append(field.Types, typeName) - continue - } + for _, v := range ttype.Type.Def.Variant.Variants { + typeName := fmt.Sprintf("%s_%s", palletName, string(v.Name)) + of.Types = append(of.Types, &protobuf.BasicField{ + Name: string(v.Name), + Type: typeName, + }) - field.Types = append(field.Types, c.ExtractTypeName(ttype)) + if _, ok := c.seenMessages[typeName]; !ok { + c.MessageForVariantTypes(typeName, v, palletName, callName, fieldName) } } - return field + return of } -func (c *TypeConverter) ProcessOptionalType(ttype substrateTypes.PortableTypeV14) string { +func (c *TypeConverter) ProcessOptionalType(ttype substrateTypes.PortableTypeV14, palletName string, callName string, fieldName string) string { variant := ttype.Type.Def.Variant some := variant.Variants[1] someField := some.Fields[0] tttype := c.allMetadataTypes[someField.Type.Int64()] - return c.ExtractTypeName(tttype) + return c.ExtractTypeName(tttype, palletName, callName, fieldName) } func (c *TypeConverter) GetTypeNames(ttype types.IType) []string { diff --git a/rpc/convert_metadata_test.go b/rpc/convert_metadata_test.go index 4ba4bd5..39703b0 100644 --- a/rpc/convert_metadata_test.go +++ b/rpc/convert_metadata_test.go @@ -1,16 +1,9 @@ package rpc import ( - "bytes" - "encoding/hex" "fmt" - "log" "testing" - gsrpc "github.com/centrifuge/go-substrate-rpc-client/v4" - "github.com/centrifuge/go-substrate-rpc-client/v4/registry" - "github.com/centrifuge/go-substrate-rpc-client/v4/scale" - substrateTypes "github.com/centrifuge/go-substrate-rpc-client/v4/types" firecoreRPC "github.com/streamingfast/firehose-core/rpc" "github.com/streamingfast/firehose-gear/types" "github.com/stretchr/testify/require" @@ -25,10 +18,7 @@ func Test_ConvertMetadata(t *testing.T) { ttypes, err := mc.Convert("") require.NoError(t, err) - protobufMessages := &types.ProtobufMessages{ - SyntaxName: "proto3", - PackageName: "sf.gear.extrinsics.type.v1", - } + protobufMessages := &types.ProtobufMessages{} for key := range ttypes { protobufMessages.Messages = append(protobufMessages.Messages, &types.ProtobufMessage{ @@ -39,51 +29,3 @@ func Test_ConvertMetadata(t *testing.T) { fmt.Println(protobufMessages.ToProtoMessage()) require.True(t, false) } - -func Test_DecodeField(t *testing.T) { - url := "https://vara-mainnet.public.blastapi.io" // Replace with the actual URL of your Gear Tech node - api, err := gsrpc.NewSubstrateAPI(url) - require.NoError(t, err) - - b, err := hex.DecodeString("0c0842b0b24355170200") - require.NoError(t, err) - d := scale.NewDecoder(bytes.NewBuffer(b)) - - blockHash, err := substrateTypes.NewHashFromHexString("0x6dffb564435e9878dca3a7faadbc72c6c6adbbfada02c75e8203623371e3d6bb") - require.NoError(t, err) - - metadata, err := api.RPC.State.GetMetadata(blockHash) - if err != nil { - log.Fatalf("Failed to get metadata: %v", err) - } - - factory := registry.NewFactory() - eventRegistry, err := factory.CreateEventRegistry(metadata) - require.NoError(t, err) - - var eventID substrateTypes.EventID - - err = d.Decode(&eventID) - require.NoError(t, err) - - eventDecoder, ok := eventRegistry[eventID] - require.True(t, ok) - - eventFields, err := eventDecoder.Decode(d) - require.NoError(t, err) - - fmt.Println("Event ID: ", eventID) - for _, field := range eventFields { - fmt.Println(field) - } - - // disp := ®istry.Field{} - // err = d.Decode(disp) - // require.NoError(t, err) - - // byt, err := json.MarshalIndent(disp, "", " ") - // require.NoError(t, err) - // fmt.Println(string(byt)) - - require.True(t, false) -} diff --git a/rpc/output.proto b/rpc/output.proto new file mode 100644 index 0000000..3c3074f --- /dev/null +++ b/rpc/output.proto @@ -0,0 +1,5608 @@ +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes15_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes15_listCompact_uint32 = 1; +} +message Vesting_VestOther_Call { + oneof target { + Vesting_Id Id = 1; + Vesting_Index Index = 2; + Vesting_Raw Raw = 3; + Vesting_Address32 Address32 = 4; + Vesting_Address20 Address20 = 5; + } +} +message BagsList_Raw { + repeated uint32 = 1; + +} +message Utility_Batch_Call { + repeated vara_runtime_RuntimeCall calls = 1; + +} +message Utility_Treasurer { +} +message Proxy_Any { +} +message FellowshipReferenda_SmallSpender { +} +message Proxy_RejectAnnouncement_Call { + oneof delegate { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + primitive_types_H256 call_hash = 6; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes9_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes9_listCompact_uint32 = 1; +} +message System_KillPrefix_Call { + repeated uint32 prefix = 1; + + uint32 subkeys = 2; +} +message Compact_Tuple_Null { + Tuple_Null value = 1; +} +message Balances_TransferKeepAlive_Call { + oneof dest { + Balances_Id Id = 1; + Balances_Index Index = 2; + Balances_Raw Raw = 3; + Balances_Address32 Address32 = 4; + Balances_Address20 Address20 = 5; + } + Compact_string value = 6; +} +message Utility_Signed { + sp_core_crypto_AccountId32 = 1; +} +message FellowshipCollective_Address32 { + repeated uint32 = 1; + +} +message ConvictionVoting_None { +} +message Referenda_FellowshipExperts { +} +message Identity_None { +} +message Identity_Raw14 { + repeated uint32 = 1; + +} +message Identity_ClearIdentity_Call { +} +message System_SetStorage_Call { + repeated Tuple_System_items_listSystem_items_list items = 1; + +} +message Balances_Id { + sp_core_crypto_AccountId32 = 1; +} +message Staking_Id { + sp_core_crypto_AccountId32 = 1; +} +message Bounties_ExtendBountyExpiry_Call { + Compact_uint32 bounty_id = 1; + repeated uint32 remark = 2; + +} +message Grandpa_ReportEquivocation_Call { + sp_consensus_grandpa_EquivocationProof equivocation_proof = 1; + sp_session_MembershipProof key_owner_proof = 2; +} +message Referenda_BigSpender { +} +message Identity_Raw28 { + repeated uint32 = 1; + +} +message pallet_nomination_pools_CommissionChangeRate { + sp_arithmetic_per_things_Perbill max_increase = 1; + uint32 min_delay = 2; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes3_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes3_listCompact_uint32 = 1; +} +message Staking_BondExtra_Call { + Compact_string max_additional = 1; +} +message Staking_Unbond_Call { + Compact_string value = 1; +} +message Treasury_SpendLocal_Call { + Compact_string amount = 1; + oneof beneficiary { + Treasury_Id Id = 2; + Treasury_Index Index = 3; + Treasury_Raw Raw = 4; + Treasury_Address32 Address32 = 5; + Treasury_Address20 Address20 = 6; + } +} +message Referenda_Inline { + bounded_collections_bounded_vec_BoundedVec = 1; +} +message Proxy_Proxy_Call { + oneof real { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + optional vara_runtime_ProxyType force_proxy_type = 6; + oneof call { + System_remark_Call remark = 7; + System_set_heap_pages_Call set_heap_pages = 8; + System_set_code_Call set_code = 9; + System_set_code_without_checks_Call set_code_without_checks = 10; + System_set_storage_Call set_storage = 11; + System_kill_storage_Call kill_storage = 12; + System_kill_prefix_Call kill_prefix = 13; + System_remark_with_event_Call remark_with_event = 14; + Timestamp_set_Call set = 15; + Babe_report_equivocation_Call report_equivocation = 16; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 17; + Babe_plan_config_change_Call plan_config_change = 18; + Grandpa_report_equivocation_Call report_equivocation = 19; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 20; + Grandpa_note_stalled_Call note_stalled = 21; + Balances_transfer_allow_death_Call transfer_allow_death = 22; + Balances_force_transfer_Call force_transfer = 23; + Balances_transfer_keep_alive_Call transfer_keep_alive = 24; + Balances_transfer_all_Call transfer_all = 25; + Balances_force_unreserve_Call force_unreserve = 26; + Balances_upgrade_accounts_Call upgrade_accounts = 27; + Balances_force_set_balance_Call force_set_balance = 28; + Vesting_vest_Call vest = 29; + Vesting_vest_other_Call vest_other = 30; + Vesting_vested_transfer_Call vested_transfer = 31; + Vesting_force_vested_transfer_Call force_vested_transfer = 32; + Vesting_merge_schedules_Call merge_schedules = 33; + BagsList_rebag_Call rebag = 34; + BagsList_put_in_front_of_Call put_in_front_of = 35; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 36; + ImOnline_heartbeat_Call heartbeat = 37; + Staking_bond_Call bond = 38; + Staking_bond_extra_Call bond_extra = 39; + Staking_unbond_Call unbond = 40; + Staking_withdraw_unbonded_Call withdraw_unbonded = 41; + Staking_validate_Call validate = 42; + Staking_nominate_Call nominate = 43; + Staking_chill_Call chill = 44; + Staking_set_payee_Call set_payee = 45; + Staking_set_controller_Call set_controller = 46; + Staking_set_validator_count_Call set_validator_count = 47; + Staking_increase_validator_count_Call increase_validator_count = 48; + Staking_scale_validator_count_Call scale_validator_count = 49; + Staking_force_no_eras_Call force_no_eras = 50; + Staking_force_new_era_Call force_new_era = 51; + Staking_set_invulnerables_Call set_invulnerables = 52; + Staking_force_unstake_Call force_unstake = 53; + Staking_force_new_era_always_Call force_new_era_always = 54; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 55; + Staking_payout_stakers_Call payout_stakers = 56; + Staking_rebond_Call rebond = 57; + Staking_reap_stash_Call reap_stash = 58; + Staking_kick_Call kick = 59; + Staking_set_staking_configs_Call set_staking_configs = 60; + Staking_chill_other_Call chill_other = 61; + Staking_force_apply_min_commission_Call force_apply_min_commission = 62; + Staking_set_min_commission_Call set_min_commission = 63; + Session_set_keys_Call set_keys = 64; + Session_purge_keys_Call purge_keys = 65; + Treasury_propose_spend_Call propose_spend = 66; + Treasury_reject_proposal_Call reject_proposal = 67; + Treasury_approve_proposal_Call approve_proposal = 68; + Treasury_spend_local_Call spend_local = 69; + Treasury_remove_approval_Call remove_approval = 70; + Treasury_spend_Call spend = 71; + Treasury_payout_Call payout = 72; + Treasury_check_status_Call check_status = 73; + Treasury_void_spend_Call void_spend = 74; + Utility_batch_Call batch = 75; + Utility_as_derivative_Call as_derivative = 76; + Utility_batch_all_Call batch_all = 77; + Utility_dispatch_as_Call dispatch_as = 78; + Utility_force_batch_Call force_batch = 79; + Utility_with_weight_Call with_weight = 80; + ConvictionVoting_vote_Call vote = 81; + ConvictionVoting_delegate_Call delegate = 82; + ConvictionVoting_undelegate_Call undelegate = 83; + ConvictionVoting_unlock_Call unlock = 84; + ConvictionVoting_remove_vote_Call remove_vote = 85; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 86; + Referenda_submit_Call submit = 87; + Referenda_place_decision_deposit_Call place_decision_deposit = 88; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 89; + Referenda_cancel_Call cancel = 90; + Referenda_kill_Call kill = 91; + Referenda_nudge_referendum_Call nudge_referendum = 92; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 93; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 94; + Referenda_set_metadata_Call set_metadata = 95; + FellowshipCollective_add_member_Call add_member = 96; + FellowshipCollective_promote_member_Call promote_member = 97; + FellowshipCollective_demote_member_Call demote_member = 98; + FellowshipCollective_remove_member_Call remove_member = 99; + FellowshipCollective_vote_Call vote = 100; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 101; + FellowshipReferenda_submit_Call submit = 102; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 103; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 104; + FellowshipReferenda_cancel_Call cancel = 105; + FellowshipReferenda_kill_Call kill = 106; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 107; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 108; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 109; + FellowshipReferenda_set_metadata_Call set_metadata = 110; + Whitelist_whitelist_call_Call whitelist_call = 111; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 112; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 113; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 114; + Scheduler_schedule_Call schedule = 115; + Scheduler_cancel_Call cancel = 116; + Scheduler_schedule_named_Call schedule_named = 117; + Scheduler_cancel_named_Call cancel_named = 118; + Scheduler_schedule_after_Call schedule_after = 119; + Scheduler_schedule_named_after_Call schedule_named_after = 120; + Preimage_note_preimage_Call note_preimage = 121; + Preimage_unnote_preimage_Call unnote_preimage = 122; + Preimage_request_preimage_Call request_preimage = 123; + Preimage_unrequest_preimage_Call unrequest_preimage = 124; + Preimage_ensure_updated_Call ensure_updated = 125; + Identity_add_registrar_Call add_registrar = 126; + Identity_set_identity_Call set_identity = 127; + Identity_set_subs_Call set_subs = 128; + Identity_clear_identity_Call clear_identity = 129; + Identity_request_judgement_Call request_judgement = 130; + Identity_cancel_request_Call cancel_request = 131; + Identity_set_fee_Call set_fee = 132; + Identity_set_account_id_Call set_account_id = 133; + Identity_set_fields_Call set_fields = 134; + Identity_provide_judgement_Call provide_judgement = 135; + Identity_kill_identity_Call kill_identity = 136; + Identity_add_sub_Call add_sub = 137; + Identity_rename_sub_Call rename_sub = 138; + Identity_remove_sub_Call remove_sub = 139; + Identity_quit_sub_Call quit_sub = 140; + Proxy_proxy_Call proxy = 141; + Proxy_add_proxy_Call add_proxy = 142; + Proxy_remove_proxy_Call remove_proxy = 143; + Proxy_remove_proxies_Call remove_proxies = 144; + Proxy_create_pure_Call create_pure = 145; + Proxy_kill_pure_Call kill_pure = 146; + Proxy_announce_Call announce = 147; + Proxy_remove_announcement_Call remove_announcement = 148; + Proxy_reject_announcement_Call reject_announcement = 149; + Proxy_proxy_announced_Call proxy_announced = 150; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 151; + Multisig_as_multi_Call as_multi = 152; + Multisig_approve_as_multi_Call approve_as_multi = 153; + Multisig_cancel_as_multi_Call cancel_as_multi = 154; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 155; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 156; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 157; + ElectionProviderMultiPhase_submit_Call submit = 158; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 159; + Bounties_propose_bounty_Call propose_bounty = 160; + Bounties_approve_bounty_Call approve_bounty = 161; + Bounties_propose_curator_Call propose_curator = 162; + Bounties_unassign_curator_Call unassign_curator = 163; + Bounties_accept_curator_Call accept_curator = 164; + Bounties_award_bounty_Call award_bounty = 165; + Bounties_claim_bounty_Call claim_bounty = 166; + Bounties_close_bounty_Call close_bounty = 167; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 168; + ChildBounties_add_child_bounty_Call add_child_bounty = 169; + ChildBounties_propose_curator_Call propose_curator = 170; + ChildBounties_accept_curator_Call accept_curator = 171; + ChildBounties_unassign_curator_Call unassign_curator = 172; + ChildBounties_award_child_bounty_Call award_child_bounty = 173; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 174; + ChildBounties_close_child_bounty_Call close_child_bounty = 175; + NominationPools_join_Call join = 176; + NominationPools_bond_extra_Call bond_extra = 177; + NominationPools_claim_payout_Call claim_payout = 178; + NominationPools_unbond_Call unbond = 179; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 180; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 181; + NominationPools_create_Call create = 182; + NominationPools_create_with_pool_id_Call create_with_pool_id = 183; + NominationPools_nominate_Call nominate = 184; + NominationPools_set_state_Call set_state = 185; + NominationPools_set_metadata_Call set_metadata = 186; + NominationPools_set_configs_Call set_configs = 187; + NominationPools_update_roles_Call update_roles = 188; + NominationPools_chill_Call chill = 189; + NominationPools_bond_extra_other_Call bond_extra_other = 190; + NominationPools_set_claim_permission_Call set_claim_permission = 191; + NominationPools_claim_payout_other_Call claim_payout_other = 192; + NominationPools_set_commission_Call set_commission = 193; + NominationPools_set_commission_max_Call set_commission_max = 194; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 195; + NominationPools_claim_commission_Call claim_commission = 196; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 197; + Gear_upload_code_Call upload_code = 198; + Gear_upload_program_Call upload_program = 199; + Gear_create_program_Call create_program = 200; + Gear_send_message_Call send_message = 201; + Gear_send_reply_Call send_reply = 202; + Gear_claim_value_Call claim_value = 203; + Gear_run_Call run = 204; + Gear_set_execute_inherent_Call set_execute_inherent = 205; + StakingRewards_refill_Call refill = 206; + StakingRewards_force_refill_Call force_refill = 207; + StakingRewards_withdraw_Call withdraw = 208; + StakingRewards_align_supply_Call align_supply = 209; + GearVoucher_issue_Call issue = 210; + GearVoucher_call_Call call = 211; + GearVoucher_revoke_Call revoke = 212; + GearVoucher_update_Call update = 213; + GearVoucher_call_deprecated_Call call_deprecated = 214; + GearVoucher_decline_Call decline = 215; + } +} +message Proxy_Address32 { + repeated uint32 = 1; + +} +message Referenda_OneFewerDeciding_Call { + uint32 track = 1; +} +message FellowshipReferenda_Fellowship3Dan { +} +message FellowshipReferenda_Lookup { + primitive_types_H256 hash = 1; + uint32 len = 2; +} +message Identity_Raw11 { + repeated uint32 = 1; + +} +message Proxy_Id { + sp_core_crypto_AccountId32 = 1; +} +message ConvictionVoting_Id { + sp_core_crypto_AccountId32 = 1; +} +message Identity_Raw18 { + repeated uint32 = 1; + +} +message Proxy_NonTransfer { +} +message Tuple_uint64uint64 { + Tuple_uint64uint64 = 1; +} +message ConvictionVoting_Locked1x { +} +message Identity_Raw25 { + repeated uint32 = 1; + +} +message ChildBounties_CloseChildBounty_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_uint32 child_bounty_id = 2; +} +message NominationPools_SetConfigs_Call { + oneof min_join_bond { + NominationPools_Noop Noop = 1; + NominationPools_Set Set = 2; + NominationPools_Remove Remove = 3; + } + oneof min_create_bond { + NominationPools_Noop Noop = 4; + NominationPools_Set Set = 5; + NominationPools_Remove Remove = 6; + } + oneof max_pools { + NominationPools_Noop Noop = 7; + NominationPools_Set Set = 8; + NominationPools_Remove Remove = 9; + } + oneof max_members { + NominationPools_Noop Noop = 10; + NominationPools_Set Set = 11; + NominationPools_Remove Remove = 12; + } + oneof max_members_per_pool { + NominationPools_Noop Noop = 13; + NominationPools_Set Set = 14; + NominationPools_Remove Remove = 15; + } + oneof global_max_commission { + NominationPools_Noop Noop = 16; + NominationPools_Set Set = 17; + NominationPools_Remove Remove = 18; + } +} +message Identity_Raw30 { + repeated uint32 = 1; + +} +message Identity_SetFee_Call { + Compact_uint32 index = 1; + Compact_string fee = 2; +} +message ElectionProviderMultiPhase_GovernanceFallback_Call { + optional uint32 maybe_max_voters = 1; + optional uint32 maybe_max_targets = 2; +} +message System_Remark_Call { + repeated uint32 remark = 1; + +} +message Compact_uint64 { + uint64 value = 1; +} +message ConvictionVoting_Locked5x { +} +message FellowshipReferenda_Fellowship5Dan { +} +message Identity_Raw16 { + repeated uint32 = 1; + +} +message Bounties_ApproveBounty_Call { + Compact_uint32 bounty_id = 1; +} +message Referenda_Fellowship5Dan { +} +message ChildBounties_Raw { + repeated uint32 = 1; + +} +message NominationPools_Permissioned { +} +message Identity_Reasonable { +} +message Proxy_Index { + Compact_Tuple_Null = 1; +} +message Staking_Validate_Call { + pallet_staking_ValidatorPrefs prefs = 1; +} +message Utility_Root { +} +message Utility_FellowshipAdmin { +} +message FellowshipReferenda_PlaceDecisionDeposit_Call { + uint32 index = 1; +} +message FellowshipReferenda_RefundDecisionDeposit_Call { + uint32 index = 1; +} +message FellowshipReferenda_Fellowship1Dan { +} +message Preimage_UnnotePreimage_Call { + primitive_types_H256 hash = 1; +} +message Proxy_KillPure_Call { + oneof spawner { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + oneof proxy_type { + Proxy_Any Any = 6; + Proxy_NonTransfer NonTransfer = 7; + Proxy_Governance Governance = 8; + Proxy_Staking Staking = 9; + Proxy_IdentityJudgement IdentityJudgement = 10; + Proxy_CancelProxy CancelProxy = 11; + } + uint32 index = 12; + Compact_uint32 height = 13; + Compact_uint32 ext_index = 14; +} +message Babe_Seal { + repeated uint32 = 1; + + repeated uint32 = 2; + +} +message sp_session_MembershipProof { + uint32 session = 1; + repeated Babe_trie_nodes_list trie_nodes = 2; + + uint32 validator_count = 3; +} +message Staking_Stash { +} +message Utility_WithWeight_Call { + oneof call { + System_remark_Call remark = 1; + System_set_heap_pages_Call set_heap_pages = 2; + System_set_code_Call set_code = 3; + System_set_code_without_checks_Call set_code_without_checks = 4; + System_set_storage_Call set_storage = 5; + System_kill_storage_Call kill_storage = 6; + System_kill_prefix_Call kill_prefix = 7; + System_remark_with_event_Call remark_with_event = 8; + Timestamp_set_Call set = 9; + Babe_report_equivocation_Call report_equivocation = 10; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 11; + Babe_plan_config_change_Call plan_config_change = 12; + Grandpa_report_equivocation_Call report_equivocation = 13; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Grandpa_note_stalled_Call note_stalled = 15; + Balances_transfer_allow_death_Call transfer_allow_death = 16; + Balances_force_transfer_Call force_transfer = 17; + Balances_transfer_keep_alive_Call transfer_keep_alive = 18; + Balances_transfer_all_Call transfer_all = 19; + Balances_force_unreserve_Call force_unreserve = 20; + Balances_upgrade_accounts_Call upgrade_accounts = 21; + Balances_force_set_balance_Call force_set_balance = 22; + Vesting_vest_Call vest = 23; + Vesting_vest_other_Call vest_other = 24; + Vesting_vested_transfer_Call vested_transfer = 25; + Vesting_force_vested_transfer_Call force_vested_transfer = 26; + Vesting_merge_schedules_Call merge_schedules = 27; + BagsList_rebag_Call rebag = 28; + BagsList_put_in_front_of_Call put_in_front_of = 29; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 30; + ImOnline_heartbeat_Call heartbeat = 31; + Staking_bond_Call bond = 32; + Staking_bond_extra_Call bond_extra = 33; + Staking_unbond_Call unbond = 34; + Staking_withdraw_unbonded_Call withdraw_unbonded = 35; + Staking_validate_Call validate = 36; + Staking_nominate_Call nominate = 37; + Staking_chill_Call chill = 38; + Staking_set_payee_Call set_payee = 39; + Staking_set_controller_Call set_controller = 40; + Staking_set_validator_count_Call set_validator_count = 41; + Staking_increase_validator_count_Call increase_validator_count = 42; + Staking_scale_validator_count_Call scale_validator_count = 43; + Staking_force_no_eras_Call force_no_eras = 44; + Staking_force_new_era_Call force_new_era = 45; + Staking_set_invulnerables_Call set_invulnerables = 46; + Staking_force_unstake_Call force_unstake = 47; + Staking_force_new_era_always_Call force_new_era_always = 48; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 49; + Staking_payout_stakers_Call payout_stakers = 50; + Staking_rebond_Call rebond = 51; + Staking_reap_stash_Call reap_stash = 52; + Staking_kick_Call kick = 53; + Staking_set_staking_configs_Call set_staking_configs = 54; + Staking_chill_other_Call chill_other = 55; + Staking_force_apply_min_commission_Call force_apply_min_commission = 56; + Staking_set_min_commission_Call set_min_commission = 57; + Session_set_keys_Call set_keys = 58; + Session_purge_keys_Call purge_keys = 59; + Treasury_propose_spend_Call propose_spend = 60; + Treasury_reject_proposal_Call reject_proposal = 61; + Treasury_approve_proposal_Call approve_proposal = 62; + Treasury_spend_local_Call spend_local = 63; + Treasury_remove_approval_Call remove_approval = 64; + Treasury_spend_Call spend = 65; + Treasury_payout_Call payout = 66; + Treasury_check_status_Call check_status = 67; + Treasury_void_spend_Call void_spend = 68; + Utility_batch_Call batch = 69; + Utility_as_derivative_Call as_derivative = 70; + Utility_batch_all_Call batch_all = 71; + Utility_dispatch_as_Call dispatch_as = 72; + Utility_force_batch_Call force_batch = 73; + Utility_with_weight_Call with_weight = 74; + ConvictionVoting_vote_Call vote = 75; + ConvictionVoting_delegate_Call delegate = 76; + ConvictionVoting_undelegate_Call undelegate = 77; + ConvictionVoting_unlock_Call unlock = 78; + ConvictionVoting_remove_vote_Call remove_vote = 79; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 80; + Referenda_submit_Call submit = 81; + Referenda_place_decision_deposit_Call place_decision_deposit = 82; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 83; + Referenda_cancel_Call cancel = 84; + Referenda_kill_Call kill = 85; + Referenda_nudge_referendum_Call nudge_referendum = 86; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 87; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 88; + Referenda_set_metadata_Call set_metadata = 89; + FellowshipCollective_add_member_Call add_member = 90; + FellowshipCollective_promote_member_Call promote_member = 91; + FellowshipCollective_demote_member_Call demote_member = 92; + FellowshipCollective_remove_member_Call remove_member = 93; + FellowshipCollective_vote_Call vote = 94; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 95; + FellowshipReferenda_submit_Call submit = 96; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 97; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 98; + FellowshipReferenda_cancel_Call cancel = 99; + FellowshipReferenda_kill_Call kill = 100; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 101; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 102; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 103; + FellowshipReferenda_set_metadata_Call set_metadata = 104; + Whitelist_whitelist_call_Call whitelist_call = 105; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 106; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 107; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 108; + Scheduler_schedule_Call schedule = 109; + Scheduler_cancel_Call cancel = 110; + Scheduler_schedule_named_Call schedule_named = 111; + Scheduler_cancel_named_Call cancel_named = 112; + Scheduler_schedule_after_Call schedule_after = 113; + Scheduler_schedule_named_after_Call schedule_named_after = 114; + Preimage_note_preimage_Call note_preimage = 115; + Preimage_unnote_preimage_Call unnote_preimage = 116; + Preimage_request_preimage_Call request_preimage = 117; + Preimage_unrequest_preimage_Call unrequest_preimage = 118; + Preimage_ensure_updated_Call ensure_updated = 119; + Identity_add_registrar_Call add_registrar = 120; + Identity_set_identity_Call set_identity = 121; + Identity_set_subs_Call set_subs = 122; + Identity_clear_identity_Call clear_identity = 123; + Identity_request_judgement_Call request_judgement = 124; + Identity_cancel_request_Call cancel_request = 125; + Identity_set_fee_Call set_fee = 126; + Identity_set_account_id_Call set_account_id = 127; + Identity_set_fields_Call set_fields = 128; + Identity_provide_judgement_Call provide_judgement = 129; + Identity_kill_identity_Call kill_identity = 130; + Identity_add_sub_Call add_sub = 131; + Identity_rename_sub_Call rename_sub = 132; + Identity_remove_sub_Call remove_sub = 133; + Identity_quit_sub_Call quit_sub = 134; + Proxy_proxy_Call proxy = 135; + Proxy_add_proxy_Call add_proxy = 136; + Proxy_remove_proxy_Call remove_proxy = 137; + Proxy_remove_proxies_Call remove_proxies = 138; + Proxy_create_pure_Call create_pure = 139; + Proxy_kill_pure_Call kill_pure = 140; + Proxy_announce_Call announce = 141; + Proxy_remove_announcement_Call remove_announcement = 142; + Proxy_reject_announcement_Call reject_announcement = 143; + Proxy_proxy_announced_Call proxy_announced = 144; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 145; + Multisig_as_multi_Call as_multi = 146; + Multisig_approve_as_multi_Call approve_as_multi = 147; + Multisig_cancel_as_multi_Call cancel_as_multi = 148; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 149; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 150; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 151; + ElectionProviderMultiPhase_submit_Call submit = 152; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 153; + Bounties_propose_bounty_Call propose_bounty = 154; + Bounties_approve_bounty_Call approve_bounty = 155; + Bounties_propose_curator_Call propose_curator = 156; + Bounties_unassign_curator_Call unassign_curator = 157; + Bounties_accept_curator_Call accept_curator = 158; + Bounties_award_bounty_Call award_bounty = 159; + Bounties_claim_bounty_Call claim_bounty = 160; + Bounties_close_bounty_Call close_bounty = 161; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 162; + ChildBounties_add_child_bounty_Call add_child_bounty = 163; + ChildBounties_propose_curator_Call propose_curator = 164; + ChildBounties_accept_curator_Call accept_curator = 165; + ChildBounties_unassign_curator_Call unassign_curator = 166; + ChildBounties_award_child_bounty_Call award_child_bounty = 167; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 168; + ChildBounties_close_child_bounty_Call close_child_bounty = 169; + NominationPools_join_Call join = 170; + NominationPools_bond_extra_Call bond_extra = 171; + NominationPools_claim_payout_Call claim_payout = 172; + NominationPools_unbond_Call unbond = 173; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 174; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 175; + NominationPools_create_Call create = 176; + NominationPools_create_with_pool_id_Call create_with_pool_id = 177; + NominationPools_nominate_Call nominate = 178; + NominationPools_set_state_Call set_state = 179; + NominationPools_set_metadata_Call set_metadata = 180; + NominationPools_set_configs_Call set_configs = 181; + NominationPools_update_roles_Call update_roles = 182; + NominationPools_chill_Call chill = 183; + NominationPools_bond_extra_other_Call bond_extra_other = 184; + NominationPools_set_claim_permission_Call set_claim_permission = 185; + NominationPools_claim_payout_other_Call claim_payout_other = 186; + NominationPools_set_commission_Call set_commission = 187; + NominationPools_set_commission_max_Call set_commission_max = 188; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 189; + NominationPools_claim_commission_Call claim_commission = 190; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 191; + Gear_upload_code_Call upload_code = 192; + Gear_upload_program_Call upload_program = 193; + Gear_create_program_Call create_program = 194; + Gear_send_message_Call send_message = 195; + Gear_send_reply_Call send_reply = 196; + Gear_claim_value_Call claim_value = 197; + Gear_run_Call run = 198; + Gear_set_execute_inherent_Call set_execute_inherent = 199; + StakingRewards_refill_Call refill = 200; + StakingRewards_force_refill_Call force_refill = 201; + StakingRewards_withdraw_Call withdraw = 202; + StakingRewards_align_supply_Call align_supply = 203; + GearVoucher_issue_Call issue = 204; + GearVoucher_call_Call call = 205; + GearVoucher_revoke_Call revoke = 206; + GearVoucher_update_Call update = 207; + GearVoucher_call_deprecated_Call call_deprecated = 208; + GearVoucher_decline_Call decline = 209; + } + sp_weights_weight_v2_Weight weight = 210; +} +message FellowshipReferenda_GeneralAdmin { +} +message Bounties_Id { + sp_core_crypto_AccountId32 = 1; +} +message NominationPools_Remove { +} +message sp_runtime_generic_header_Header { + primitive_types_H256 parent_hash = 1; + Compact_uint32 number = 2; + primitive_types_H256 state_root = 3; + primitive_types_H256 extrinsics_root = 4; + sp_runtime_generic_digest_Digest digest = 5; +} +message BagsList_Rebag_Call { + oneof dislocated { + BagsList_Id Id = 1; + BagsList_Index Index = 2; + BagsList_Raw Raw = 3; + BagsList_Address32 Address32 = 4; + BagsList_Address20 Address20 = 5; + } +} +message Identity_Address32 { + repeated uint32 = 1; + +} +message System_KillStorage_Call { + repeated System_keys_list keys = 1; + +} +message Treasury_Address32 { + repeated uint32 = 1; + +} +message FellowshipCollective_Address20 { + repeated uint32 = 1; + +} +message FellowshipReferenda_SmallTipper { +} +message Scheduler_Schedule_Call { + uint32 when = 1; + optional Tuple_uint32uint32 maybe_periodic = 2; + uint32 priority = 3; + oneof call { + System_remark_Call remark = 4; + System_set_heap_pages_Call set_heap_pages = 5; + System_set_code_Call set_code = 6; + System_set_code_without_checks_Call set_code_without_checks = 7; + System_set_storage_Call set_storage = 8; + System_kill_storage_Call kill_storage = 9; + System_kill_prefix_Call kill_prefix = 10; + System_remark_with_event_Call remark_with_event = 11; + Timestamp_set_Call set = 12; + Babe_report_equivocation_Call report_equivocation = 13; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Babe_plan_config_change_Call plan_config_change = 15; + Grandpa_report_equivocation_Call report_equivocation = 16; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 17; + Grandpa_note_stalled_Call note_stalled = 18; + Balances_transfer_allow_death_Call transfer_allow_death = 19; + Balances_force_transfer_Call force_transfer = 20; + Balances_transfer_keep_alive_Call transfer_keep_alive = 21; + Balances_transfer_all_Call transfer_all = 22; + Balances_force_unreserve_Call force_unreserve = 23; + Balances_upgrade_accounts_Call upgrade_accounts = 24; + Balances_force_set_balance_Call force_set_balance = 25; + Vesting_vest_Call vest = 26; + Vesting_vest_other_Call vest_other = 27; + Vesting_vested_transfer_Call vested_transfer = 28; + Vesting_force_vested_transfer_Call force_vested_transfer = 29; + Vesting_merge_schedules_Call merge_schedules = 30; + BagsList_rebag_Call rebag = 31; + BagsList_put_in_front_of_Call put_in_front_of = 32; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 33; + ImOnline_heartbeat_Call heartbeat = 34; + Staking_bond_Call bond = 35; + Staking_bond_extra_Call bond_extra = 36; + Staking_unbond_Call unbond = 37; + Staking_withdraw_unbonded_Call withdraw_unbonded = 38; + Staking_validate_Call validate = 39; + Staking_nominate_Call nominate = 40; + Staking_chill_Call chill = 41; + Staking_set_payee_Call set_payee = 42; + Staking_set_controller_Call set_controller = 43; + Staking_set_validator_count_Call set_validator_count = 44; + Staking_increase_validator_count_Call increase_validator_count = 45; + Staking_scale_validator_count_Call scale_validator_count = 46; + Staking_force_no_eras_Call force_no_eras = 47; + Staking_force_new_era_Call force_new_era = 48; + Staking_set_invulnerables_Call set_invulnerables = 49; + Staking_force_unstake_Call force_unstake = 50; + Staking_force_new_era_always_Call force_new_era_always = 51; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 52; + Staking_payout_stakers_Call payout_stakers = 53; + Staking_rebond_Call rebond = 54; + Staking_reap_stash_Call reap_stash = 55; + Staking_kick_Call kick = 56; + Staking_set_staking_configs_Call set_staking_configs = 57; + Staking_chill_other_Call chill_other = 58; + Staking_force_apply_min_commission_Call force_apply_min_commission = 59; + Staking_set_min_commission_Call set_min_commission = 60; + Session_set_keys_Call set_keys = 61; + Session_purge_keys_Call purge_keys = 62; + Treasury_propose_spend_Call propose_spend = 63; + Treasury_reject_proposal_Call reject_proposal = 64; + Treasury_approve_proposal_Call approve_proposal = 65; + Treasury_spend_local_Call spend_local = 66; + Treasury_remove_approval_Call remove_approval = 67; + Treasury_spend_Call spend = 68; + Treasury_payout_Call payout = 69; + Treasury_check_status_Call check_status = 70; + Treasury_void_spend_Call void_spend = 71; + Utility_batch_Call batch = 72; + Utility_as_derivative_Call as_derivative = 73; + Utility_batch_all_Call batch_all = 74; + Utility_dispatch_as_Call dispatch_as = 75; + Utility_force_batch_Call force_batch = 76; + Utility_with_weight_Call with_weight = 77; + ConvictionVoting_vote_Call vote = 78; + ConvictionVoting_delegate_Call delegate = 79; + ConvictionVoting_undelegate_Call undelegate = 80; + ConvictionVoting_unlock_Call unlock = 81; + ConvictionVoting_remove_vote_Call remove_vote = 82; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 83; + Referenda_submit_Call submit = 84; + Referenda_place_decision_deposit_Call place_decision_deposit = 85; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 86; + Referenda_cancel_Call cancel = 87; + Referenda_kill_Call kill = 88; + Referenda_nudge_referendum_Call nudge_referendum = 89; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 90; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 91; + Referenda_set_metadata_Call set_metadata = 92; + FellowshipCollective_add_member_Call add_member = 93; + FellowshipCollective_promote_member_Call promote_member = 94; + FellowshipCollective_demote_member_Call demote_member = 95; + FellowshipCollective_remove_member_Call remove_member = 96; + FellowshipCollective_vote_Call vote = 97; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 98; + FellowshipReferenda_submit_Call submit = 99; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 100; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 101; + FellowshipReferenda_cancel_Call cancel = 102; + FellowshipReferenda_kill_Call kill = 103; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 104; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 105; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 106; + FellowshipReferenda_set_metadata_Call set_metadata = 107; + Whitelist_whitelist_call_Call whitelist_call = 108; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 109; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 110; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 111; + Scheduler_schedule_Call schedule = 112; + Scheduler_cancel_Call cancel = 113; + Scheduler_schedule_named_Call schedule_named = 114; + Scheduler_cancel_named_Call cancel_named = 115; + Scheduler_schedule_after_Call schedule_after = 116; + Scheduler_schedule_named_after_Call schedule_named_after = 117; + Preimage_note_preimage_Call note_preimage = 118; + Preimage_unnote_preimage_Call unnote_preimage = 119; + Preimage_request_preimage_Call request_preimage = 120; + Preimage_unrequest_preimage_Call unrequest_preimage = 121; + Preimage_ensure_updated_Call ensure_updated = 122; + Identity_add_registrar_Call add_registrar = 123; + Identity_set_identity_Call set_identity = 124; + Identity_set_subs_Call set_subs = 125; + Identity_clear_identity_Call clear_identity = 126; + Identity_request_judgement_Call request_judgement = 127; + Identity_cancel_request_Call cancel_request = 128; + Identity_set_fee_Call set_fee = 129; + Identity_set_account_id_Call set_account_id = 130; + Identity_set_fields_Call set_fields = 131; + Identity_provide_judgement_Call provide_judgement = 132; + Identity_kill_identity_Call kill_identity = 133; + Identity_add_sub_Call add_sub = 134; + Identity_rename_sub_Call rename_sub = 135; + Identity_remove_sub_Call remove_sub = 136; + Identity_quit_sub_Call quit_sub = 137; + Proxy_proxy_Call proxy = 138; + Proxy_add_proxy_Call add_proxy = 139; + Proxy_remove_proxy_Call remove_proxy = 140; + Proxy_remove_proxies_Call remove_proxies = 141; + Proxy_create_pure_Call create_pure = 142; + Proxy_kill_pure_Call kill_pure = 143; + Proxy_announce_Call announce = 144; + Proxy_remove_announcement_Call remove_announcement = 145; + Proxy_reject_announcement_Call reject_announcement = 146; + Proxy_proxy_announced_Call proxy_announced = 147; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 148; + Multisig_as_multi_Call as_multi = 149; + Multisig_approve_as_multi_Call approve_as_multi = 150; + Multisig_cancel_as_multi_Call cancel_as_multi = 151; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 152; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 153; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 154; + ElectionProviderMultiPhase_submit_Call submit = 155; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 156; + Bounties_propose_bounty_Call propose_bounty = 157; + Bounties_approve_bounty_Call approve_bounty = 158; + Bounties_propose_curator_Call propose_curator = 159; + Bounties_unassign_curator_Call unassign_curator = 160; + Bounties_accept_curator_Call accept_curator = 161; + Bounties_award_bounty_Call award_bounty = 162; + Bounties_claim_bounty_Call claim_bounty = 163; + Bounties_close_bounty_Call close_bounty = 164; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 165; + ChildBounties_add_child_bounty_Call add_child_bounty = 166; + ChildBounties_propose_curator_Call propose_curator = 167; + ChildBounties_accept_curator_Call accept_curator = 168; + ChildBounties_unassign_curator_Call unassign_curator = 169; + ChildBounties_award_child_bounty_Call award_child_bounty = 170; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 171; + ChildBounties_close_child_bounty_Call close_child_bounty = 172; + NominationPools_join_Call join = 173; + NominationPools_bond_extra_Call bond_extra = 174; + NominationPools_claim_payout_Call claim_payout = 175; + NominationPools_unbond_Call unbond = 176; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 177; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 178; + NominationPools_create_Call create = 179; + NominationPools_create_with_pool_id_Call create_with_pool_id = 180; + NominationPools_nominate_Call nominate = 181; + NominationPools_set_state_Call set_state = 182; + NominationPools_set_metadata_Call set_metadata = 183; + NominationPools_set_configs_Call set_configs = 184; + NominationPools_update_roles_Call update_roles = 185; + NominationPools_chill_Call chill = 186; + NominationPools_bond_extra_other_Call bond_extra_other = 187; + NominationPools_set_claim_permission_Call set_claim_permission = 188; + NominationPools_claim_payout_other_Call claim_payout_other = 189; + NominationPools_set_commission_Call set_commission = 190; + NominationPools_set_commission_max_Call set_commission_max = 191; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 192; + NominationPools_claim_commission_Call claim_commission = 193; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 194; + Gear_upload_code_Call upload_code = 195; + Gear_upload_program_Call upload_program = 196; + Gear_create_program_Call create_program = 197; + Gear_send_message_Call send_message = 198; + Gear_send_reply_Call send_reply = 199; + Gear_claim_value_Call claim_value = 200; + Gear_run_Call run = 201; + Gear_set_execute_inherent_Call set_execute_inherent = 202; + StakingRewards_refill_Call refill = 203; + StakingRewards_force_refill_Call force_refill = 204; + StakingRewards_withdraw_Call withdraw = 205; + StakingRewards_align_supply_Call align_supply = 206; + GearVoucher_issue_Call issue = 207; + GearVoucher_call_Call call = 208; + GearVoucher_revoke_Call revoke = 209; + GearVoucher_update_Call update = 210; + GearVoucher_call_deprecated_Call call_deprecated = 211; + GearVoucher_decline_Call decline = 212; + } +} +message sp_core_ed25519_Public { + repeated uint32 identity = 1; + +} +message Identity_Raw22 { + repeated uint32 = 1; + +} +message Identity_QuitSub_Call { +} +message vara_runtime_NposSolution16 { + repeated Tuple_Compact_uint32Compact_uint32 votes1 = 1; + + repeated Tuple_Compact_uint32Tuple_Compact_uint32Compact_sp_arithmetic_per_things_PerU16Compact_uint32 votes2 = 2; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes3_listCompact_uint32 votes3 = 3; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes4_listCompact_uint32 votes4 = 4; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes5_listCompact_uint32 votes5 = 5; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes6_listCompact_uint32 votes6 = 6; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes7_listCompact_uint32 votes7 = 7; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes8_listCompact_uint32 votes8 = 8; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes9_listCompact_uint32 votes9 = 9; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes10_listCompact_uint32 votes10 = 10; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes11_listCompact_uint32 votes11 = 11; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes12_listCompact_uint32 votes12 = 12; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes13_listCompact_uint32 votes13 = 13; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes14_listCompact_uint32 votes14 = 14; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes15_listCompact_uint32 votes15 = 15; + + repeated Tuple_Compact_uint32ElectionProviderMultiPhase_votes16_listCompact_uint32 votes16 = 16; + +} +message GearVoucher_UploadCode { + repeated uint32 code = 1; + +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes4_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes4_listCompact_uint32 = 1; +} +message Bounties_Index { + Compact_Tuple_Null = 1; +} +message Utility_ReferendumCanceller { +} +message FellowshipReferenda_After { + uint32 = 1; +} +message FellowshipReferenda_RefundSubmissionDeposit_Call { + uint32 index = 1; +} +message Whitelist_DispatchWhitelistedCallWithPreimage_Call { + oneof call { + System_remark_Call remark = 1; + System_set_heap_pages_Call set_heap_pages = 2; + System_set_code_Call set_code = 3; + System_set_code_without_checks_Call set_code_without_checks = 4; + System_set_storage_Call set_storage = 5; + System_kill_storage_Call kill_storage = 6; + System_kill_prefix_Call kill_prefix = 7; + System_remark_with_event_Call remark_with_event = 8; + Timestamp_set_Call set = 9; + Babe_report_equivocation_Call report_equivocation = 10; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 11; + Babe_plan_config_change_Call plan_config_change = 12; + Grandpa_report_equivocation_Call report_equivocation = 13; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Grandpa_note_stalled_Call note_stalled = 15; + Balances_transfer_allow_death_Call transfer_allow_death = 16; + Balances_force_transfer_Call force_transfer = 17; + Balances_transfer_keep_alive_Call transfer_keep_alive = 18; + Balances_transfer_all_Call transfer_all = 19; + Balances_force_unreserve_Call force_unreserve = 20; + Balances_upgrade_accounts_Call upgrade_accounts = 21; + Balances_force_set_balance_Call force_set_balance = 22; + Vesting_vest_Call vest = 23; + Vesting_vest_other_Call vest_other = 24; + Vesting_vested_transfer_Call vested_transfer = 25; + Vesting_force_vested_transfer_Call force_vested_transfer = 26; + Vesting_merge_schedules_Call merge_schedules = 27; + BagsList_rebag_Call rebag = 28; + BagsList_put_in_front_of_Call put_in_front_of = 29; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 30; + ImOnline_heartbeat_Call heartbeat = 31; + Staking_bond_Call bond = 32; + Staking_bond_extra_Call bond_extra = 33; + Staking_unbond_Call unbond = 34; + Staking_withdraw_unbonded_Call withdraw_unbonded = 35; + Staking_validate_Call validate = 36; + Staking_nominate_Call nominate = 37; + Staking_chill_Call chill = 38; + Staking_set_payee_Call set_payee = 39; + Staking_set_controller_Call set_controller = 40; + Staking_set_validator_count_Call set_validator_count = 41; + Staking_increase_validator_count_Call increase_validator_count = 42; + Staking_scale_validator_count_Call scale_validator_count = 43; + Staking_force_no_eras_Call force_no_eras = 44; + Staking_force_new_era_Call force_new_era = 45; + Staking_set_invulnerables_Call set_invulnerables = 46; + Staking_force_unstake_Call force_unstake = 47; + Staking_force_new_era_always_Call force_new_era_always = 48; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 49; + Staking_payout_stakers_Call payout_stakers = 50; + Staking_rebond_Call rebond = 51; + Staking_reap_stash_Call reap_stash = 52; + Staking_kick_Call kick = 53; + Staking_set_staking_configs_Call set_staking_configs = 54; + Staking_chill_other_Call chill_other = 55; + Staking_force_apply_min_commission_Call force_apply_min_commission = 56; + Staking_set_min_commission_Call set_min_commission = 57; + Session_set_keys_Call set_keys = 58; + Session_purge_keys_Call purge_keys = 59; + Treasury_propose_spend_Call propose_spend = 60; + Treasury_reject_proposal_Call reject_proposal = 61; + Treasury_approve_proposal_Call approve_proposal = 62; + Treasury_spend_local_Call spend_local = 63; + Treasury_remove_approval_Call remove_approval = 64; + Treasury_spend_Call spend = 65; + Treasury_payout_Call payout = 66; + Treasury_check_status_Call check_status = 67; + Treasury_void_spend_Call void_spend = 68; + Utility_batch_Call batch = 69; + Utility_as_derivative_Call as_derivative = 70; + Utility_batch_all_Call batch_all = 71; + Utility_dispatch_as_Call dispatch_as = 72; + Utility_force_batch_Call force_batch = 73; + Utility_with_weight_Call with_weight = 74; + ConvictionVoting_vote_Call vote = 75; + ConvictionVoting_delegate_Call delegate = 76; + ConvictionVoting_undelegate_Call undelegate = 77; + ConvictionVoting_unlock_Call unlock = 78; + ConvictionVoting_remove_vote_Call remove_vote = 79; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 80; + Referenda_submit_Call submit = 81; + Referenda_place_decision_deposit_Call place_decision_deposit = 82; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 83; + Referenda_cancel_Call cancel = 84; + Referenda_kill_Call kill = 85; + Referenda_nudge_referendum_Call nudge_referendum = 86; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 87; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 88; + Referenda_set_metadata_Call set_metadata = 89; + FellowshipCollective_add_member_Call add_member = 90; + FellowshipCollective_promote_member_Call promote_member = 91; + FellowshipCollective_demote_member_Call demote_member = 92; + FellowshipCollective_remove_member_Call remove_member = 93; + FellowshipCollective_vote_Call vote = 94; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 95; + FellowshipReferenda_submit_Call submit = 96; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 97; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 98; + FellowshipReferenda_cancel_Call cancel = 99; + FellowshipReferenda_kill_Call kill = 100; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 101; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 102; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 103; + FellowshipReferenda_set_metadata_Call set_metadata = 104; + Whitelist_whitelist_call_Call whitelist_call = 105; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 106; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 107; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 108; + Scheduler_schedule_Call schedule = 109; + Scheduler_cancel_Call cancel = 110; + Scheduler_schedule_named_Call schedule_named = 111; + Scheduler_cancel_named_Call cancel_named = 112; + Scheduler_schedule_after_Call schedule_after = 113; + Scheduler_schedule_named_after_Call schedule_named_after = 114; + Preimage_note_preimage_Call note_preimage = 115; + Preimage_unnote_preimage_Call unnote_preimage = 116; + Preimage_request_preimage_Call request_preimage = 117; + Preimage_unrequest_preimage_Call unrequest_preimage = 118; + Preimage_ensure_updated_Call ensure_updated = 119; + Identity_add_registrar_Call add_registrar = 120; + Identity_set_identity_Call set_identity = 121; + Identity_set_subs_Call set_subs = 122; + Identity_clear_identity_Call clear_identity = 123; + Identity_request_judgement_Call request_judgement = 124; + Identity_cancel_request_Call cancel_request = 125; + Identity_set_fee_Call set_fee = 126; + Identity_set_account_id_Call set_account_id = 127; + Identity_set_fields_Call set_fields = 128; + Identity_provide_judgement_Call provide_judgement = 129; + Identity_kill_identity_Call kill_identity = 130; + Identity_add_sub_Call add_sub = 131; + Identity_rename_sub_Call rename_sub = 132; + Identity_remove_sub_Call remove_sub = 133; + Identity_quit_sub_Call quit_sub = 134; + Proxy_proxy_Call proxy = 135; + Proxy_add_proxy_Call add_proxy = 136; + Proxy_remove_proxy_Call remove_proxy = 137; + Proxy_remove_proxies_Call remove_proxies = 138; + Proxy_create_pure_Call create_pure = 139; + Proxy_kill_pure_Call kill_pure = 140; + Proxy_announce_Call announce = 141; + Proxy_remove_announcement_Call remove_announcement = 142; + Proxy_reject_announcement_Call reject_announcement = 143; + Proxy_proxy_announced_Call proxy_announced = 144; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 145; + Multisig_as_multi_Call as_multi = 146; + Multisig_approve_as_multi_Call approve_as_multi = 147; + Multisig_cancel_as_multi_Call cancel_as_multi = 148; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 149; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 150; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 151; + ElectionProviderMultiPhase_submit_Call submit = 152; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 153; + Bounties_propose_bounty_Call propose_bounty = 154; + Bounties_approve_bounty_Call approve_bounty = 155; + Bounties_propose_curator_Call propose_curator = 156; + Bounties_unassign_curator_Call unassign_curator = 157; + Bounties_accept_curator_Call accept_curator = 158; + Bounties_award_bounty_Call award_bounty = 159; + Bounties_claim_bounty_Call claim_bounty = 160; + Bounties_close_bounty_Call close_bounty = 161; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 162; + ChildBounties_add_child_bounty_Call add_child_bounty = 163; + ChildBounties_propose_curator_Call propose_curator = 164; + ChildBounties_accept_curator_Call accept_curator = 165; + ChildBounties_unassign_curator_Call unassign_curator = 166; + ChildBounties_award_child_bounty_Call award_child_bounty = 167; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 168; + ChildBounties_close_child_bounty_Call close_child_bounty = 169; + NominationPools_join_Call join = 170; + NominationPools_bond_extra_Call bond_extra = 171; + NominationPools_claim_payout_Call claim_payout = 172; + NominationPools_unbond_Call unbond = 173; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 174; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 175; + NominationPools_create_Call create = 176; + NominationPools_create_with_pool_id_Call create_with_pool_id = 177; + NominationPools_nominate_Call nominate = 178; + NominationPools_set_state_Call set_state = 179; + NominationPools_set_metadata_Call set_metadata = 180; + NominationPools_set_configs_Call set_configs = 181; + NominationPools_update_roles_Call update_roles = 182; + NominationPools_chill_Call chill = 183; + NominationPools_bond_extra_other_Call bond_extra_other = 184; + NominationPools_set_claim_permission_Call set_claim_permission = 185; + NominationPools_claim_payout_other_Call claim_payout_other = 186; + NominationPools_set_commission_Call set_commission = 187; + NominationPools_set_commission_max_Call set_commission_max = 188; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 189; + NominationPools_claim_commission_Call claim_commission = 190; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 191; + Gear_upload_code_Call upload_code = 192; + Gear_upload_program_Call upload_program = 193; + Gear_create_program_Call create_program = 194; + Gear_send_message_Call send_message = 195; + Gear_send_reply_Call send_reply = 196; + Gear_claim_value_Call claim_value = 197; + Gear_run_Call run = 198; + Gear_set_execute_inherent_Call set_execute_inherent = 199; + StakingRewards_refill_Call refill = 200; + StakingRewards_force_refill_Call force_refill = 201; + StakingRewards_withdraw_Call withdraw = 202; + StakingRewards_align_supply_Call align_supply = 203; + GearVoucher_issue_Call issue = 204; + GearVoucher_call_Call call = 205; + GearVoucher_revoke_Call revoke = 206; + GearVoucher_update_Call update = 207; + GearVoucher_call_deprecated_Call call_deprecated = 208; + GearVoucher_decline_Call decline = 209; + } +} +message Identity_Raw15 { + repeated uint32 = 1; + +} +message FellowshipReferenda_Legacy { + primitive_types_H256 hash = 1; +} +message sp_consensus_babe_app_Public { + sp_core_sr25519_Public offender = 1; +} +message Grandpa_Precommit { + finality_grandpa_Equivocation = 1; +} +message Proxy_RemoveAnnouncement_Call { + oneof real { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + primitive_types_H256 call_hash = 6; +} +message Referenda_Fellowship8Dan { +} +message Referenda_After { + uint32 = 1; +} +message FellowshipReferenda_Fellows { +} +message Identity_KnownGood { +} +message Proxy_Address20 { + repeated uint32 = 1; + +} +message vara_runtime_SessionKeys { + sp_consensus_babe_app_Public babe = 1; + sp_consensus_grandpa_app_Public grandpa = 2; + pallet_im_online_sr25519_app_sr25519_Public im_online = 3; + sp_authority_discovery_app_Public authority_discovery = 4; +} +message Referenda_MediumSpender { +} +message ElectionProviderMultiPhase_SetMinimumUntrustedScore_Call { + optional sp_npos_elections_ElectionScore maybe_next_score = 1; +} +message ImOnline_Heartbeat_Call { + pallet_im_online_Heartbeat heartbeat = 1; + pallet_im_online_sr25519_app_sr25519_Signature signature = 2; +} +message ConvictionVoting_RemoveVote_Call { + optional uint32 class = 1; + uint32 index = 2; +} +message Identity_Raw3 { + repeated uint32 = 1; + +} +message ChildBounties_Index { + Compact_Tuple_Null = 1; +} +message NominationPools_ClaimPayout_Call { +} +message Referenda_Signed { + sp_core_crypto_AccountId32 = 1; +} +message FellowshipReferenda_WhitelistedCaller { +} +message Identity_ProvideJudgement_Call { + Compact_uint32 reg_index = 1; + oneof target { + Identity_Id Id = 2; + Identity_Index Index = 3; + Identity_Raw Raw = 4; + Identity_Address32 Address32 = 5; + Identity_Address20 Address20 = 6; + } + oneof judgement { + Identity_Unknown Unknown = 7; + Identity_FeePaid FeePaid = 8; + Identity_Reasonable Reasonable = 9; + Identity_KnownGood KnownGood = 10; + Identity_OutOfDate OutOfDate = 11; + Identity_LowQuality LowQuality = 12; + Identity_Erroneous Erroneous = 13; + } + primitive_types_H256 identity = 14; +} +message Identity_RemoveSub_Call { + oneof sub { + Identity_Id Id = 1; + Identity_Index Index = 2; + Identity_Raw Raw = 3; + Identity_Address32 Address32 = 4; + Identity_Address20 Address20 = 5; + } +} +message ChildBounties_Id { + sp_core_crypto_AccountId32 = 1; +} +message GearVoucher_Issue_Call { + sp_core_crypto_AccountId32 spender = 1; + string balance = 2; + optional BTreeSet programs = 3; + bool code_uploading = 4; + uint32 duration = 5; +} +message Babe_RuntimeEnvironmentUpdated { +} +message Referenda_Submit_Call { + oneof proposal_origin { + Referenda_system system = 1; + Referenda_Origins Origins = 2; + Referenda_Void Void = 3; + } + oneof proposal { + Referenda_Legacy Legacy = 4; + Referenda_Inline Inline = 5; + Referenda_Lookup Lookup = 6; + } + oneof enactment_moment { + Referenda_At At = 7; + Referenda_After After = 8; + } +} +message Identity_Raw13 { + repeated uint32 = 1; + +} +message gear_core_ids_CodeId { + repeated uint32 code_id = 1; + +} +message StakingRewards_Index { + Compact_Tuple_Null = 1; +} +message Vesting_Id { + sp_core_crypto_AccountId32 = 1; +} +message Identity_Raw7 { + repeated uint32 = 1; + +} +message Identity_RequestJudgement_Call { + Compact_uint32 reg_index = 1; + Compact_string max_fee = 2; +} +message Proxy_RemoveProxy_Call { + oneof delegate { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + oneof proxy_type { + Proxy_Any Any = 6; + Proxy_NonTransfer NonTransfer = 7; + Proxy_Governance Governance = 8; + Proxy_Staking Staking = 9; + Proxy_IdentityJudgement IdentityJudgement = 10; + Proxy_CancelProxy CancelProxy = 11; + } + uint32 delay = 12; +} +message ElectionProviderMultiPhase_Submit_Call { + pallet_election_provider_multi_phase_RawSolution raw_solution = 1; +} +message Staking_SetInvulnerables_Call { + repeated sp_core_crypto_AccountId32 invulnerables = 1; + +} +message Utility_Fellows { +} +message NominationPools_Blocked { +} +message Gear_UploadCode_Call { + repeated uint32 code = 1; + +} +message StakingRewards_Raw { + repeated uint32 = 1; + +} +message Treasury_Id { + sp_core_crypto_AccountId32 = 1; +} +message Referenda_Cancel_Call { + uint32 index = 1; +} +message FellowshipReferenda_StakingAdmin { +} +message Identity_Raw21 { + repeated uint32 = 1; + +} +message Identity_Unknown { +} +message Balances_ForceTransfer_Call { + oneof source { + Balances_Id Id = 1; + Balances_Index Index = 2; + Balances_Raw Raw = 3; + Balances_Address32 Address32 = 4; + Balances_Address20 Address20 = 5; + } + oneof dest { + Balances_Id Id = 6; + Balances_Index Index = 7; + Balances_Raw Raw = 8; + Balances_Address32 Address32 = 9; + Balances_Address20 Address20 = 10; + } + Compact_string value = 11; +} +message Referenda_RefundSubmissionDeposit_Call { + uint32 index = 1; +} +message FellowshipReferenda_MediumSpender { +} +message Proxy_RemoveProxies_Call { +} +message NominationPools_BondExtraOther_Call { + oneof member { + NominationPools_Id Id = 1; + NominationPools_Index Index = 2; + NominationPools_Raw Raw = 3; + NominationPools_Address32 Address32 = 4; + NominationPools_Address20 Address20 = 5; + } + oneof extra { + NominationPools_FreeBalance FreeBalance = 6; + NominationPools_Rewards Rewards = 7; + } +} +message Staking_ChillOther_Call { + sp_core_crypto_AccountId32 controller = 1; +} +message Identity_Index { + Compact_Tuple_Null = 1; +} +message StakingRewards_Address32 { + repeated uint32 = 1; + +} +message Vesting_Address32 { + repeated uint32 = 1; + +} +message Utility_None { +} +message FellowshipCollective_PromoteMember_Call { + oneof who { + FellowshipCollective_Id Id = 1; + FellowshipCollective_Index Index = 2; + FellowshipCollective_Raw Raw = 3; + FellowshipCollective_Address32 Address32 = 4; + FellowshipCollective_Address20 Address20 = 5; + } +} +message NominationPools_AdjustPoolDeposit_Call { + uint32 pool_id = 1; +} +message FellowshipReferenda_Submit_Call { + oneof proposal_origin { + FellowshipReferenda_system system = 1; + FellowshipReferenda_Origins Origins = 2; + FellowshipReferenda_Void Void = 3; + } + oneof proposal { + FellowshipReferenda_Legacy Legacy = 4; + FellowshipReferenda_Inline Inline = 5; + FellowshipReferenda_Lookup Lookup = 6; + } + oneof enactment_moment { + FellowshipReferenda_At At = 7; + FellowshipReferenda_After After = 8; + } +} +message Identity_Raw0 { + repeated uint32 = 1; + +} +message Identity_Raw1 { + repeated uint32 = 1; + +} +message Babe_trie_nodes_list { + repeated uint32 trie_nodes = 1; + +} +message Tuple_finality_grandpa_Prevotesp_consensus_grandpa_app_Signature { + Tuple_finality_grandpa_Prevotesp_consensus_grandpa_app_Signature = 1; +} +message Balances_Index { + Compact_Tuple_Null = 1; +} +message Utility_BigSpender { +} +message ConvictionVoting_Undelegate_Call { + uint32 class = 1; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes8_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes8_listCompact_uint32 = 1; +} +message pallet_im_online_sr25519_app_sr25519_Signature { + sp_core_sr25519_Signature signature = 1; +} +message Referenda_Fellows { +} +message Identity_SetAccountId_Call { + Compact_uint32 index = 1; + oneof new { + Identity_Id Id = 2; + Identity_Index Index = 3; + Identity_Raw Raw = 4; + Identity_Address32 Address32 = 5; + Identity_Address20 Address20 = 6; + } +} +message Gear_ClaimValue_Call { + gear_core_ids_MessageId message_id = 1; +} +message Referenda_Fellowship6Dan { +} +message sp_runtime_generic_digest_DigestItem { + oneof logs { + Babe_PreRuntime PreRuntime = 1; + Babe_Consensus Consensus = 2; + Babe_Seal Seal = 3; + Babe_Other Other = 4; + Babe_RuntimeEnvironmentUpdated RuntimeEnvironmentUpdated = 5; + } +} +message Babe_ReportEquivocation_Call { + sp_consensus_slots_EquivocationProof equivocation_proof = 1; + sp_session_MembershipProof key_owner_proof = 2; +} +message FellowshipReferenda_BigSpender { +} +message Gear_SendReply_Call { + gear_core_ids_MessageId reply_to_id = 1; + repeated uint32 payload = 2; + + uint64 gas_limit = 3; + string value = 4; + bool keep_alive = 5; +} +message Treasury_ApproveProposal_Call { + Compact_uint32 proposal_id = 1; +} +message Referenda_Lookup { + primitive_types_H256 hash = 1; + uint32 len = 2; +} +message Referenda_At { + uint32 = 1; +} +message Identity_Raw23 { + repeated uint32 = 1; + +} +message pallet_multisig_Timepoint { + uint32 height = 1; + uint32 index = 2; +} +message Utility_GeneralAdmin { +} +message FellowshipCollective_DemoteMember_Call { + oneof who { + FellowshipCollective_Id Id = 1; + FellowshipCollective_Index Index = 2; + FellowshipCollective_Raw Raw = 3; + FellowshipCollective_Address32 Address32 = 4; + FellowshipCollective_Address20 Address20 = 5; + } +} +message NominationPools_Create_Call { + Compact_string amount = 1; + oneof root { + NominationPools_Id Id = 2; + NominationPools_Index Index = 3; + NominationPools_Raw Raw = 4; + NominationPools_Address32 Address32 = 5; + NominationPools_Address20 Address20 = 6; + } + oneof nominator { + NominationPools_Id Id = 7; + NominationPools_Index Index = 8; + NominationPools_Raw Raw = 9; + NominationPools_Address32 Address32 = 10; + NominationPools_Address20 Address20 = 11; + } + oneof bouncer { + NominationPools_Id Id = 12; + NominationPools_Index Index = 13; + NominationPools_Raw Raw = 14; + NominationPools_Address32 Address32 = 15; + NominationPools_Address20 Address20 = 16; + } +} +message ConvictionVoting_Standard { + pallet_conviction_voting_vote_Vote vote = 1; + string balance = 2; +} +message Identity_Sha256 { + repeated uint32 = 1; + +} +message Multisig_AsMulti_Call { + uint32 threshold = 1; + repeated sp_core_crypto_AccountId32 other_signatories = 2; + + optional pallet_multisig_Timepoint maybe_timepoint = 3; + oneof call { + System_remark_Call remark = 4; + System_set_heap_pages_Call set_heap_pages = 5; + System_set_code_Call set_code = 6; + System_set_code_without_checks_Call set_code_without_checks = 7; + System_set_storage_Call set_storage = 8; + System_kill_storage_Call kill_storage = 9; + System_kill_prefix_Call kill_prefix = 10; + System_remark_with_event_Call remark_with_event = 11; + Timestamp_set_Call set = 12; + Babe_report_equivocation_Call report_equivocation = 13; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Babe_plan_config_change_Call plan_config_change = 15; + Grandpa_report_equivocation_Call report_equivocation = 16; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 17; + Grandpa_note_stalled_Call note_stalled = 18; + Balances_transfer_allow_death_Call transfer_allow_death = 19; + Balances_force_transfer_Call force_transfer = 20; + Balances_transfer_keep_alive_Call transfer_keep_alive = 21; + Balances_transfer_all_Call transfer_all = 22; + Balances_force_unreserve_Call force_unreserve = 23; + Balances_upgrade_accounts_Call upgrade_accounts = 24; + Balances_force_set_balance_Call force_set_balance = 25; + Vesting_vest_Call vest = 26; + Vesting_vest_other_Call vest_other = 27; + Vesting_vested_transfer_Call vested_transfer = 28; + Vesting_force_vested_transfer_Call force_vested_transfer = 29; + Vesting_merge_schedules_Call merge_schedules = 30; + BagsList_rebag_Call rebag = 31; + BagsList_put_in_front_of_Call put_in_front_of = 32; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 33; + ImOnline_heartbeat_Call heartbeat = 34; + Staking_bond_Call bond = 35; + Staking_bond_extra_Call bond_extra = 36; + Staking_unbond_Call unbond = 37; + Staking_withdraw_unbonded_Call withdraw_unbonded = 38; + Staking_validate_Call validate = 39; + Staking_nominate_Call nominate = 40; + Staking_chill_Call chill = 41; + Staking_set_payee_Call set_payee = 42; + Staking_set_controller_Call set_controller = 43; + Staking_set_validator_count_Call set_validator_count = 44; + Staking_increase_validator_count_Call increase_validator_count = 45; + Staking_scale_validator_count_Call scale_validator_count = 46; + Staking_force_no_eras_Call force_no_eras = 47; + Staking_force_new_era_Call force_new_era = 48; + Staking_set_invulnerables_Call set_invulnerables = 49; + Staking_force_unstake_Call force_unstake = 50; + Staking_force_new_era_always_Call force_new_era_always = 51; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 52; + Staking_payout_stakers_Call payout_stakers = 53; + Staking_rebond_Call rebond = 54; + Staking_reap_stash_Call reap_stash = 55; + Staking_kick_Call kick = 56; + Staking_set_staking_configs_Call set_staking_configs = 57; + Staking_chill_other_Call chill_other = 58; + Staking_force_apply_min_commission_Call force_apply_min_commission = 59; + Staking_set_min_commission_Call set_min_commission = 60; + Session_set_keys_Call set_keys = 61; + Session_purge_keys_Call purge_keys = 62; + Treasury_propose_spend_Call propose_spend = 63; + Treasury_reject_proposal_Call reject_proposal = 64; + Treasury_approve_proposal_Call approve_proposal = 65; + Treasury_spend_local_Call spend_local = 66; + Treasury_remove_approval_Call remove_approval = 67; + Treasury_spend_Call spend = 68; + Treasury_payout_Call payout = 69; + Treasury_check_status_Call check_status = 70; + Treasury_void_spend_Call void_spend = 71; + Utility_batch_Call batch = 72; + Utility_as_derivative_Call as_derivative = 73; + Utility_batch_all_Call batch_all = 74; + Utility_dispatch_as_Call dispatch_as = 75; + Utility_force_batch_Call force_batch = 76; + Utility_with_weight_Call with_weight = 77; + ConvictionVoting_vote_Call vote = 78; + ConvictionVoting_delegate_Call delegate = 79; + ConvictionVoting_undelegate_Call undelegate = 80; + ConvictionVoting_unlock_Call unlock = 81; + ConvictionVoting_remove_vote_Call remove_vote = 82; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 83; + Referenda_submit_Call submit = 84; + Referenda_place_decision_deposit_Call place_decision_deposit = 85; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 86; + Referenda_cancel_Call cancel = 87; + Referenda_kill_Call kill = 88; + Referenda_nudge_referendum_Call nudge_referendum = 89; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 90; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 91; + Referenda_set_metadata_Call set_metadata = 92; + FellowshipCollective_add_member_Call add_member = 93; + FellowshipCollective_promote_member_Call promote_member = 94; + FellowshipCollective_demote_member_Call demote_member = 95; + FellowshipCollective_remove_member_Call remove_member = 96; + FellowshipCollective_vote_Call vote = 97; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 98; + FellowshipReferenda_submit_Call submit = 99; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 100; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 101; + FellowshipReferenda_cancel_Call cancel = 102; + FellowshipReferenda_kill_Call kill = 103; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 104; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 105; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 106; + FellowshipReferenda_set_metadata_Call set_metadata = 107; + Whitelist_whitelist_call_Call whitelist_call = 108; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 109; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 110; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 111; + Scheduler_schedule_Call schedule = 112; + Scheduler_cancel_Call cancel = 113; + Scheduler_schedule_named_Call schedule_named = 114; + Scheduler_cancel_named_Call cancel_named = 115; + Scheduler_schedule_after_Call schedule_after = 116; + Scheduler_schedule_named_after_Call schedule_named_after = 117; + Preimage_note_preimage_Call note_preimage = 118; + Preimage_unnote_preimage_Call unnote_preimage = 119; + Preimage_request_preimage_Call request_preimage = 120; + Preimage_unrequest_preimage_Call unrequest_preimage = 121; + Preimage_ensure_updated_Call ensure_updated = 122; + Identity_add_registrar_Call add_registrar = 123; + Identity_set_identity_Call set_identity = 124; + Identity_set_subs_Call set_subs = 125; + Identity_clear_identity_Call clear_identity = 126; + Identity_request_judgement_Call request_judgement = 127; + Identity_cancel_request_Call cancel_request = 128; + Identity_set_fee_Call set_fee = 129; + Identity_set_account_id_Call set_account_id = 130; + Identity_set_fields_Call set_fields = 131; + Identity_provide_judgement_Call provide_judgement = 132; + Identity_kill_identity_Call kill_identity = 133; + Identity_add_sub_Call add_sub = 134; + Identity_rename_sub_Call rename_sub = 135; + Identity_remove_sub_Call remove_sub = 136; + Identity_quit_sub_Call quit_sub = 137; + Proxy_proxy_Call proxy = 138; + Proxy_add_proxy_Call add_proxy = 139; + Proxy_remove_proxy_Call remove_proxy = 140; + Proxy_remove_proxies_Call remove_proxies = 141; + Proxy_create_pure_Call create_pure = 142; + Proxy_kill_pure_Call kill_pure = 143; + Proxy_announce_Call announce = 144; + Proxy_remove_announcement_Call remove_announcement = 145; + Proxy_reject_announcement_Call reject_announcement = 146; + Proxy_proxy_announced_Call proxy_announced = 147; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 148; + Multisig_as_multi_Call as_multi = 149; + Multisig_approve_as_multi_Call approve_as_multi = 150; + Multisig_cancel_as_multi_Call cancel_as_multi = 151; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 152; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 153; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 154; + ElectionProviderMultiPhase_submit_Call submit = 155; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 156; + Bounties_propose_bounty_Call propose_bounty = 157; + Bounties_approve_bounty_Call approve_bounty = 158; + Bounties_propose_curator_Call propose_curator = 159; + Bounties_unassign_curator_Call unassign_curator = 160; + Bounties_accept_curator_Call accept_curator = 161; + Bounties_award_bounty_Call award_bounty = 162; + Bounties_claim_bounty_Call claim_bounty = 163; + Bounties_close_bounty_Call close_bounty = 164; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 165; + ChildBounties_add_child_bounty_Call add_child_bounty = 166; + ChildBounties_propose_curator_Call propose_curator = 167; + ChildBounties_accept_curator_Call accept_curator = 168; + ChildBounties_unassign_curator_Call unassign_curator = 169; + ChildBounties_award_child_bounty_Call award_child_bounty = 170; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 171; + ChildBounties_close_child_bounty_Call close_child_bounty = 172; + NominationPools_join_Call join = 173; + NominationPools_bond_extra_Call bond_extra = 174; + NominationPools_claim_payout_Call claim_payout = 175; + NominationPools_unbond_Call unbond = 176; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 177; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 178; + NominationPools_create_Call create = 179; + NominationPools_create_with_pool_id_Call create_with_pool_id = 180; + NominationPools_nominate_Call nominate = 181; + NominationPools_set_state_Call set_state = 182; + NominationPools_set_metadata_Call set_metadata = 183; + NominationPools_set_configs_Call set_configs = 184; + NominationPools_update_roles_Call update_roles = 185; + NominationPools_chill_Call chill = 186; + NominationPools_bond_extra_other_Call bond_extra_other = 187; + NominationPools_set_claim_permission_Call set_claim_permission = 188; + NominationPools_claim_payout_other_Call claim_payout_other = 189; + NominationPools_set_commission_Call set_commission = 190; + NominationPools_set_commission_max_Call set_commission_max = 191; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 192; + NominationPools_claim_commission_Call claim_commission = 193; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 194; + Gear_upload_code_Call upload_code = 195; + Gear_upload_program_Call upload_program = 196; + Gear_create_program_Call create_program = 197; + Gear_send_message_Call send_message = 198; + Gear_send_reply_Call send_reply = 199; + Gear_claim_value_Call claim_value = 200; + Gear_run_Call run = 201; + Gear_set_execute_inherent_Call set_execute_inherent = 202; + StakingRewards_refill_Call refill = 203; + StakingRewards_force_refill_Call force_refill = 204; + StakingRewards_withdraw_Call withdraw = 205; + StakingRewards_align_supply_Call align_supply = 206; + GearVoucher_issue_Call issue = 207; + GearVoucher_call_Call call = 208; + GearVoucher_revoke_Call revoke = 209; + GearVoucher_update_Call update = 210; + GearVoucher_call_deprecated_Call call_deprecated = 211; + GearVoucher_decline_Call decline = 212; + } + sp_weights_weight_v2_Weight max_weight = 213; +} +message Balances_TransferAllowDeath_Call { + oneof dest { + Balances_Id Id = 1; + Balances_Index Index = 2; + Balances_Raw Raw = 3; + Balances_Address32 Address32 = 4; + Balances_Address20 Address20 = 5; + } + Compact_string value = 6; +} +message Balances_TransferAll_Call { + oneof dest { + Balances_Id Id = 1; + Balances_Index Index = 2; + Balances_Raw Raw = 3; + Balances_Address32 Address32 = 4; + Balances_Address20 Address20 = 5; + } + bool keep_alive = 6; +} +message sp_authority_discovery_app_Public { + sp_core_sr25519_Public authority_discovery = 1; +} +message ConvictionVoting_Address20 { + repeated uint32 = 1; + +} +message Bounties_CloseBounty_Call { + Compact_uint32 bounty_id = 1; +} +message Referenda_Fellowship3Dan { +} +message Tuple_Compact_uint32Compact_uint32 { + Tuple_Compact_uint32Compact_uint32 = 1; +} +message ChildBounties_Address32 { + repeated uint32 = 1; + +} +message Utility_Origins { + oneof { + Utility_StakingAdmin StakingAdmin = 1; + Utility_Treasurer Treasurer = 2; + Utility_FellowshipAdmin FellowshipAdmin = 3; + Utility_GeneralAdmin GeneralAdmin = 4; + Utility_ReferendumCanceller ReferendumCanceller = 5; + Utility_ReferendumKiller ReferendumKiller = 6; + Utility_SmallTipper SmallTipper = 7; + Utility_BigTipper BigTipper = 8; + Utility_SmallSpender SmallSpender = 9; + Utility_MediumSpender MediumSpender = 10; + Utility_BigSpender BigSpender = 11; + Utility_WhitelistedCaller WhitelistedCaller = 12; + Utility_FellowshipInitiates FellowshipInitiates = 13; + Utility_Fellows Fellows = 14; + Utility_FellowshipExperts FellowshipExperts = 15; + Utility_FellowshipMasters FellowshipMasters = 16; + Utility_Fellowship1Dan Fellowship1Dan = 17; + Utility_Fellowship2Dan Fellowship2Dan = 18; + Utility_Fellowship3Dan Fellowship3Dan = 19; + Utility_Fellowship4Dan Fellowship4Dan = 20; + Utility_Fellowship5Dan Fellowship5Dan = 21; + Utility_Fellowship6Dan Fellowship6Dan = 22; + Utility_Fellowship7Dan Fellowship7Dan = 23; + Utility_Fellowship8Dan Fellowship8Dan = 24; + Utility_Fellowship9Dan Fellowship9Dan = 25; + } +} +message Bounties_ProposeCurator_Call { + Compact_uint32 bounty_id = 1; + oneof curator { + Bounties_Id Id = 2; + Bounties_Index Index = 3; + Bounties_Raw Raw = 4; + Bounties_Address32 Address32 = 5; + Bounties_Address20 Address20 = 6; + } + Compact_string fee = 7; +} +message Gear_Run_Call { + optional uint64 max_gas = 1; +} +message Treasury_Payout_Call { + uint32 index = 1; +} +message NominationPools_SetCommissionChangeRate_Call { + uint32 pool_id = 1; + pallet_nomination_pools_CommissionChangeRate change_rate = 2; +} +message GearVoucher_SendReply { + gear_core_ids_MessageId reply_to_id = 1; + repeated uint32 payload = 2; + + uint64 gas_limit = 3; + string value = 4; + bool keep_alive = 5; +} +message sp_consensus_slots_Slot { + uint64 slot = 1; +} +message Balances_Address32 { + repeated uint32 = 1; + +} +message Referenda_StakingAdmin { +} +message FellowshipReferenda_FellowshipAdmin { +} +message FellowshipReferenda_Fellowship7Dan { +} +message Balances_ForceSetBalance_Call { + oneof who { + Balances_Id Id = 1; + Balances_Index Index = 2; + Balances_Raw Raw = 3; + Balances_Address32 Address32 = 4; + Balances_Address20 Address20 = 5; + } + Compact_string new_free = 6; +} +message Staking_Set { + string = 1; +} +message FellowshipCollective_AddMember_Call { + oneof who { + FellowshipCollective_Id Id = 1; + FellowshipCollective_Index Index = 2; + FellowshipCollective_Raw Raw = 3; + FellowshipCollective_Address32 Address32 = 4; + FellowshipCollective_Address20 Address20 = 5; + } +} +message NominationPools_Index { + Compact_Tuple_Null = 1; +} +message Utility_SmallSpender { +} +message FellowshipReferenda_Fellowship6Dan { +} +message Identity_AddSub_Call { + oneof sub { + Identity_Id Id = 1; + Identity_Index Index = 2; + Identity_Raw Raw = 3; + Identity_Address32 Address32 = 4; + Identity_Address20 Address20 = 5; + } + oneof data { + Identity_None None = 6; + Identity_Raw0 Raw0 = 7; + Identity_Raw1 Raw1 = 8; + Identity_Raw2 Raw2 = 9; + Identity_Raw3 Raw3 = 10; + Identity_Raw4 Raw4 = 11; + Identity_Raw5 Raw5 = 12; + Identity_Raw6 Raw6 = 13; + Identity_Raw7 Raw7 = 14; + Identity_Raw8 Raw8 = 15; + Identity_Raw9 Raw9 = 16; + Identity_Raw10 Raw10 = 17; + Identity_Raw11 Raw11 = 18; + Identity_Raw12 Raw12 = 19; + Identity_Raw13 Raw13 = 20; + Identity_Raw14 Raw14 = 21; + Identity_Raw15 Raw15 = 22; + Identity_Raw16 Raw16 = 23; + Identity_Raw17 Raw17 = 24; + Identity_Raw18 Raw18 = 25; + Identity_Raw19 Raw19 = 26; + Identity_Raw20 Raw20 = 27; + Identity_Raw21 Raw21 = 28; + Identity_Raw22 Raw22 = 29; + Identity_Raw23 Raw23 = 30; + Identity_Raw24 Raw24 = 31; + Identity_Raw25 Raw25 = 32; + Identity_Raw26 Raw26 = 33; + Identity_Raw27 Raw27 = 34; + Identity_Raw28 Raw28 = 35; + Identity_Raw29 Raw29 = 36; + Identity_Raw30 Raw30 = 37; + Identity_Raw31 Raw31 = 38; + Identity_Raw32 Raw32 = 39; + Identity_BlakeTwo256 BlakeTwo256 = 40; + Identity_Sha256 Sha256 = 41; + Identity_Keccak256 Keccak256 = 42; + Identity_ShaThree256 ShaThree256 = 43; + } +} +message ChildBounties_AddChildBounty_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_string value = 2; + repeated uint32 description = 3; + +} +message Timestamp_Set_Call { + Compact_uint64 now = 1; +} +message Utility_FellowshipExperts { +} +message FellowshipReferenda_FellowshipExperts { +} +message FellowshipReferenda_Kill_Call { + uint32 index = 1; +} +message pallet_election_provider_multi_phase_SolutionOrSnapshotSize { + Compact_uint32 voters = 1; + Compact_uint32 targets = 2; +} +message System_SetCode_Call { + repeated uint32 code = 1; + +} +message sp_consensus_grandpa_app_Public { + sp_core_ed25519_Public identity = 1; +} +message Referenda_PlaceDecisionDeposit_Call { + uint32 index = 1; +} +message ElectionProviderMultiPhase_SubmitUnsigned_Call { + pallet_election_provider_multi_phase_RawSolution raw_solution = 1; + pallet_election_provider_multi_phase_SolutionOrSnapshotSize witness = 2; +} +message NominationPools_UpdateRoles_Call { + uint32 pool_id = 1; + oneof new_root { + NominationPools_Noop Noop = 2; + NominationPools_Set Set = 3; + NominationPools_Remove Remove = 4; + } + oneof new_nominator { + NominationPools_Noop Noop = 5; + NominationPools_Set Set = 6; + NominationPools_Remove Remove = 7; + } + oneof new_bouncer { + NominationPools_Noop Noop = 8; + NominationPools_Set Set = 9; + NominationPools_Remove Remove = 10; + } +} +message Referenda_RefundDecisionDeposit_Call { + uint32 index = 1; +} +message Identity_CancelRequest_Call { + uint32 reg_index = 1; +} +message Identity_Erroneous { +} +message Compact_string { + string value = 1; +} +message Staking_ReapStash_Call { + sp_core_crypto_AccountId32 stash = 1; + uint32 num_slashing_spans = 2; +} +message Utility_system { + oneof { + Utility_Root Root = 1; + Utility_Signed Signed = 2; + Utility_None None = 3; + } +} +message pallet_conviction_voting_vote_Vote { + uint32 vote = 1; +} +message Referenda_Treasurer { +} +message Bounties_ClaimBounty_Call { + Compact_uint32 bounty_id = 1; +} +message System_keys_list { + repeated uint32 keys = 1; + +} +message BagsList_Address20 { + repeated uint32 = 1; + +} +message Treasury_ProposeSpend_Call { + Compact_string value = 1; + oneof beneficiary { + Treasury_Id Id = 2; + Treasury_Index Index = 3; + Treasury_Raw Raw = 4; + Treasury_Address32 Address32 = 5; + Treasury_Address20 Address20 = 6; + } +} +message BagsList_PutInFrontOfOther_Call { + oneof heavier { + BagsList_Id Id = 1; + BagsList_Index Index = 2; + BagsList_Raw Raw = 3; + BagsList_Address32 Address32 = 4; + BagsList_Address20 Address20 = 5; + } + oneof lighter { + BagsList_Id Id = 6; + BagsList_Index Index = 7; + BagsList_Raw Raw = 8; + BagsList_Address32 Address32 = 9; + BagsList_Address20 Address20 = 10; + } +} +message Staking_Account { + sp_core_crypto_AccountId32 = 1; +} +message FellowshipCollective_Raw { + repeated uint32 = 1; + +} +message NominationPools_Raw { + repeated uint32 = 1; + +} +message NominationPools_Open { +} +message Staking_ForceApplyMinCommission_Call { + sp_core_crypto_AccountId32 validator_stash = 1; +} +message Referenda_GeneralAdmin { +} +message ConvictionVoting_Locked2x { +} +message Referenda_ReferendumCanceller { +} +message Referenda_Kill_Call { + uint32 index = 1; +} +message Multisig_CancelAsMulti_Call { + uint32 threshold = 1; + repeated sp_core_crypto_AccountId32 other_signatories = 2; + + pallet_multisig_Timepoint timepoint = 3; + repeated uint32 call_hash = 4; + +} +message Staking_PayoutStakers_Call { + sp_core_crypto_AccountId32 validator_stash = 1; + uint32 era = 2; +} +message ConvictionVoting_Delegate_Call { + uint32 class = 1; + oneof to { + ConvictionVoting_Id Id = 2; + ConvictionVoting_Index Index = 3; + ConvictionVoting_Raw Raw = 4; + ConvictionVoting_Address32 Address32 = 5; + ConvictionVoting_Address20 Address20 = 6; + } + oneof conviction { + ConvictionVoting_None None = 7; + ConvictionVoting_Locked1x Locked1x = 8; + ConvictionVoting_Locked2x Locked2x = 9; + ConvictionVoting_Locked3x Locked3x = 10; + ConvictionVoting_Locked4x Locked4x = 11; + ConvictionVoting_Locked5x Locked5x = 12; + ConvictionVoting_Locked6x Locked6x = 13; + } + string balance = 14; +} +message Scheduler_CancelNamed_Call { + repeated uint32 id = 1; + +} +message NominationPools_SetState_Call { + uint32 pool_id = 1; + oneof state { + NominationPools_Open Open = 2; + NominationPools_Blocked Blocked = 3; + NominationPools_Destroying Destroying = 4; + } +} +message StakingRewards_AlignSupply_Call { + string target = 1; +} +message NominationPools_BondExtra_Call { + oneof extra { + NominationPools_FreeBalance FreeBalance = 1; + NominationPools_Rewards Rewards = 2; + } +} +message GearVoucher_SendMessage { + gear_core_ids_ProgramId destination = 1; + repeated uint32 payload = 2; + + uint64 gas_limit = 3; + string value = 4; + bool keep_alive = 5; +} +message GearVoucher_Revoke_Call { + sp_core_crypto_AccountId32 spender = 1; + pallet_gear_voucher_internal_VoucherId voucher_id = 2; +} +message Staking_SetPayee_Call { + oneof payee { + Staking_Staked Staked = 1; + Staking_Stash Stash = 2; + Staking_Controller Controller = 3; + Staking_Account Account = 4; + Staking_None None = 5; + } +} +message Identity_Raw24 { + repeated uint32 = 1; + +} +message FellowshipReferenda_At { + uint32 = 1; +} +message FellowshipReferenda_NudgeReferendum_Call { + uint32 index = 1; +} +message Preimage_NotePreimage_Call { + repeated uint32 bytes = 1; + +} +message BagsList_Index { + Compact_Tuple_Null = 1; +} +message Staking_None { +} +message Utility_Fellowship6Dan { +} +message FellowshipReferenda_system { + oneof { + FellowshipReferenda_Root Root = 1; + FellowshipReferenda_Signed Signed = 2; + FellowshipReferenda_None None = 3; + } +} +message FellowshipReferenda_BigTipper { +} +message Identity_Raw9 { + repeated uint32 = 1; + +} +message Tuple_sp_core_crypto_AccountId32sp_npos_elections_Support { + Tuple_sp_core_crypto_AccountId32sp_npos_elections_Support = 1; +} +message pallet_staking_ValidatorPrefs { + Compact_sp_arithmetic_per_things_Perbill commission = 1; + bool blocked = 2; +} +message Utility_Fellowship9Dan { +} +message Referenda_SetMetadata_Call { + uint32 index = 1; + optional primitive_types_H256 maybe_hash = 2; +} +message FellowshipReferenda_Inline { + bounded_collections_bounded_vec_BoundedVec = 1; +} +message Identity_OutOfDate { +} +message Vesting_Vest_Call { +} +message ConvictionVoting_Vote_Call { + Compact_uint32 poll_index = 1; + oneof vote { + ConvictionVoting_Standard Standard = 2; + ConvictionVoting_Split Split = 3; + ConvictionVoting_SplitAbstain SplitAbstain = 4; + } +} +message NominationPools_Noop { +} +message NominationPools_ClaimCommission_Call { + uint32 pool_id = 1; +} +message Staking_Address20 { + repeated uint32 = 1; + +} +message sp_arithmetic_per_things_Perbill { + uint32 new = 1; +} +message Identity_RenameSub_Call { + oneof sub { + Identity_Id Id = 1; + Identity_Index Index = 2; + Identity_Raw Raw = 3; + Identity_Address32 Address32 = 4; + Identity_Address20 Address20 = 5; + } + oneof data { + Identity_None None = 6; + Identity_Raw0 Raw0 = 7; + Identity_Raw1 Raw1 = 8; + Identity_Raw2 Raw2 = 9; + Identity_Raw3 Raw3 = 10; + Identity_Raw4 Raw4 = 11; + Identity_Raw5 Raw5 = 12; + Identity_Raw6 Raw6 = 13; + Identity_Raw7 Raw7 = 14; + Identity_Raw8 Raw8 = 15; + Identity_Raw9 Raw9 = 16; + Identity_Raw10 Raw10 = 17; + Identity_Raw11 Raw11 = 18; + Identity_Raw12 Raw12 = 19; + Identity_Raw13 Raw13 = 20; + Identity_Raw14 Raw14 = 21; + Identity_Raw15 Raw15 = 22; + Identity_Raw16 Raw16 = 23; + Identity_Raw17 Raw17 = 24; + Identity_Raw18 Raw18 = 25; + Identity_Raw19 Raw19 = 26; + Identity_Raw20 Raw20 = 27; + Identity_Raw21 Raw21 = 28; + Identity_Raw22 Raw22 = 29; + Identity_Raw23 Raw23 = 30; + Identity_Raw24 Raw24 = 31; + Identity_Raw25 Raw25 = 32; + Identity_Raw26 Raw26 = 33; + Identity_Raw27 Raw27 = 34; + Identity_Raw28 Raw28 = 35; + Identity_Raw29 Raw29 = 36; + Identity_Raw30 Raw30 = 37; + Identity_Raw31 Raw31 = 38; + Identity_Raw32 Raw32 = 39; + Identity_BlakeTwo256 BlakeTwo256 = 40; + Identity_Sha256 Sha256 = 41; + Identity_Keccak256 Keccak256 = 42; + Identity_ShaThree256 ShaThree256 = 43; + } +} +message Referenda_BigTipper { +} +message FellowshipCollective_Id { + sp_core_crypto_AccountId32 = 1; +} +message FellowshipReferenda_Fellowship4Dan { +} +message Staking_CancelDeferredSlash_Call { + uint32 era = 1; + repeated uint32 slash_indices = 2; + +} +message FellowshipReferenda_FellowshipMasters { +} +message Staking_Staked { +} +message Identity_KillIdentity_Call { + oneof target { + Identity_Id Id = 1; + Identity_Index Index = 2; + Identity_Raw Raw = 3; + Identity_Address32 Address32 = 4; + Identity_Address20 Address20 = 5; + } +} +message Vesting_VestedTransfer_Call { + oneof target { + Vesting_Id Id = 1; + Vesting_Index Index = 2; + Vesting_Raw Raw = 3; + Vesting_Address32 Address32 = 4; + Vesting_Address20 Address20 = 5; + } + pallet_vesting_vesting_info_VestingInfo schedule = 6; +} +message Referenda_Root { +} +message Whitelist_RemoveWhitelistedCall_Call { + primitive_types_H256 call_hash = 1; +} +message Proxy_ProxyAnnounced_Call { + oneof delegate { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + oneof real { + Proxy_Id Id = 6; + Proxy_Index Index = 7; + Proxy_Raw Raw = 8; + Proxy_Address32 Address32 = 9; + Proxy_Address20 Address20 = 10; + } + optional vara_runtime_ProxyType force_proxy_type = 11; + oneof call { + System_remark_Call remark = 12; + System_set_heap_pages_Call set_heap_pages = 13; + System_set_code_Call set_code = 14; + System_set_code_without_checks_Call set_code_without_checks = 15; + System_set_storage_Call set_storage = 16; + System_kill_storage_Call kill_storage = 17; + System_kill_prefix_Call kill_prefix = 18; + System_remark_with_event_Call remark_with_event = 19; + Timestamp_set_Call set = 20; + Babe_report_equivocation_Call report_equivocation = 21; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 22; + Babe_plan_config_change_Call plan_config_change = 23; + Grandpa_report_equivocation_Call report_equivocation = 24; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 25; + Grandpa_note_stalled_Call note_stalled = 26; + Balances_transfer_allow_death_Call transfer_allow_death = 27; + Balances_force_transfer_Call force_transfer = 28; + Balances_transfer_keep_alive_Call transfer_keep_alive = 29; + Balances_transfer_all_Call transfer_all = 30; + Balances_force_unreserve_Call force_unreserve = 31; + Balances_upgrade_accounts_Call upgrade_accounts = 32; + Balances_force_set_balance_Call force_set_balance = 33; + Vesting_vest_Call vest = 34; + Vesting_vest_other_Call vest_other = 35; + Vesting_vested_transfer_Call vested_transfer = 36; + Vesting_force_vested_transfer_Call force_vested_transfer = 37; + Vesting_merge_schedules_Call merge_schedules = 38; + BagsList_rebag_Call rebag = 39; + BagsList_put_in_front_of_Call put_in_front_of = 40; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 41; + ImOnline_heartbeat_Call heartbeat = 42; + Staking_bond_Call bond = 43; + Staking_bond_extra_Call bond_extra = 44; + Staking_unbond_Call unbond = 45; + Staking_withdraw_unbonded_Call withdraw_unbonded = 46; + Staking_validate_Call validate = 47; + Staking_nominate_Call nominate = 48; + Staking_chill_Call chill = 49; + Staking_set_payee_Call set_payee = 50; + Staking_set_controller_Call set_controller = 51; + Staking_set_validator_count_Call set_validator_count = 52; + Staking_increase_validator_count_Call increase_validator_count = 53; + Staking_scale_validator_count_Call scale_validator_count = 54; + Staking_force_no_eras_Call force_no_eras = 55; + Staking_force_new_era_Call force_new_era = 56; + Staking_set_invulnerables_Call set_invulnerables = 57; + Staking_force_unstake_Call force_unstake = 58; + Staking_force_new_era_always_Call force_new_era_always = 59; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 60; + Staking_payout_stakers_Call payout_stakers = 61; + Staking_rebond_Call rebond = 62; + Staking_reap_stash_Call reap_stash = 63; + Staking_kick_Call kick = 64; + Staking_set_staking_configs_Call set_staking_configs = 65; + Staking_chill_other_Call chill_other = 66; + Staking_force_apply_min_commission_Call force_apply_min_commission = 67; + Staking_set_min_commission_Call set_min_commission = 68; + Session_set_keys_Call set_keys = 69; + Session_purge_keys_Call purge_keys = 70; + Treasury_propose_spend_Call propose_spend = 71; + Treasury_reject_proposal_Call reject_proposal = 72; + Treasury_approve_proposal_Call approve_proposal = 73; + Treasury_spend_local_Call spend_local = 74; + Treasury_remove_approval_Call remove_approval = 75; + Treasury_spend_Call spend = 76; + Treasury_payout_Call payout = 77; + Treasury_check_status_Call check_status = 78; + Treasury_void_spend_Call void_spend = 79; + Utility_batch_Call batch = 80; + Utility_as_derivative_Call as_derivative = 81; + Utility_batch_all_Call batch_all = 82; + Utility_dispatch_as_Call dispatch_as = 83; + Utility_force_batch_Call force_batch = 84; + Utility_with_weight_Call with_weight = 85; + ConvictionVoting_vote_Call vote = 86; + ConvictionVoting_delegate_Call delegate = 87; + ConvictionVoting_undelegate_Call undelegate = 88; + ConvictionVoting_unlock_Call unlock = 89; + ConvictionVoting_remove_vote_Call remove_vote = 90; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 91; + Referenda_submit_Call submit = 92; + Referenda_place_decision_deposit_Call place_decision_deposit = 93; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 94; + Referenda_cancel_Call cancel = 95; + Referenda_kill_Call kill = 96; + Referenda_nudge_referendum_Call nudge_referendum = 97; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 98; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 99; + Referenda_set_metadata_Call set_metadata = 100; + FellowshipCollective_add_member_Call add_member = 101; + FellowshipCollective_promote_member_Call promote_member = 102; + FellowshipCollective_demote_member_Call demote_member = 103; + FellowshipCollective_remove_member_Call remove_member = 104; + FellowshipCollective_vote_Call vote = 105; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 106; + FellowshipReferenda_submit_Call submit = 107; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 108; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 109; + FellowshipReferenda_cancel_Call cancel = 110; + FellowshipReferenda_kill_Call kill = 111; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 112; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 113; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 114; + FellowshipReferenda_set_metadata_Call set_metadata = 115; + Whitelist_whitelist_call_Call whitelist_call = 116; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 117; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 118; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 119; + Scheduler_schedule_Call schedule = 120; + Scheduler_cancel_Call cancel = 121; + Scheduler_schedule_named_Call schedule_named = 122; + Scheduler_cancel_named_Call cancel_named = 123; + Scheduler_schedule_after_Call schedule_after = 124; + Scheduler_schedule_named_after_Call schedule_named_after = 125; + Preimage_note_preimage_Call note_preimage = 126; + Preimage_unnote_preimage_Call unnote_preimage = 127; + Preimage_request_preimage_Call request_preimage = 128; + Preimage_unrequest_preimage_Call unrequest_preimage = 129; + Preimage_ensure_updated_Call ensure_updated = 130; + Identity_add_registrar_Call add_registrar = 131; + Identity_set_identity_Call set_identity = 132; + Identity_set_subs_Call set_subs = 133; + Identity_clear_identity_Call clear_identity = 134; + Identity_request_judgement_Call request_judgement = 135; + Identity_cancel_request_Call cancel_request = 136; + Identity_set_fee_Call set_fee = 137; + Identity_set_account_id_Call set_account_id = 138; + Identity_set_fields_Call set_fields = 139; + Identity_provide_judgement_Call provide_judgement = 140; + Identity_kill_identity_Call kill_identity = 141; + Identity_add_sub_Call add_sub = 142; + Identity_rename_sub_Call rename_sub = 143; + Identity_remove_sub_Call remove_sub = 144; + Identity_quit_sub_Call quit_sub = 145; + Proxy_proxy_Call proxy = 146; + Proxy_add_proxy_Call add_proxy = 147; + Proxy_remove_proxy_Call remove_proxy = 148; + Proxy_remove_proxies_Call remove_proxies = 149; + Proxy_create_pure_Call create_pure = 150; + Proxy_kill_pure_Call kill_pure = 151; + Proxy_announce_Call announce = 152; + Proxy_remove_announcement_Call remove_announcement = 153; + Proxy_reject_announcement_Call reject_announcement = 154; + Proxy_proxy_announced_Call proxy_announced = 155; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 156; + Multisig_as_multi_Call as_multi = 157; + Multisig_approve_as_multi_Call approve_as_multi = 158; + Multisig_cancel_as_multi_Call cancel_as_multi = 159; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 160; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 161; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 162; + ElectionProviderMultiPhase_submit_Call submit = 163; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 164; + Bounties_propose_bounty_Call propose_bounty = 165; + Bounties_approve_bounty_Call approve_bounty = 166; + Bounties_propose_curator_Call propose_curator = 167; + Bounties_unassign_curator_Call unassign_curator = 168; + Bounties_accept_curator_Call accept_curator = 169; + Bounties_award_bounty_Call award_bounty = 170; + Bounties_claim_bounty_Call claim_bounty = 171; + Bounties_close_bounty_Call close_bounty = 172; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 173; + ChildBounties_add_child_bounty_Call add_child_bounty = 174; + ChildBounties_propose_curator_Call propose_curator = 175; + ChildBounties_accept_curator_Call accept_curator = 176; + ChildBounties_unassign_curator_Call unassign_curator = 177; + ChildBounties_award_child_bounty_Call award_child_bounty = 178; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 179; + ChildBounties_close_child_bounty_Call close_child_bounty = 180; + NominationPools_join_Call join = 181; + NominationPools_bond_extra_Call bond_extra = 182; + NominationPools_claim_payout_Call claim_payout = 183; + NominationPools_unbond_Call unbond = 184; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 185; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 186; + NominationPools_create_Call create = 187; + NominationPools_create_with_pool_id_Call create_with_pool_id = 188; + NominationPools_nominate_Call nominate = 189; + NominationPools_set_state_Call set_state = 190; + NominationPools_set_metadata_Call set_metadata = 191; + NominationPools_set_configs_Call set_configs = 192; + NominationPools_update_roles_Call update_roles = 193; + NominationPools_chill_Call chill = 194; + NominationPools_bond_extra_other_Call bond_extra_other = 195; + NominationPools_set_claim_permission_Call set_claim_permission = 196; + NominationPools_claim_payout_other_Call claim_payout_other = 197; + NominationPools_set_commission_Call set_commission = 198; + NominationPools_set_commission_max_Call set_commission_max = 199; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 200; + NominationPools_claim_commission_Call claim_commission = 201; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 202; + Gear_upload_code_Call upload_code = 203; + Gear_upload_program_Call upload_program = 204; + Gear_create_program_Call create_program = 205; + Gear_send_message_Call send_message = 206; + Gear_send_reply_Call send_reply = 207; + Gear_claim_value_Call claim_value = 208; + Gear_run_Call run = 209; + Gear_set_execute_inherent_Call set_execute_inherent = 210; + StakingRewards_refill_Call refill = 211; + StakingRewards_force_refill_Call force_refill = 212; + StakingRewards_withdraw_Call withdraw = 213; + StakingRewards_align_supply_Call align_supply = 214; + GearVoucher_issue_Call issue = 215; + GearVoucher_call_Call call = 216; + GearVoucher_revoke_Call revoke = 217; + GearVoucher_update_Call update = 218; + GearVoucher_call_deprecated_Call call_deprecated = 219; + GearVoucher_decline_Call decline = 220; + } +} +message StakingRewards_ForceRefill_Call { + oneof from { + StakingRewards_Id Id = 1; + StakingRewards_Index Index = 2; + StakingRewards_Raw Raw = 3; + StakingRewards_Address32 Address32 = 4; + StakingRewards_Address20 Address20 = 5; + } + string value = 6; +} +message Grandpa_Prevote { + finality_grandpa_Equivocation = 1; +} +message BagsList_PutInFrontOf_Call { + oneof lighter { + BagsList_Id Id = 1; + BagsList_Index Index = 2; + BagsList_Raw Raw = 3; + BagsList_Address32 Address32 = 4; + BagsList_Address20 Address20 = 5; + } +} +message Treasury_Raw { + repeated uint32 = 1; + +} +message Utility_SmallTipper { +} +message Identity_FeePaid { + string = 1; +} +message Babe_Consensus { + repeated uint32 = 1; + + repeated uint32 = 2; + +} +message ConvictionVoting_Unlock_Call { + uint32 class = 1; + oneof target { + ConvictionVoting_Id Id = 2; + ConvictionVoting_Index Index = 3; + ConvictionVoting_Raw Raw = 4; + ConvictionVoting_Address32 Address32 = 5; + ConvictionVoting_Address20 Address20 = 6; + } +} +message FellowshipReferenda_Fellowship2Dan { +} +message Multisig_ApproveAsMulti_Call { + uint32 threshold = 1; + repeated sp_core_crypto_AccountId32 other_signatories = 2; + + optional pallet_multisig_Timepoint maybe_timepoint = 3; + repeated uint32 call_hash = 4; + + sp_weights_weight_v2_Weight max_weight = 5; +} +message BagsList_Id { + sp_core_crypto_AccountId32 = 1; +} +message ConvictionVoting_Address32 { + repeated uint32 = 1; + +} +message ElectionProviderMultiPhase_SetEmergencyElectionResult_Call { + repeated Tuple_sp_core_crypto_AccountId32sp_npos_elections_Support supports = 1; + +} +message Balances_ForceUnreserve_Call { + oneof who { + Balances_Id Id = 1; + Balances_Index Index = 2; + Balances_Raw Raw = 3; + Balances_Address32 Address32 = 4; + Balances_Address20 Address20 = 5; + } + string amount = 6; +} +message Referenda_NudgeReferendum_Call { + uint32 index = 1; +} +message Scheduler_ScheduleNamed_Call { + repeated uint32 id = 1; + + uint32 when = 2; + optional Tuple_uint32uint32 maybe_periodic = 3; + uint32 priority = 4; + oneof call { + System_remark_Call remark = 5; + System_set_heap_pages_Call set_heap_pages = 6; + System_set_code_Call set_code = 7; + System_set_code_without_checks_Call set_code_without_checks = 8; + System_set_storage_Call set_storage = 9; + System_kill_storage_Call kill_storage = 10; + System_kill_prefix_Call kill_prefix = 11; + System_remark_with_event_Call remark_with_event = 12; + Timestamp_set_Call set = 13; + Babe_report_equivocation_Call report_equivocation = 14; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 15; + Babe_plan_config_change_Call plan_config_change = 16; + Grandpa_report_equivocation_Call report_equivocation = 17; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 18; + Grandpa_note_stalled_Call note_stalled = 19; + Balances_transfer_allow_death_Call transfer_allow_death = 20; + Balances_force_transfer_Call force_transfer = 21; + Balances_transfer_keep_alive_Call transfer_keep_alive = 22; + Balances_transfer_all_Call transfer_all = 23; + Balances_force_unreserve_Call force_unreserve = 24; + Balances_upgrade_accounts_Call upgrade_accounts = 25; + Balances_force_set_balance_Call force_set_balance = 26; + Vesting_vest_Call vest = 27; + Vesting_vest_other_Call vest_other = 28; + Vesting_vested_transfer_Call vested_transfer = 29; + Vesting_force_vested_transfer_Call force_vested_transfer = 30; + Vesting_merge_schedules_Call merge_schedules = 31; + BagsList_rebag_Call rebag = 32; + BagsList_put_in_front_of_Call put_in_front_of = 33; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 34; + ImOnline_heartbeat_Call heartbeat = 35; + Staking_bond_Call bond = 36; + Staking_bond_extra_Call bond_extra = 37; + Staking_unbond_Call unbond = 38; + Staking_withdraw_unbonded_Call withdraw_unbonded = 39; + Staking_validate_Call validate = 40; + Staking_nominate_Call nominate = 41; + Staking_chill_Call chill = 42; + Staking_set_payee_Call set_payee = 43; + Staking_set_controller_Call set_controller = 44; + Staking_set_validator_count_Call set_validator_count = 45; + Staking_increase_validator_count_Call increase_validator_count = 46; + Staking_scale_validator_count_Call scale_validator_count = 47; + Staking_force_no_eras_Call force_no_eras = 48; + Staking_force_new_era_Call force_new_era = 49; + Staking_set_invulnerables_Call set_invulnerables = 50; + Staking_force_unstake_Call force_unstake = 51; + Staking_force_new_era_always_Call force_new_era_always = 52; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 53; + Staking_payout_stakers_Call payout_stakers = 54; + Staking_rebond_Call rebond = 55; + Staking_reap_stash_Call reap_stash = 56; + Staking_kick_Call kick = 57; + Staking_set_staking_configs_Call set_staking_configs = 58; + Staking_chill_other_Call chill_other = 59; + Staking_force_apply_min_commission_Call force_apply_min_commission = 60; + Staking_set_min_commission_Call set_min_commission = 61; + Session_set_keys_Call set_keys = 62; + Session_purge_keys_Call purge_keys = 63; + Treasury_propose_spend_Call propose_spend = 64; + Treasury_reject_proposal_Call reject_proposal = 65; + Treasury_approve_proposal_Call approve_proposal = 66; + Treasury_spend_local_Call spend_local = 67; + Treasury_remove_approval_Call remove_approval = 68; + Treasury_spend_Call spend = 69; + Treasury_payout_Call payout = 70; + Treasury_check_status_Call check_status = 71; + Treasury_void_spend_Call void_spend = 72; + Utility_batch_Call batch = 73; + Utility_as_derivative_Call as_derivative = 74; + Utility_batch_all_Call batch_all = 75; + Utility_dispatch_as_Call dispatch_as = 76; + Utility_force_batch_Call force_batch = 77; + Utility_with_weight_Call with_weight = 78; + ConvictionVoting_vote_Call vote = 79; + ConvictionVoting_delegate_Call delegate = 80; + ConvictionVoting_undelegate_Call undelegate = 81; + ConvictionVoting_unlock_Call unlock = 82; + ConvictionVoting_remove_vote_Call remove_vote = 83; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 84; + Referenda_submit_Call submit = 85; + Referenda_place_decision_deposit_Call place_decision_deposit = 86; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 87; + Referenda_cancel_Call cancel = 88; + Referenda_kill_Call kill = 89; + Referenda_nudge_referendum_Call nudge_referendum = 90; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 91; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 92; + Referenda_set_metadata_Call set_metadata = 93; + FellowshipCollective_add_member_Call add_member = 94; + FellowshipCollective_promote_member_Call promote_member = 95; + FellowshipCollective_demote_member_Call demote_member = 96; + FellowshipCollective_remove_member_Call remove_member = 97; + FellowshipCollective_vote_Call vote = 98; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 99; + FellowshipReferenda_submit_Call submit = 100; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 101; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 102; + FellowshipReferenda_cancel_Call cancel = 103; + FellowshipReferenda_kill_Call kill = 104; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 105; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 106; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 107; + FellowshipReferenda_set_metadata_Call set_metadata = 108; + Whitelist_whitelist_call_Call whitelist_call = 109; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 110; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 111; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 112; + Scheduler_schedule_Call schedule = 113; + Scheduler_cancel_Call cancel = 114; + Scheduler_schedule_named_Call schedule_named = 115; + Scheduler_cancel_named_Call cancel_named = 116; + Scheduler_schedule_after_Call schedule_after = 117; + Scheduler_schedule_named_after_Call schedule_named_after = 118; + Preimage_note_preimage_Call note_preimage = 119; + Preimage_unnote_preimage_Call unnote_preimage = 120; + Preimage_request_preimage_Call request_preimage = 121; + Preimage_unrequest_preimage_Call unrequest_preimage = 122; + Preimage_ensure_updated_Call ensure_updated = 123; + Identity_add_registrar_Call add_registrar = 124; + Identity_set_identity_Call set_identity = 125; + Identity_set_subs_Call set_subs = 126; + Identity_clear_identity_Call clear_identity = 127; + Identity_request_judgement_Call request_judgement = 128; + Identity_cancel_request_Call cancel_request = 129; + Identity_set_fee_Call set_fee = 130; + Identity_set_account_id_Call set_account_id = 131; + Identity_set_fields_Call set_fields = 132; + Identity_provide_judgement_Call provide_judgement = 133; + Identity_kill_identity_Call kill_identity = 134; + Identity_add_sub_Call add_sub = 135; + Identity_rename_sub_Call rename_sub = 136; + Identity_remove_sub_Call remove_sub = 137; + Identity_quit_sub_Call quit_sub = 138; + Proxy_proxy_Call proxy = 139; + Proxy_add_proxy_Call add_proxy = 140; + Proxy_remove_proxy_Call remove_proxy = 141; + Proxy_remove_proxies_Call remove_proxies = 142; + Proxy_create_pure_Call create_pure = 143; + Proxy_kill_pure_Call kill_pure = 144; + Proxy_announce_Call announce = 145; + Proxy_remove_announcement_Call remove_announcement = 146; + Proxy_reject_announcement_Call reject_announcement = 147; + Proxy_proxy_announced_Call proxy_announced = 148; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 149; + Multisig_as_multi_Call as_multi = 150; + Multisig_approve_as_multi_Call approve_as_multi = 151; + Multisig_cancel_as_multi_Call cancel_as_multi = 152; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 153; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 154; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 155; + ElectionProviderMultiPhase_submit_Call submit = 156; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 157; + Bounties_propose_bounty_Call propose_bounty = 158; + Bounties_approve_bounty_Call approve_bounty = 159; + Bounties_propose_curator_Call propose_curator = 160; + Bounties_unassign_curator_Call unassign_curator = 161; + Bounties_accept_curator_Call accept_curator = 162; + Bounties_award_bounty_Call award_bounty = 163; + Bounties_claim_bounty_Call claim_bounty = 164; + Bounties_close_bounty_Call close_bounty = 165; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 166; + ChildBounties_add_child_bounty_Call add_child_bounty = 167; + ChildBounties_propose_curator_Call propose_curator = 168; + ChildBounties_accept_curator_Call accept_curator = 169; + ChildBounties_unassign_curator_Call unassign_curator = 170; + ChildBounties_award_child_bounty_Call award_child_bounty = 171; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 172; + ChildBounties_close_child_bounty_Call close_child_bounty = 173; + NominationPools_join_Call join = 174; + NominationPools_bond_extra_Call bond_extra = 175; + NominationPools_claim_payout_Call claim_payout = 176; + NominationPools_unbond_Call unbond = 177; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 178; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 179; + NominationPools_create_Call create = 180; + NominationPools_create_with_pool_id_Call create_with_pool_id = 181; + NominationPools_nominate_Call nominate = 182; + NominationPools_set_state_Call set_state = 183; + NominationPools_set_metadata_Call set_metadata = 184; + NominationPools_set_configs_Call set_configs = 185; + NominationPools_update_roles_Call update_roles = 186; + NominationPools_chill_Call chill = 187; + NominationPools_bond_extra_other_Call bond_extra_other = 188; + NominationPools_set_claim_permission_Call set_claim_permission = 189; + NominationPools_claim_payout_other_Call claim_payout_other = 190; + NominationPools_set_commission_Call set_commission = 191; + NominationPools_set_commission_max_Call set_commission_max = 192; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 193; + NominationPools_claim_commission_Call claim_commission = 194; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 195; + Gear_upload_code_Call upload_code = 196; + Gear_upload_program_Call upload_program = 197; + Gear_create_program_Call create_program = 198; + Gear_send_message_Call send_message = 199; + Gear_send_reply_Call send_reply = 200; + Gear_claim_value_Call claim_value = 201; + Gear_run_Call run = 202; + Gear_set_execute_inherent_Call set_execute_inherent = 203; + StakingRewards_refill_Call refill = 204; + StakingRewards_force_refill_Call force_refill = 205; + StakingRewards_withdraw_Call withdraw = 206; + StakingRewards_align_supply_Call align_supply = 207; + GearVoucher_issue_Call issue = 208; + GearVoucher_call_Call call = 209; + GearVoucher_revoke_Call revoke = 210; + GearVoucher_update_Call update = 211; + GearVoucher_call_deprecated_Call call_deprecated = 212; + GearVoucher_decline_Call decline = 213; + } +} +message pallet_election_provider_multi_phase_RawSolution { + vara_runtime_NposSolution16 solution = 1; + sp_npos_elections_ElectionScore score = 2; + uint32 round = 3; +} +message primitive_types_H256 { + repeated uint32 parent_hash = 1; + +} +message Babe_PrimaryAndSecondaryVRFSlots { +} +message ChildBounties_Address20 { + repeated uint32 = 1; + +} +message NominationPools_SetCommission_Call { + uint32 pool_id = 1; + optional Tuple_sp_arithmetic_per_things_Perbillsp_core_crypto_AccountId32 new_commission = 2; +} +message Bounties_AwardBounty_Call { + Compact_uint32 bounty_id = 1; + oneof beneficiary { + Bounties_Id Id = 2; + Bounties_Index Index = 3; + Bounties_Raw Raw = 4; + Bounties_Address32 Address32 = 5; + Bounties_Address20 Address20 = 6; + } +} +message ChildBounties_ClaimChildBounty_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_uint32 child_bounty_id = 2; +} +message finality_grandpa_Equivocation { + uint64 round_number = 1; + sp_consensus_grandpa_app_Public identity = 2; + Tuple_finality_grandpa_Prevotesp_consensus_grandpa_app_Signature = 3; + Tuple_finality_grandpa_Prevotesp_consensus_grandpa_app_Signature = 4; +} +message Compact_sp_arithmetic_per_things_Perbill { + sp_arithmetic_per_things_Perbill value = 1; +} +message Staking_Noop { +} +message Utility_StakingAdmin { +} +message Identity_ShaThree256 { + repeated uint32 = 1; + +} +message vara_runtime_RuntimeCall { + oneof calls { + System_remark_Call remark = 1; + System_set_heap_pages_Call set_heap_pages = 2; + System_set_code_Call set_code = 3; + System_set_code_without_checks_Call set_code_without_checks = 4; + System_set_storage_Call set_storage = 5; + System_kill_storage_Call kill_storage = 6; + System_kill_prefix_Call kill_prefix = 7; + System_remark_with_event_Call remark_with_event = 8; + Timestamp_set_Call set = 9; + Babe_report_equivocation_Call report_equivocation = 10; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 11; + Babe_plan_config_change_Call plan_config_change = 12; + Grandpa_report_equivocation_Call report_equivocation = 13; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Grandpa_note_stalled_Call note_stalled = 15; + Balances_transfer_allow_death_Call transfer_allow_death = 16; + Balances_force_transfer_Call force_transfer = 17; + Balances_transfer_keep_alive_Call transfer_keep_alive = 18; + Balances_transfer_all_Call transfer_all = 19; + Balances_force_unreserve_Call force_unreserve = 20; + Balances_upgrade_accounts_Call upgrade_accounts = 21; + Balances_force_set_balance_Call force_set_balance = 22; + Vesting_vest_Call vest = 23; + Vesting_vest_other_Call vest_other = 24; + Vesting_vested_transfer_Call vested_transfer = 25; + Vesting_force_vested_transfer_Call force_vested_transfer = 26; + Vesting_merge_schedules_Call merge_schedules = 27; + BagsList_rebag_Call rebag = 28; + BagsList_put_in_front_of_Call put_in_front_of = 29; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 30; + ImOnline_heartbeat_Call heartbeat = 31; + Staking_bond_Call bond = 32; + Staking_bond_extra_Call bond_extra = 33; + Staking_unbond_Call unbond = 34; + Staking_withdraw_unbonded_Call withdraw_unbonded = 35; + Staking_validate_Call validate = 36; + Staking_nominate_Call nominate = 37; + Staking_chill_Call chill = 38; + Staking_set_payee_Call set_payee = 39; + Staking_set_controller_Call set_controller = 40; + Staking_set_validator_count_Call set_validator_count = 41; + Staking_increase_validator_count_Call increase_validator_count = 42; + Staking_scale_validator_count_Call scale_validator_count = 43; + Staking_force_no_eras_Call force_no_eras = 44; + Staking_force_new_era_Call force_new_era = 45; + Staking_set_invulnerables_Call set_invulnerables = 46; + Staking_force_unstake_Call force_unstake = 47; + Staking_force_new_era_always_Call force_new_era_always = 48; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 49; + Staking_payout_stakers_Call payout_stakers = 50; + Staking_rebond_Call rebond = 51; + Staking_reap_stash_Call reap_stash = 52; + Staking_kick_Call kick = 53; + Staking_set_staking_configs_Call set_staking_configs = 54; + Staking_chill_other_Call chill_other = 55; + Staking_force_apply_min_commission_Call force_apply_min_commission = 56; + Staking_set_min_commission_Call set_min_commission = 57; + Session_set_keys_Call set_keys = 58; + Session_purge_keys_Call purge_keys = 59; + Treasury_propose_spend_Call propose_spend = 60; + Treasury_reject_proposal_Call reject_proposal = 61; + Treasury_approve_proposal_Call approve_proposal = 62; + Treasury_spend_local_Call spend_local = 63; + Treasury_remove_approval_Call remove_approval = 64; + Treasury_spend_Call spend = 65; + Treasury_payout_Call payout = 66; + Treasury_check_status_Call check_status = 67; + Treasury_void_spend_Call void_spend = 68; + Utility_batch_Call batch = 69; + Utility_as_derivative_Call as_derivative = 70; + Utility_batch_all_Call batch_all = 71; + Utility_dispatch_as_Call dispatch_as = 72; + Utility_force_batch_Call force_batch = 73; + Utility_with_weight_Call with_weight = 74; + ConvictionVoting_vote_Call vote = 75; + ConvictionVoting_delegate_Call delegate = 76; + ConvictionVoting_undelegate_Call undelegate = 77; + ConvictionVoting_unlock_Call unlock = 78; + ConvictionVoting_remove_vote_Call remove_vote = 79; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 80; + Referenda_submit_Call submit = 81; + Referenda_place_decision_deposit_Call place_decision_deposit = 82; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 83; + Referenda_cancel_Call cancel = 84; + Referenda_kill_Call kill = 85; + Referenda_nudge_referendum_Call nudge_referendum = 86; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 87; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 88; + Referenda_set_metadata_Call set_metadata = 89; + FellowshipCollective_add_member_Call add_member = 90; + FellowshipCollective_promote_member_Call promote_member = 91; + FellowshipCollective_demote_member_Call demote_member = 92; + FellowshipCollective_remove_member_Call remove_member = 93; + FellowshipCollective_vote_Call vote = 94; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 95; + FellowshipReferenda_submit_Call submit = 96; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 97; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 98; + FellowshipReferenda_cancel_Call cancel = 99; + FellowshipReferenda_kill_Call kill = 100; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 101; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 102; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 103; + FellowshipReferenda_set_metadata_Call set_metadata = 104; + Whitelist_whitelist_call_Call whitelist_call = 105; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 106; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 107; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 108; + Scheduler_schedule_Call schedule = 109; + Scheduler_cancel_Call cancel = 110; + Scheduler_schedule_named_Call schedule_named = 111; + Scheduler_cancel_named_Call cancel_named = 112; + Scheduler_schedule_after_Call schedule_after = 113; + Scheduler_schedule_named_after_Call schedule_named_after = 114; + Preimage_note_preimage_Call note_preimage = 115; + Preimage_unnote_preimage_Call unnote_preimage = 116; + Preimage_request_preimage_Call request_preimage = 117; + Preimage_unrequest_preimage_Call unrequest_preimage = 118; + Preimage_ensure_updated_Call ensure_updated = 119; + Identity_add_registrar_Call add_registrar = 120; + Identity_set_identity_Call set_identity = 121; + Identity_set_subs_Call set_subs = 122; + Identity_clear_identity_Call clear_identity = 123; + Identity_request_judgement_Call request_judgement = 124; + Identity_cancel_request_Call cancel_request = 125; + Identity_set_fee_Call set_fee = 126; + Identity_set_account_id_Call set_account_id = 127; + Identity_set_fields_Call set_fields = 128; + Identity_provide_judgement_Call provide_judgement = 129; + Identity_kill_identity_Call kill_identity = 130; + Identity_add_sub_Call add_sub = 131; + Identity_rename_sub_Call rename_sub = 132; + Identity_remove_sub_Call remove_sub = 133; + Identity_quit_sub_Call quit_sub = 134; + Proxy_proxy_Call proxy = 135; + Proxy_add_proxy_Call add_proxy = 136; + Proxy_remove_proxy_Call remove_proxy = 137; + Proxy_remove_proxies_Call remove_proxies = 138; + Proxy_create_pure_Call create_pure = 139; + Proxy_kill_pure_Call kill_pure = 140; + Proxy_announce_Call announce = 141; + Proxy_remove_announcement_Call remove_announcement = 142; + Proxy_reject_announcement_Call reject_announcement = 143; + Proxy_proxy_announced_Call proxy_announced = 144; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 145; + Multisig_as_multi_Call as_multi = 146; + Multisig_approve_as_multi_Call approve_as_multi = 147; + Multisig_cancel_as_multi_Call cancel_as_multi = 148; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 149; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 150; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 151; + ElectionProviderMultiPhase_submit_Call submit = 152; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 153; + Bounties_propose_bounty_Call propose_bounty = 154; + Bounties_approve_bounty_Call approve_bounty = 155; + Bounties_propose_curator_Call propose_curator = 156; + Bounties_unassign_curator_Call unassign_curator = 157; + Bounties_accept_curator_Call accept_curator = 158; + Bounties_award_bounty_Call award_bounty = 159; + Bounties_claim_bounty_Call claim_bounty = 160; + Bounties_close_bounty_Call close_bounty = 161; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 162; + ChildBounties_add_child_bounty_Call add_child_bounty = 163; + ChildBounties_propose_curator_Call propose_curator = 164; + ChildBounties_accept_curator_Call accept_curator = 165; + ChildBounties_unassign_curator_Call unassign_curator = 166; + ChildBounties_award_child_bounty_Call award_child_bounty = 167; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 168; + ChildBounties_close_child_bounty_Call close_child_bounty = 169; + NominationPools_join_Call join = 170; + NominationPools_bond_extra_Call bond_extra = 171; + NominationPools_claim_payout_Call claim_payout = 172; + NominationPools_unbond_Call unbond = 173; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 174; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 175; + NominationPools_create_Call create = 176; + NominationPools_create_with_pool_id_Call create_with_pool_id = 177; + NominationPools_nominate_Call nominate = 178; + NominationPools_set_state_Call set_state = 179; + NominationPools_set_metadata_Call set_metadata = 180; + NominationPools_set_configs_Call set_configs = 181; + NominationPools_update_roles_Call update_roles = 182; + NominationPools_chill_Call chill = 183; + NominationPools_bond_extra_other_Call bond_extra_other = 184; + NominationPools_set_claim_permission_Call set_claim_permission = 185; + NominationPools_claim_payout_other_Call claim_payout_other = 186; + NominationPools_set_commission_Call set_commission = 187; + NominationPools_set_commission_max_Call set_commission_max = 188; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 189; + NominationPools_claim_commission_Call claim_commission = 190; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 191; + Gear_upload_code_Call upload_code = 192; + Gear_upload_program_Call upload_program = 193; + Gear_create_program_Call create_program = 194; + Gear_send_message_Call send_message = 195; + Gear_send_reply_Call send_reply = 196; + Gear_claim_value_Call claim_value = 197; + Gear_run_Call run = 198; + Gear_set_execute_inherent_Call set_execute_inherent = 199; + StakingRewards_refill_Call refill = 200; + StakingRewards_force_refill_Call force_refill = 201; + StakingRewards_withdraw_Call withdraw = 202; + StakingRewards_align_supply_Call align_supply = 203; + GearVoucher_issue_Call issue = 204; + GearVoucher_call_Call call = 205; + GearVoucher_revoke_Call revoke = 206; + GearVoucher_update_Call update = 207; + GearVoucher_call_deprecated_Call call_deprecated = 208; + GearVoucher_decline_Call decline = 209; + } +} +message Bounties_Address20 { + repeated uint32 = 1; + +} +message Gear_UploadProgram_Call { + repeated uint32 code = 1; + + repeated uint32 salt = 2; + + repeated uint32 init_payload = 3; + + uint64 gas_limit = 4; + string value = 5; + bool keep_alive = 6; +} +message Proxy_Staking { +} +message Staking_Bond_Call { + Compact_string value = 1; + oneof payee { + Staking_Staked Staked = 2; + Staking_Stash Stash = 3; + Staking_Controller Controller = 4; + Staking_Account Account = 5; + Staking_None None = 6; + } +} +message Scheduler_ScheduleNamedAfter_Call { + repeated uint32 id = 1; + + uint32 after = 2; + optional Tuple_uint32uint32 maybe_periodic = 3; + uint32 priority = 4; + oneof call { + System_remark_Call remark = 5; + System_set_heap_pages_Call set_heap_pages = 6; + System_set_code_Call set_code = 7; + System_set_code_without_checks_Call set_code_without_checks = 8; + System_set_storage_Call set_storage = 9; + System_kill_storage_Call kill_storage = 10; + System_kill_prefix_Call kill_prefix = 11; + System_remark_with_event_Call remark_with_event = 12; + Timestamp_set_Call set = 13; + Babe_report_equivocation_Call report_equivocation = 14; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 15; + Babe_plan_config_change_Call plan_config_change = 16; + Grandpa_report_equivocation_Call report_equivocation = 17; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 18; + Grandpa_note_stalled_Call note_stalled = 19; + Balances_transfer_allow_death_Call transfer_allow_death = 20; + Balances_force_transfer_Call force_transfer = 21; + Balances_transfer_keep_alive_Call transfer_keep_alive = 22; + Balances_transfer_all_Call transfer_all = 23; + Balances_force_unreserve_Call force_unreserve = 24; + Balances_upgrade_accounts_Call upgrade_accounts = 25; + Balances_force_set_balance_Call force_set_balance = 26; + Vesting_vest_Call vest = 27; + Vesting_vest_other_Call vest_other = 28; + Vesting_vested_transfer_Call vested_transfer = 29; + Vesting_force_vested_transfer_Call force_vested_transfer = 30; + Vesting_merge_schedules_Call merge_schedules = 31; + BagsList_rebag_Call rebag = 32; + BagsList_put_in_front_of_Call put_in_front_of = 33; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 34; + ImOnline_heartbeat_Call heartbeat = 35; + Staking_bond_Call bond = 36; + Staking_bond_extra_Call bond_extra = 37; + Staking_unbond_Call unbond = 38; + Staking_withdraw_unbonded_Call withdraw_unbonded = 39; + Staking_validate_Call validate = 40; + Staking_nominate_Call nominate = 41; + Staking_chill_Call chill = 42; + Staking_set_payee_Call set_payee = 43; + Staking_set_controller_Call set_controller = 44; + Staking_set_validator_count_Call set_validator_count = 45; + Staking_increase_validator_count_Call increase_validator_count = 46; + Staking_scale_validator_count_Call scale_validator_count = 47; + Staking_force_no_eras_Call force_no_eras = 48; + Staking_force_new_era_Call force_new_era = 49; + Staking_set_invulnerables_Call set_invulnerables = 50; + Staking_force_unstake_Call force_unstake = 51; + Staking_force_new_era_always_Call force_new_era_always = 52; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 53; + Staking_payout_stakers_Call payout_stakers = 54; + Staking_rebond_Call rebond = 55; + Staking_reap_stash_Call reap_stash = 56; + Staking_kick_Call kick = 57; + Staking_set_staking_configs_Call set_staking_configs = 58; + Staking_chill_other_Call chill_other = 59; + Staking_force_apply_min_commission_Call force_apply_min_commission = 60; + Staking_set_min_commission_Call set_min_commission = 61; + Session_set_keys_Call set_keys = 62; + Session_purge_keys_Call purge_keys = 63; + Treasury_propose_spend_Call propose_spend = 64; + Treasury_reject_proposal_Call reject_proposal = 65; + Treasury_approve_proposal_Call approve_proposal = 66; + Treasury_spend_local_Call spend_local = 67; + Treasury_remove_approval_Call remove_approval = 68; + Treasury_spend_Call spend = 69; + Treasury_payout_Call payout = 70; + Treasury_check_status_Call check_status = 71; + Treasury_void_spend_Call void_spend = 72; + Utility_batch_Call batch = 73; + Utility_as_derivative_Call as_derivative = 74; + Utility_batch_all_Call batch_all = 75; + Utility_dispatch_as_Call dispatch_as = 76; + Utility_force_batch_Call force_batch = 77; + Utility_with_weight_Call with_weight = 78; + ConvictionVoting_vote_Call vote = 79; + ConvictionVoting_delegate_Call delegate = 80; + ConvictionVoting_undelegate_Call undelegate = 81; + ConvictionVoting_unlock_Call unlock = 82; + ConvictionVoting_remove_vote_Call remove_vote = 83; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 84; + Referenda_submit_Call submit = 85; + Referenda_place_decision_deposit_Call place_decision_deposit = 86; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 87; + Referenda_cancel_Call cancel = 88; + Referenda_kill_Call kill = 89; + Referenda_nudge_referendum_Call nudge_referendum = 90; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 91; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 92; + Referenda_set_metadata_Call set_metadata = 93; + FellowshipCollective_add_member_Call add_member = 94; + FellowshipCollective_promote_member_Call promote_member = 95; + FellowshipCollective_demote_member_Call demote_member = 96; + FellowshipCollective_remove_member_Call remove_member = 97; + FellowshipCollective_vote_Call vote = 98; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 99; + FellowshipReferenda_submit_Call submit = 100; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 101; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 102; + FellowshipReferenda_cancel_Call cancel = 103; + FellowshipReferenda_kill_Call kill = 104; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 105; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 106; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 107; + FellowshipReferenda_set_metadata_Call set_metadata = 108; + Whitelist_whitelist_call_Call whitelist_call = 109; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 110; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 111; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 112; + Scheduler_schedule_Call schedule = 113; + Scheduler_cancel_Call cancel = 114; + Scheduler_schedule_named_Call schedule_named = 115; + Scheduler_cancel_named_Call cancel_named = 116; + Scheduler_schedule_after_Call schedule_after = 117; + Scheduler_schedule_named_after_Call schedule_named_after = 118; + Preimage_note_preimage_Call note_preimage = 119; + Preimage_unnote_preimage_Call unnote_preimage = 120; + Preimage_request_preimage_Call request_preimage = 121; + Preimage_unrequest_preimage_Call unrequest_preimage = 122; + Preimage_ensure_updated_Call ensure_updated = 123; + Identity_add_registrar_Call add_registrar = 124; + Identity_set_identity_Call set_identity = 125; + Identity_set_subs_Call set_subs = 126; + Identity_clear_identity_Call clear_identity = 127; + Identity_request_judgement_Call request_judgement = 128; + Identity_cancel_request_Call cancel_request = 129; + Identity_set_fee_Call set_fee = 130; + Identity_set_account_id_Call set_account_id = 131; + Identity_set_fields_Call set_fields = 132; + Identity_provide_judgement_Call provide_judgement = 133; + Identity_kill_identity_Call kill_identity = 134; + Identity_add_sub_Call add_sub = 135; + Identity_rename_sub_Call rename_sub = 136; + Identity_remove_sub_Call remove_sub = 137; + Identity_quit_sub_Call quit_sub = 138; + Proxy_proxy_Call proxy = 139; + Proxy_add_proxy_Call add_proxy = 140; + Proxy_remove_proxy_Call remove_proxy = 141; + Proxy_remove_proxies_Call remove_proxies = 142; + Proxy_create_pure_Call create_pure = 143; + Proxy_kill_pure_Call kill_pure = 144; + Proxy_announce_Call announce = 145; + Proxy_remove_announcement_Call remove_announcement = 146; + Proxy_reject_announcement_Call reject_announcement = 147; + Proxy_proxy_announced_Call proxy_announced = 148; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 149; + Multisig_as_multi_Call as_multi = 150; + Multisig_approve_as_multi_Call approve_as_multi = 151; + Multisig_cancel_as_multi_Call cancel_as_multi = 152; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 153; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 154; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 155; + ElectionProviderMultiPhase_submit_Call submit = 156; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 157; + Bounties_propose_bounty_Call propose_bounty = 158; + Bounties_approve_bounty_Call approve_bounty = 159; + Bounties_propose_curator_Call propose_curator = 160; + Bounties_unassign_curator_Call unassign_curator = 161; + Bounties_accept_curator_Call accept_curator = 162; + Bounties_award_bounty_Call award_bounty = 163; + Bounties_claim_bounty_Call claim_bounty = 164; + Bounties_close_bounty_Call close_bounty = 165; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 166; + ChildBounties_add_child_bounty_Call add_child_bounty = 167; + ChildBounties_propose_curator_Call propose_curator = 168; + ChildBounties_accept_curator_Call accept_curator = 169; + ChildBounties_unassign_curator_Call unassign_curator = 170; + ChildBounties_award_child_bounty_Call award_child_bounty = 171; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 172; + ChildBounties_close_child_bounty_Call close_child_bounty = 173; + NominationPools_join_Call join = 174; + NominationPools_bond_extra_Call bond_extra = 175; + NominationPools_claim_payout_Call claim_payout = 176; + NominationPools_unbond_Call unbond = 177; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 178; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 179; + NominationPools_create_Call create = 180; + NominationPools_create_with_pool_id_Call create_with_pool_id = 181; + NominationPools_nominate_Call nominate = 182; + NominationPools_set_state_Call set_state = 183; + NominationPools_set_metadata_Call set_metadata = 184; + NominationPools_set_configs_Call set_configs = 185; + NominationPools_update_roles_Call update_roles = 186; + NominationPools_chill_Call chill = 187; + NominationPools_bond_extra_other_Call bond_extra_other = 188; + NominationPools_set_claim_permission_Call set_claim_permission = 189; + NominationPools_claim_payout_other_Call claim_payout_other = 190; + NominationPools_set_commission_Call set_commission = 191; + NominationPools_set_commission_max_Call set_commission_max = 192; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 193; + NominationPools_claim_commission_Call claim_commission = 194; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 195; + Gear_upload_code_Call upload_code = 196; + Gear_upload_program_Call upload_program = 197; + Gear_create_program_Call create_program = 198; + Gear_send_message_Call send_message = 199; + Gear_send_reply_Call send_reply = 200; + Gear_claim_value_Call claim_value = 201; + Gear_run_Call run = 202; + Gear_set_execute_inherent_Call set_execute_inherent = 203; + StakingRewards_refill_Call refill = 204; + StakingRewards_force_refill_Call force_refill = 205; + StakingRewards_withdraw_Call withdraw = 206; + StakingRewards_align_supply_Call align_supply = 207; + GearVoucher_issue_Call issue = 208; + GearVoucher_call_Call call = 209; + GearVoucher_revoke_Call revoke = 210; + GearVoucher_update_Call update = 211; + GearVoucher_call_deprecated_Call call_deprecated = 212; + GearVoucher_decline_Call decline = 213; + } +} +message Identity_BlakeTwo256 { + repeated uint32 = 1; + +} +message Utility_Fellowship5Dan { +} +message FellowshipReferenda_Fellowship9Dan { +} +message Identity_Raw6 { + repeated uint32 = 1; + +} +message Identity_Raw27 { + repeated uint32 = 1; + +} +message Identity_SetFields_Call { + Compact_uint32 index = 1; + pallet_identity_types_BitFlags fields = 2; +} +message Referenda_FellowshipAdmin { +} +message FellowshipReferenda_FellowshipInitiates { +} +message Whitelist_DispatchWhitelistedCall_Call { + primitive_types_H256 call_hash = 1; + uint32 call_encoded_len = 2; + sp_weights_weight_v2_Weight call_weight_witness = 3; +} +message Proxy_Governance { +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes16_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes16_listCompact_uint32 = 1; +} +message Babe_PreRuntime { + repeated uint32 = 1; + + repeated uint32 = 2; + +} +message Vesting_Address20 { + repeated uint32 = 1; + +} +message Treasury_RejectProposal_Call { + Compact_uint32 proposal_id = 1; +} +message Utility_FellowshipMasters { +} +message FellowshipReferenda_Root { +} +message NominationPools_PermissionlessWithdraw { +} +message sp_core_sr25519_Public { + repeated uint32 offender = 1; + +} +message Tuple_Null { + Tuple_Null = 1; +} +message Referenda_None { +} +message sp_npos_elections_ElectionScore { + string minimal_stake = 1; + string sum_stake = 2; + string sum_stake_squared = 3; +} +message FellowshipCollective_Index { + Compact_Tuple_Null = 1; +} +message NominationPools_Rewards { +} +message NominationPools_Destroying { +} +message sp_consensus_slots_EquivocationProof { + sp_consensus_babe_app_Public offender = 1; + sp_consensus_slots_Slot slot = 2; + sp_runtime_generic_header_Header first_header = 3; + sp_runtime_generic_header_Header second_header = 4; +} +message pallet_im_online_Heartbeat { + uint32 block_number = 1; + uint32 session_index = 2; + uint32 authority_index = 3; + uint32 validators_len = 4; +} +message Staking_ForceNewEraAlways_Call { +} +message Utility_Fellowship4Dan { +} +message Referenda_SmallTipper { +} +message Staking_Nominate_Call { + repeated sp_runtime_multiaddress_MultiAddress targets = 1; + +} +message Treasury_VoidSpend_Call { + uint32 index = 1; +} +message Identity_Raw12 { + repeated uint32 = 1; + +} +message Identity_LowQuality { +} +message Proxy_Announce_Call { + oneof real { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + primitive_types_H256 call_hash = 6; +} +message Treasury_Address20 { + repeated uint32 = 1; + +} +message FellowshipReferenda_ReferendumCanceller { +} +message Preimage_RequestPreimage_Call { + primitive_types_H256 hash = 1; +} +message Identity_Id { + sp_core_crypto_AccountId32 = 1; +} +message Identity_Address20 { + repeated uint32 = 1; + +} +message StakingRewards_Address20 { + repeated uint32 = 1; + +} +message Vesting_MergeSchedules_Call { + uint32 schedule1_index = 1; + uint32 schedule2_index = 2; +} +message NominationPools_WithdrawUnbonded_Call { + oneof member_account { + NominationPools_Id Id = 1; + NominationPools_Index Index = 2; + NominationPools_Raw Raw = 3; + NominationPools_Address32 Address32 = 4; + NominationPools_Address20 Address20 = 5; + } + uint32 num_slashing_spans = 6; +} +message Babe_PrimaryAndSecondaryPlainSlots { +} +message Staking_Rebond_Call { + Compact_string value = 1; +} +message Staking_SetMinCommission_Call { + sp_arithmetic_per_things_Perbill new = 1; +} +message pallet_im_online_sr25519_app_sr25519_Public { + sp_core_sr25519_Public im_online = 1; +} +message ConvictionVoting_SplitAbstain { + string aye = 1; + string nay = 2; + string abstain = 3; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes5_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes5_listCompact_uint32 = 1; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes11_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes11_listCompact_uint32 = 1; +} +message sp_runtime_generic_digest_Digest { + repeated sp_runtime_generic_digest_DigestItem logs = 1; + +} +message Staking_IncreaseValidatorCount_Call { + Compact_uint32 additional = 1; +} +message Referenda_FellowshipMasters { +} +message Referenda_Fellowship4Dan { +} +message Identity_Raw10 { + repeated uint32 = 1; + +} +message NominationPools_Address20 { + repeated uint32 = 1; + +} +message Balances_Address20 { + repeated uint32 = 1; + +} +message sp_runtime_multiaddress_MultiAddress { + oneof targets { + Staking_Id Id = 1; + Staking_Index Index = 2; + Staking_Raw Raw = 3; + Staking_Address32 Address32 = 4; + Staking_Address20 Address20 = 5; + } +} +message Utility_Fellowship8Dan { +} +message Referenda_ReferendumKiller { +} +message FellowshipCollective_RemoveMember_Call { + oneof who { + FellowshipCollective_Id Id = 1; + FellowshipCollective_Index Index = 2; + FellowshipCollective_Raw Raw = 3; + FellowshipCollective_Address32 Address32 = 4; + FellowshipCollective_Address20 Address20 = 5; + } + uint32 min_rank = 6; +} +message Utility_Fellowship3Dan { +} +message NominationPools_PoolWithdrawUnbonded_Call { + uint32 pool_id = 1; + uint32 num_slashing_spans = 2; +} +message StakingRewards_Refill_Call { + string value = 1; +} +message Utility_ForceBatch_Call { + repeated vara_runtime_RuntimeCall calls = 1; + +} +message Preimage_EnsureUpdated_Call { + repeated primitive_types_H256 hashes = 1; + +} +message Identity_Raw { + repeated uint32 = 1; + +} +message System_SetHeapPages_Call { + uint64 pages = 1; +} +message Compact_uint32 { + uint32 value = 1; +} +message Babe_Other { + repeated uint32 = 1; + +} +message Grandpa_NoteStalled_Call { + uint32 delay = 1; + uint32 best_finalized_block_number = 2; +} +message Vesting_Raw { + repeated uint32 = 1; + +} +message Identity_Raw31 { + repeated uint32 = 1; + +} +message ChildBounties_ProposeCurator_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_uint32 child_bounty_id = 2; + oneof curator { + ChildBounties_Id Id = 3; + ChildBounties_Index Index = 4; + ChildBounties_Raw Raw = 5; + ChildBounties_Address32 Address32 = 6; + ChildBounties_Address20 Address20 = 7; + } + Compact_string fee = 8; +} +message ChildBounties_UnassignCurator_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_uint32 child_bounty_id = 2; +} +message NominationPools_Nominate_Call { + uint32 pool_id = 1; + repeated sp_core_crypto_AccountId32 validators = 2; + +} +message StakingRewards_Withdraw_Call { + oneof to { + StakingRewards_Id Id = 1; + StakingRewards_Index Index = 2; + StakingRewards_Raw Raw = 3; + StakingRewards_Address32 Address32 = 4; + StakingRewards_Address20 Address20 = 5; + } + string value = 6; +} +message sp_arithmetic_per_things_Percent { + uint32 factor = 1; +} +message Referenda_Legacy { + primitive_types_H256 hash = 1; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes10_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes10_listCompact_uint32 = 1; +} +message ChildBounties_AwardChildBounty_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_uint32 child_bounty_id = 2; + oneof beneficiary { + ChildBounties_Id Id = 3; + ChildBounties_Index Index = 4; + ChildBounties_Raw Raw = 5; + ChildBounties_Address32 Address32 = 6; + ChildBounties_Address20 Address20 = 7; + } +} +message Staking_Address32 { + repeated uint32 = 1; + +} +message Utility_ReferendumKiller { +} +message Utility_BigTipper { +} +message ConvictionVoting_RemoveOtherVote_Call { + oneof target { + ConvictionVoting_Id Id = 1; + ConvictionVoting_Index Index = 2; + ConvictionVoting_Raw Raw = 3; + ConvictionVoting_Address32 Address32 = 4; + ConvictionVoting_Address20 Address20 = 5; + } + uint32 class = 6; + uint32 index = 7; +} +message Babe_PrimarySlots { +} +message Referenda_Fellowship1Dan { +} +message Preimage_UnrequestPreimage_Call { + primitive_types_H256 hash = 1; +} +message NominationPools_ClaimPayoutOther_Call { + sp_core_crypto_AccountId32 other = 1; +} +message Gear_SetExecuteInherent_Call { + bool value = 1; +} +message Referenda_Origins { + oneof { + Referenda_StakingAdmin StakingAdmin = 1; + Referenda_Treasurer Treasurer = 2; + Referenda_FellowshipAdmin FellowshipAdmin = 3; + Referenda_GeneralAdmin GeneralAdmin = 4; + Referenda_ReferendumCanceller ReferendumCanceller = 5; + Referenda_ReferendumKiller ReferendumKiller = 6; + Referenda_SmallTipper SmallTipper = 7; + Referenda_BigTipper BigTipper = 8; + Referenda_SmallSpender SmallSpender = 9; + Referenda_MediumSpender MediumSpender = 10; + Referenda_BigSpender BigSpender = 11; + Referenda_WhitelistedCaller WhitelistedCaller = 12; + Referenda_FellowshipInitiates FellowshipInitiates = 13; + Referenda_Fellows Fellows = 14; + Referenda_FellowshipExperts FellowshipExperts = 15; + Referenda_FellowshipMasters FellowshipMasters = 16; + Referenda_Fellowship1Dan Fellowship1Dan = 17; + Referenda_Fellowship2Dan Fellowship2Dan = 18; + Referenda_Fellowship3Dan Fellowship3Dan = 19; + Referenda_Fellowship4Dan Fellowship4Dan = 20; + Referenda_Fellowship5Dan Fellowship5Dan = 21; + Referenda_Fellowship6Dan Fellowship6Dan = 22; + Referenda_Fellowship7Dan Fellowship7Dan = 23; + Referenda_Fellowship8Dan Fellowship8Dan = 24; + Referenda_Fellowship9Dan Fellowship9Dan = 25; + } +} +message GearVoucher_DeclineVoucher { +} +message Treasury_Index { + Compact_Tuple_Null = 1; +} +message Referenda_Void { + oneof { + } +} +message FellowshipReferenda_Void { + oneof { + } +} +message FellowshipReferenda_SetMetadata_Call { + uint32 index = 1; + optional primitive_types_H256 maybe_hash = 2; +} +message StakingRewards_Id { + sp_core_crypto_AccountId32 = 1; +} +message Utility_Fellowship7Dan { +} +message FellowshipReferenda_ReferendumKiller { +} +message FellowshipReferenda_Cancel_Call { + uint32 index = 1; +} +message Identity_Raw19 { + repeated uint32 = 1; + +} +message Identity_Raw29 { + repeated uint32 = 1; + +} +message Gear_CreateProgram_Call { + gear_core_ids_CodeId code_id = 1; + repeated uint32 salt = 2; + + repeated uint32 init_payload = 3; + + uint64 gas_limit = 4; + string value = 5; + bool keep_alive = 6; +} +message Staking_Raw { + repeated uint32 = 1; + +} +message ConvictionVoting_Raw { + repeated uint32 = 1; + +} +message Identity_Raw26 { + repeated uint32 = 1; + +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes13_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes13_listCompact_uint32 = 1; +} +message NominationPools_Unbond_Call { + oneof member_account { + NominationPools_Id Id = 1; + NominationPools_Index Index = 2; + NominationPools_Raw Raw = 3; + NominationPools_Address32 Address32 = 4; + NominationPools_Address20 Address20 = 5; + } + Compact_string unbonding_points = 6; +} +message Tuple_System_items_listSystem_items_list { + Tuple_System_items_listSystem_items_list = 1; +} +message Referenda_SmallSpender { +} +message NominationPools_PermissionlessAll { +} +message Staking_ForceNoEras_Call { +} +message Referenda_Fellowship7Dan { +} +message Bounties_ProposeBounty_Call { + Compact_string value = 1; + repeated uint32 description = 2; + +} +message Bounties_Address32 { + repeated uint32 = 1; + +} +message GearVoucher_Update_Call { + sp_core_crypto_AccountId32 spender = 1; + pallet_gear_voucher_internal_VoucherId voucher_id = 2; + optional sp_core_crypto_AccountId32 move_ownership = 3; + optional string balance_top_up = 4; + optional Option append_programs = 5; + optional bool code_uploading = 6; + optional uint32 prolong_duration = 7; +} +message Utility_Fellowship1Dan { +} +message Referenda_FellowshipInitiates { +} +message ConvictionVoting_Locked6x { +} +message Referenda_WhitelistedCaller { +} +message System_RemarkWithEvent_Call { + repeated uint32 remark = 1; + +} +message Staking_Chill_Call { +} +message Proxy_Raw { + repeated uint32 = 1; + +} +message NominationPools_Id { + sp_core_crypto_AccountId32 = 1; +} +message Bounties_AcceptCurator_Call { + Compact_uint32 bounty_id = 1; +} +message Babe_PlanConfigChange_Call { + oneof config { + Babe_V1 V1 = 1; + } +} +message FellowshipReferenda_None { +} +message Gear_SendMessage_Call { + gear_core_ids_ProgramId destination = 1; + repeated uint32 payload = 2; + + uint64 gas_limit = 3; + string value = 4; + bool keep_alive = 5; +} +message Grandpa_ReportEquivocationUnsigned_Call { + sp_consensus_grandpa_EquivocationProof equivocation_proof = 1; + sp_session_MembershipProof key_owner_proof = 2; +} +message Vesting_ForceVestedTransfer_Call { + oneof source { + Vesting_Id Id = 1; + Vesting_Index Index = 2; + Vesting_Raw Raw = 3; + Vesting_Address32 Address32 = 4; + Vesting_Address20 Address20 = 5; + } + oneof target { + Vesting_Id Id = 6; + Vesting_Index Index = 7; + Vesting_Raw Raw = 8; + Vesting_Address32 Address32 = 9; + Vesting_Address20 Address20 = 10; + } + pallet_vesting_vesting_info_VestingInfo schedule = 11; +} +message pallet_gear_voucher_internal_VoucherId { + repeated uint32 voucher_id = 1; + +} +message pallet_vesting_vesting_info_VestingInfo { + string locked = 1; + string per_block = 2; + uint32 starting_block = 3; +} +message Treasury_Spend_Call { + Tuple_Null = 1; + Compact_string amount = 2; + sp_core_crypto_AccountId32 beneficiary = 3; + optional uint32 valid_from = 4; +} +message Referenda_Fellowship9Dan { +} +message Identity_Raw5 { + repeated uint32 = 1; + +} +message Utility_WhitelistedCaller { +} +message Utility_FellowshipInitiates { +} +message GearVoucher_Call_Call { + pallet_gear_voucher_internal_VoucherId voucher_id = 1; + oneof call { + GearVoucher_SendMessage SendMessage = 2; + GearVoucher_SendReply SendReply = 3; + GearVoucher_UploadCode UploadCode = 4; + GearVoucher_DeclineVoucher DeclineVoucher = 5; + } +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes14_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes14_listCompact_uint32 = 1; +} +message Bounties_Raw { + repeated uint32 = 1; + +} +message NominationPools_FreeBalance { + string = 1; +} +message Staking_ScaleValidatorCount_Call { + sp_arithmetic_per_things_Percent factor = 1; +} +message Staking_Kick_Call { + repeated sp_runtime_multiaddress_MultiAddress who = 1; + +} +message Identity_SetSubs_Call { + repeated Tuple_sp_core_crypto_AccountId32pallet_identity_types_Data subs = 1; + +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes6_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes6_listCompact_uint32 = 1; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes12_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes12_listCompact_uint32 = 1; +} +message Utility_MediumSpender { +} +message ConvictionVoting_Locked4x { +} +message NominationPools_Join_Call { + Compact_string amount = 1; + uint32 pool_id = 2; +} +message NominationPools_Set { + string = 1; +} +message gear_core_ids_MessageId { + repeated uint32 reply_to_id = 1; + +} +message Babe_V1 { + Tuple_uint64uint64 = 1; + oneof allowed_slots { + Babe_PrimarySlots PrimarySlots = 2; + Babe_PrimaryAndSecondaryPlainSlots PrimaryAndSecondaryPlainSlots = 3; + Babe_PrimaryAndSecondaryVRFSlots PrimaryAndSecondaryVRFSlots = 4; + } +} +message Referenda_system { + oneof { + Referenda_Root Root = 1; + Referenda_Signed Signed = 2; + Referenda_None None = 3; + } +} +message Identity_Raw8 { + repeated uint32 = 1; + +} +message Identity_Raw2 { + repeated uint32 = 1; + +} +message NominationPools_Address32 { + repeated uint32 = 1; + +} +message GearVoucher_Decline_Call { + pallet_gear_voucher_internal_VoucherId voucher_id = 1; +} +message sp_core_sr25519_Signature { + repeated uint32 signature = 1; + +} +message Staking_ForceUnstake_Call { + sp_core_crypto_AccountId32 stash = 1; + uint32 num_slashing_spans = 2; +} +message Utility_Void { + oneof { + } +} +message FellowshipCollective_Vote_Call { + uint32 poll = 1; + bool aye = 2; +} +message Scheduler_ScheduleAfter_Call { + uint32 after = 1; + optional Tuple_uint32uint32 maybe_periodic = 2; + uint32 priority = 3; + oneof call { + System_remark_Call remark = 4; + System_set_heap_pages_Call set_heap_pages = 5; + System_set_code_Call set_code = 6; + System_set_code_without_checks_Call set_code_without_checks = 7; + System_set_storage_Call set_storage = 8; + System_kill_storage_Call kill_storage = 9; + System_kill_prefix_Call kill_prefix = 10; + System_remark_with_event_Call remark_with_event = 11; + Timestamp_set_Call set = 12; + Babe_report_equivocation_Call report_equivocation = 13; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Babe_plan_config_change_Call plan_config_change = 15; + Grandpa_report_equivocation_Call report_equivocation = 16; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 17; + Grandpa_note_stalled_Call note_stalled = 18; + Balances_transfer_allow_death_Call transfer_allow_death = 19; + Balances_force_transfer_Call force_transfer = 20; + Balances_transfer_keep_alive_Call transfer_keep_alive = 21; + Balances_transfer_all_Call transfer_all = 22; + Balances_force_unreserve_Call force_unreserve = 23; + Balances_upgrade_accounts_Call upgrade_accounts = 24; + Balances_force_set_balance_Call force_set_balance = 25; + Vesting_vest_Call vest = 26; + Vesting_vest_other_Call vest_other = 27; + Vesting_vested_transfer_Call vested_transfer = 28; + Vesting_force_vested_transfer_Call force_vested_transfer = 29; + Vesting_merge_schedules_Call merge_schedules = 30; + BagsList_rebag_Call rebag = 31; + BagsList_put_in_front_of_Call put_in_front_of = 32; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 33; + ImOnline_heartbeat_Call heartbeat = 34; + Staking_bond_Call bond = 35; + Staking_bond_extra_Call bond_extra = 36; + Staking_unbond_Call unbond = 37; + Staking_withdraw_unbonded_Call withdraw_unbonded = 38; + Staking_validate_Call validate = 39; + Staking_nominate_Call nominate = 40; + Staking_chill_Call chill = 41; + Staking_set_payee_Call set_payee = 42; + Staking_set_controller_Call set_controller = 43; + Staking_set_validator_count_Call set_validator_count = 44; + Staking_increase_validator_count_Call increase_validator_count = 45; + Staking_scale_validator_count_Call scale_validator_count = 46; + Staking_force_no_eras_Call force_no_eras = 47; + Staking_force_new_era_Call force_new_era = 48; + Staking_set_invulnerables_Call set_invulnerables = 49; + Staking_force_unstake_Call force_unstake = 50; + Staking_force_new_era_always_Call force_new_era_always = 51; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 52; + Staking_payout_stakers_Call payout_stakers = 53; + Staking_rebond_Call rebond = 54; + Staking_reap_stash_Call reap_stash = 55; + Staking_kick_Call kick = 56; + Staking_set_staking_configs_Call set_staking_configs = 57; + Staking_chill_other_Call chill_other = 58; + Staking_force_apply_min_commission_Call force_apply_min_commission = 59; + Staking_set_min_commission_Call set_min_commission = 60; + Session_set_keys_Call set_keys = 61; + Session_purge_keys_Call purge_keys = 62; + Treasury_propose_spend_Call propose_spend = 63; + Treasury_reject_proposal_Call reject_proposal = 64; + Treasury_approve_proposal_Call approve_proposal = 65; + Treasury_spend_local_Call spend_local = 66; + Treasury_remove_approval_Call remove_approval = 67; + Treasury_spend_Call spend = 68; + Treasury_payout_Call payout = 69; + Treasury_check_status_Call check_status = 70; + Treasury_void_spend_Call void_spend = 71; + Utility_batch_Call batch = 72; + Utility_as_derivative_Call as_derivative = 73; + Utility_batch_all_Call batch_all = 74; + Utility_dispatch_as_Call dispatch_as = 75; + Utility_force_batch_Call force_batch = 76; + Utility_with_weight_Call with_weight = 77; + ConvictionVoting_vote_Call vote = 78; + ConvictionVoting_delegate_Call delegate = 79; + ConvictionVoting_undelegate_Call undelegate = 80; + ConvictionVoting_unlock_Call unlock = 81; + ConvictionVoting_remove_vote_Call remove_vote = 82; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 83; + Referenda_submit_Call submit = 84; + Referenda_place_decision_deposit_Call place_decision_deposit = 85; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 86; + Referenda_cancel_Call cancel = 87; + Referenda_kill_Call kill = 88; + Referenda_nudge_referendum_Call nudge_referendum = 89; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 90; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 91; + Referenda_set_metadata_Call set_metadata = 92; + FellowshipCollective_add_member_Call add_member = 93; + FellowshipCollective_promote_member_Call promote_member = 94; + FellowshipCollective_demote_member_Call demote_member = 95; + FellowshipCollective_remove_member_Call remove_member = 96; + FellowshipCollective_vote_Call vote = 97; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 98; + FellowshipReferenda_submit_Call submit = 99; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 100; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 101; + FellowshipReferenda_cancel_Call cancel = 102; + FellowshipReferenda_kill_Call kill = 103; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 104; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 105; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 106; + FellowshipReferenda_set_metadata_Call set_metadata = 107; + Whitelist_whitelist_call_Call whitelist_call = 108; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 109; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 110; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 111; + Scheduler_schedule_Call schedule = 112; + Scheduler_cancel_Call cancel = 113; + Scheduler_schedule_named_Call schedule_named = 114; + Scheduler_cancel_named_Call cancel_named = 115; + Scheduler_schedule_after_Call schedule_after = 116; + Scheduler_schedule_named_after_Call schedule_named_after = 117; + Preimage_note_preimage_Call note_preimage = 118; + Preimage_unnote_preimage_Call unnote_preimage = 119; + Preimage_request_preimage_Call request_preimage = 120; + Preimage_unrequest_preimage_Call unrequest_preimage = 121; + Preimage_ensure_updated_Call ensure_updated = 122; + Identity_add_registrar_Call add_registrar = 123; + Identity_set_identity_Call set_identity = 124; + Identity_set_subs_Call set_subs = 125; + Identity_clear_identity_Call clear_identity = 126; + Identity_request_judgement_Call request_judgement = 127; + Identity_cancel_request_Call cancel_request = 128; + Identity_set_fee_Call set_fee = 129; + Identity_set_account_id_Call set_account_id = 130; + Identity_set_fields_Call set_fields = 131; + Identity_provide_judgement_Call provide_judgement = 132; + Identity_kill_identity_Call kill_identity = 133; + Identity_add_sub_Call add_sub = 134; + Identity_rename_sub_Call rename_sub = 135; + Identity_remove_sub_Call remove_sub = 136; + Identity_quit_sub_Call quit_sub = 137; + Proxy_proxy_Call proxy = 138; + Proxy_add_proxy_Call add_proxy = 139; + Proxy_remove_proxy_Call remove_proxy = 140; + Proxy_remove_proxies_Call remove_proxies = 141; + Proxy_create_pure_Call create_pure = 142; + Proxy_kill_pure_Call kill_pure = 143; + Proxy_announce_Call announce = 144; + Proxy_remove_announcement_Call remove_announcement = 145; + Proxy_reject_announcement_Call reject_announcement = 146; + Proxy_proxy_announced_Call proxy_announced = 147; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 148; + Multisig_as_multi_Call as_multi = 149; + Multisig_approve_as_multi_Call approve_as_multi = 150; + Multisig_cancel_as_multi_Call cancel_as_multi = 151; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 152; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 153; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 154; + ElectionProviderMultiPhase_submit_Call submit = 155; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 156; + Bounties_propose_bounty_Call propose_bounty = 157; + Bounties_approve_bounty_Call approve_bounty = 158; + Bounties_propose_curator_Call propose_curator = 159; + Bounties_unassign_curator_Call unassign_curator = 160; + Bounties_accept_curator_Call accept_curator = 161; + Bounties_award_bounty_Call award_bounty = 162; + Bounties_claim_bounty_Call claim_bounty = 163; + Bounties_close_bounty_Call close_bounty = 164; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 165; + ChildBounties_add_child_bounty_Call add_child_bounty = 166; + ChildBounties_propose_curator_Call propose_curator = 167; + ChildBounties_accept_curator_Call accept_curator = 168; + ChildBounties_unassign_curator_Call unassign_curator = 169; + ChildBounties_award_child_bounty_Call award_child_bounty = 170; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 171; + ChildBounties_close_child_bounty_Call close_child_bounty = 172; + NominationPools_join_Call join = 173; + NominationPools_bond_extra_Call bond_extra = 174; + NominationPools_claim_payout_Call claim_payout = 175; + NominationPools_unbond_Call unbond = 176; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 177; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 178; + NominationPools_create_Call create = 179; + NominationPools_create_with_pool_id_Call create_with_pool_id = 180; + NominationPools_nominate_Call nominate = 181; + NominationPools_set_state_Call set_state = 182; + NominationPools_set_metadata_Call set_metadata = 183; + NominationPools_set_configs_Call set_configs = 184; + NominationPools_update_roles_Call update_roles = 185; + NominationPools_chill_Call chill = 186; + NominationPools_bond_extra_other_Call bond_extra_other = 187; + NominationPools_set_claim_permission_Call set_claim_permission = 188; + NominationPools_claim_payout_other_Call claim_payout_other = 189; + NominationPools_set_commission_Call set_commission = 190; + NominationPools_set_commission_max_Call set_commission_max = 191; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 192; + NominationPools_claim_commission_Call claim_commission = 193; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 194; + Gear_upload_code_Call upload_code = 195; + Gear_upload_program_Call upload_program = 196; + Gear_create_program_Call create_program = 197; + Gear_send_message_Call send_message = 198; + Gear_send_reply_Call send_reply = 199; + Gear_claim_value_Call claim_value = 200; + Gear_run_Call run = 201; + Gear_set_execute_inherent_Call set_execute_inherent = 202; + StakingRewards_refill_Call refill = 203; + StakingRewards_force_refill_Call force_refill = 204; + StakingRewards_withdraw_Call withdraw = 205; + StakingRewards_align_supply_Call align_supply = 206; + GearVoucher_issue_Call issue = 207; + GearVoucher_call_Call call = 208; + GearVoucher_revoke_Call revoke = 209; + GearVoucher_update_Call update = 210; + GearVoucher_call_deprecated_Call call_deprecated = 211; + GearVoucher_decline_Call decline = 212; + } +} +message Bounties_UnassignCurator_Call { + Compact_uint32 bounty_id = 1; +} +message Staking_WithdrawUnbonded_Call { + uint32 num_slashing_spans = 1; +} +message Utility_BatchAll_Call { + repeated vara_runtime_RuntimeCall calls = 1; + +} +message ConvictionVoting_Locked3x { +} +message Identity_SetIdentity_Call { + pallet_identity_simple_IdentityInfo info = 1; +} +message Proxy_IdentityJudgement { +} +message Staking_Controller { +} +message FellowshipReferenda_OneFewerDeciding_Call { + uint32 track = 1; +} +message System_SetCodeWithoutChecks_Call { + repeated uint32 code = 1; + +} +message sp_consensus_grandpa_EquivocationProof { + uint64 set_id = 1; + oneof equivocation { + Grandpa_Prevote Prevote = 2; + Grandpa_Precommit Precommit = 3; + } +} +message FellowshipCollective_CleanupPoll_Call { + uint32 poll_index = 1; + uint32 max = 2; +} +message FellowshipReferenda_Signed { + sp_core_crypto_AccountId32 = 1; +} +message Proxy_CancelProxy { +} +message NominationPools_SetClaimPermission_Call { + oneof permission { + NominationPools_Permissioned Permissioned = 1; + NominationPools_PermissionlessCompound PermissionlessCompound = 2; + NominationPools_PermissionlessWithdraw PermissionlessWithdraw = 3; + NominationPools_PermissionlessAll PermissionlessAll = 4; + } +} +message NominationPools_SetCommissionMax_Call { + uint32 pool_id = 1; + sp_arithmetic_per_things_Perbill max_commission = 2; +} +message Staking_SetController_Call { +} +message Treasury_RemoveApproval_Call { + Compact_uint32 proposal_id = 1; +} +message Utility_Fellowship2Dan { +} +message Utility_DispatchAs_Call { + oneof as_origin { + Utility_system system = 1; + Utility_Origins Origins = 2; + Utility_Void Void = 3; + } + oneof call { + System_remark_Call remark = 4; + System_set_heap_pages_Call set_heap_pages = 5; + System_set_code_Call set_code = 6; + System_set_code_without_checks_Call set_code_without_checks = 7; + System_set_storage_Call set_storage = 8; + System_kill_storage_Call kill_storage = 9; + System_kill_prefix_Call kill_prefix = 10; + System_remark_with_event_Call remark_with_event = 11; + Timestamp_set_Call set = 12; + Babe_report_equivocation_Call report_equivocation = 13; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 14; + Babe_plan_config_change_Call plan_config_change = 15; + Grandpa_report_equivocation_Call report_equivocation = 16; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 17; + Grandpa_note_stalled_Call note_stalled = 18; + Balances_transfer_allow_death_Call transfer_allow_death = 19; + Balances_force_transfer_Call force_transfer = 20; + Balances_transfer_keep_alive_Call transfer_keep_alive = 21; + Balances_transfer_all_Call transfer_all = 22; + Balances_force_unreserve_Call force_unreserve = 23; + Balances_upgrade_accounts_Call upgrade_accounts = 24; + Balances_force_set_balance_Call force_set_balance = 25; + Vesting_vest_Call vest = 26; + Vesting_vest_other_Call vest_other = 27; + Vesting_vested_transfer_Call vested_transfer = 28; + Vesting_force_vested_transfer_Call force_vested_transfer = 29; + Vesting_merge_schedules_Call merge_schedules = 30; + BagsList_rebag_Call rebag = 31; + BagsList_put_in_front_of_Call put_in_front_of = 32; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 33; + ImOnline_heartbeat_Call heartbeat = 34; + Staking_bond_Call bond = 35; + Staking_bond_extra_Call bond_extra = 36; + Staking_unbond_Call unbond = 37; + Staking_withdraw_unbonded_Call withdraw_unbonded = 38; + Staking_validate_Call validate = 39; + Staking_nominate_Call nominate = 40; + Staking_chill_Call chill = 41; + Staking_set_payee_Call set_payee = 42; + Staking_set_controller_Call set_controller = 43; + Staking_set_validator_count_Call set_validator_count = 44; + Staking_increase_validator_count_Call increase_validator_count = 45; + Staking_scale_validator_count_Call scale_validator_count = 46; + Staking_force_no_eras_Call force_no_eras = 47; + Staking_force_new_era_Call force_new_era = 48; + Staking_set_invulnerables_Call set_invulnerables = 49; + Staking_force_unstake_Call force_unstake = 50; + Staking_force_new_era_always_Call force_new_era_always = 51; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 52; + Staking_payout_stakers_Call payout_stakers = 53; + Staking_rebond_Call rebond = 54; + Staking_reap_stash_Call reap_stash = 55; + Staking_kick_Call kick = 56; + Staking_set_staking_configs_Call set_staking_configs = 57; + Staking_chill_other_Call chill_other = 58; + Staking_force_apply_min_commission_Call force_apply_min_commission = 59; + Staking_set_min_commission_Call set_min_commission = 60; + Session_set_keys_Call set_keys = 61; + Session_purge_keys_Call purge_keys = 62; + Treasury_propose_spend_Call propose_spend = 63; + Treasury_reject_proposal_Call reject_proposal = 64; + Treasury_approve_proposal_Call approve_proposal = 65; + Treasury_spend_local_Call spend_local = 66; + Treasury_remove_approval_Call remove_approval = 67; + Treasury_spend_Call spend = 68; + Treasury_payout_Call payout = 69; + Treasury_check_status_Call check_status = 70; + Treasury_void_spend_Call void_spend = 71; + Utility_batch_Call batch = 72; + Utility_as_derivative_Call as_derivative = 73; + Utility_batch_all_Call batch_all = 74; + Utility_dispatch_as_Call dispatch_as = 75; + Utility_force_batch_Call force_batch = 76; + Utility_with_weight_Call with_weight = 77; + ConvictionVoting_vote_Call vote = 78; + ConvictionVoting_delegate_Call delegate = 79; + ConvictionVoting_undelegate_Call undelegate = 80; + ConvictionVoting_unlock_Call unlock = 81; + ConvictionVoting_remove_vote_Call remove_vote = 82; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 83; + Referenda_submit_Call submit = 84; + Referenda_place_decision_deposit_Call place_decision_deposit = 85; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 86; + Referenda_cancel_Call cancel = 87; + Referenda_kill_Call kill = 88; + Referenda_nudge_referendum_Call nudge_referendum = 89; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 90; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 91; + Referenda_set_metadata_Call set_metadata = 92; + FellowshipCollective_add_member_Call add_member = 93; + FellowshipCollective_promote_member_Call promote_member = 94; + FellowshipCollective_demote_member_Call demote_member = 95; + FellowshipCollective_remove_member_Call remove_member = 96; + FellowshipCollective_vote_Call vote = 97; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 98; + FellowshipReferenda_submit_Call submit = 99; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 100; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 101; + FellowshipReferenda_cancel_Call cancel = 102; + FellowshipReferenda_kill_Call kill = 103; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 104; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 105; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 106; + FellowshipReferenda_set_metadata_Call set_metadata = 107; + Whitelist_whitelist_call_Call whitelist_call = 108; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 109; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 110; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 111; + Scheduler_schedule_Call schedule = 112; + Scheduler_cancel_Call cancel = 113; + Scheduler_schedule_named_Call schedule_named = 114; + Scheduler_cancel_named_Call cancel_named = 115; + Scheduler_schedule_after_Call schedule_after = 116; + Scheduler_schedule_named_after_Call schedule_named_after = 117; + Preimage_note_preimage_Call note_preimage = 118; + Preimage_unnote_preimage_Call unnote_preimage = 119; + Preimage_request_preimage_Call request_preimage = 120; + Preimage_unrequest_preimage_Call unrequest_preimage = 121; + Preimage_ensure_updated_Call ensure_updated = 122; + Identity_add_registrar_Call add_registrar = 123; + Identity_set_identity_Call set_identity = 124; + Identity_set_subs_Call set_subs = 125; + Identity_clear_identity_Call clear_identity = 126; + Identity_request_judgement_Call request_judgement = 127; + Identity_cancel_request_Call cancel_request = 128; + Identity_set_fee_Call set_fee = 129; + Identity_set_account_id_Call set_account_id = 130; + Identity_set_fields_Call set_fields = 131; + Identity_provide_judgement_Call provide_judgement = 132; + Identity_kill_identity_Call kill_identity = 133; + Identity_add_sub_Call add_sub = 134; + Identity_rename_sub_Call rename_sub = 135; + Identity_remove_sub_Call remove_sub = 136; + Identity_quit_sub_Call quit_sub = 137; + Proxy_proxy_Call proxy = 138; + Proxy_add_proxy_Call add_proxy = 139; + Proxy_remove_proxy_Call remove_proxy = 140; + Proxy_remove_proxies_Call remove_proxies = 141; + Proxy_create_pure_Call create_pure = 142; + Proxy_kill_pure_Call kill_pure = 143; + Proxy_announce_Call announce = 144; + Proxy_remove_announcement_Call remove_announcement = 145; + Proxy_reject_announcement_Call reject_announcement = 146; + Proxy_proxy_announced_Call proxy_announced = 147; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 148; + Multisig_as_multi_Call as_multi = 149; + Multisig_approve_as_multi_Call approve_as_multi = 150; + Multisig_cancel_as_multi_Call cancel_as_multi = 151; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 152; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 153; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 154; + ElectionProviderMultiPhase_submit_Call submit = 155; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 156; + Bounties_propose_bounty_Call propose_bounty = 157; + Bounties_approve_bounty_Call approve_bounty = 158; + Bounties_propose_curator_Call propose_curator = 159; + Bounties_unassign_curator_Call unassign_curator = 160; + Bounties_accept_curator_Call accept_curator = 161; + Bounties_award_bounty_Call award_bounty = 162; + Bounties_claim_bounty_Call claim_bounty = 163; + Bounties_close_bounty_Call close_bounty = 164; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 165; + ChildBounties_add_child_bounty_Call add_child_bounty = 166; + ChildBounties_propose_curator_Call propose_curator = 167; + ChildBounties_accept_curator_Call accept_curator = 168; + ChildBounties_unassign_curator_Call unassign_curator = 169; + ChildBounties_award_child_bounty_Call award_child_bounty = 170; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 171; + ChildBounties_close_child_bounty_Call close_child_bounty = 172; + NominationPools_join_Call join = 173; + NominationPools_bond_extra_Call bond_extra = 174; + NominationPools_claim_payout_Call claim_payout = 175; + NominationPools_unbond_Call unbond = 176; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 177; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 178; + NominationPools_create_Call create = 179; + NominationPools_create_with_pool_id_Call create_with_pool_id = 180; + NominationPools_nominate_Call nominate = 181; + NominationPools_set_state_Call set_state = 182; + NominationPools_set_metadata_Call set_metadata = 183; + NominationPools_set_configs_Call set_configs = 184; + NominationPools_update_roles_Call update_roles = 185; + NominationPools_chill_Call chill = 186; + NominationPools_bond_extra_other_Call bond_extra_other = 187; + NominationPools_set_claim_permission_Call set_claim_permission = 188; + NominationPools_claim_payout_other_Call claim_payout_other = 189; + NominationPools_set_commission_Call set_commission = 190; + NominationPools_set_commission_max_Call set_commission_max = 191; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 192; + NominationPools_claim_commission_Call claim_commission = 193; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 194; + Gear_upload_code_Call upload_code = 195; + Gear_upload_program_Call upload_program = 196; + Gear_create_program_Call create_program = 197; + Gear_send_message_Call send_message = 198; + Gear_send_reply_Call send_reply = 199; + Gear_claim_value_Call claim_value = 200; + Gear_run_Call run = 201; + Gear_set_execute_inherent_Call set_execute_inherent = 202; + StakingRewards_refill_Call refill = 203; + StakingRewards_force_refill_Call force_refill = 204; + StakingRewards_withdraw_Call withdraw = 205; + StakingRewards_align_supply_Call align_supply = 206; + GearVoucher_issue_Call issue = 207; + GearVoucher_call_Call call = 208; + GearVoucher_revoke_Call revoke = 209; + GearVoucher_update_Call update = 210; + GearVoucher_call_deprecated_Call call_deprecated = 211; + GearVoucher_decline_Call decline = 212; + } +} +message Identity_Raw17 { + repeated uint32 = 1; + +} +message Proxy_AddProxy_Call { + oneof delegate { + Proxy_Id Id = 1; + Proxy_Index Index = 2; + Proxy_Raw Raw = 3; + Proxy_Address32 Address32 = 4; + Proxy_Address20 Address20 = 5; + } + oneof proxy_type { + Proxy_Any Any = 6; + Proxy_NonTransfer NonTransfer = 7; + Proxy_Governance Governance = 8; + Proxy_Staking Staking = 9; + Proxy_IdentityJudgement IdentityJudgement = 10; + Proxy_CancelProxy CancelProxy = 11; + } + uint32 delay = 12; +} +message ChildBounties_AcceptCurator_Call { + Compact_uint32 parent_bounty_id = 1; + Compact_uint32 child_bounty_id = 2; +} +message Session_PurgeKeys_Call { +} +message ConvictionVoting_Index { + Compact_Tuple_Null = 1; +} +message Identity_AddRegistrar_Call { + oneof account { + Identity_Id Id = 1; + Identity_Index Index = 2; + Identity_Raw Raw = 3; + Identity_Address32 Address32 = 4; + Identity_Address20 Address20 = 5; + } +} +message Identity_Raw20 { + repeated uint32 = 1; + +} +message pallet_identity_simple_IdentityInfo { + bounded_collections_bounded_vec_BoundedVec additional = 1; + oneof display { + Identity_None None = 2; + Identity_Raw0 Raw0 = 3; + Identity_Raw1 Raw1 = 4; + Identity_Raw2 Raw2 = 5; + Identity_Raw3 Raw3 = 6; + Identity_Raw4 Raw4 = 7; + Identity_Raw5 Raw5 = 8; + Identity_Raw6 Raw6 = 9; + Identity_Raw7 Raw7 = 10; + Identity_Raw8 Raw8 = 11; + Identity_Raw9 Raw9 = 12; + Identity_Raw10 Raw10 = 13; + Identity_Raw11 Raw11 = 14; + Identity_Raw12 Raw12 = 15; + Identity_Raw13 Raw13 = 16; + Identity_Raw14 Raw14 = 17; + Identity_Raw15 Raw15 = 18; + Identity_Raw16 Raw16 = 19; + Identity_Raw17 Raw17 = 20; + Identity_Raw18 Raw18 = 21; + Identity_Raw19 Raw19 = 22; + Identity_Raw20 Raw20 = 23; + Identity_Raw21 Raw21 = 24; + Identity_Raw22 Raw22 = 25; + Identity_Raw23 Raw23 = 26; + Identity_Raw24 Raw24 = 27; + Identity_Raw25 Raw25 = 28; + Identity_Raw26 Raw26 = 29; + Identity_Raw27 Raw27 = 30; + Identity_Raw28 Raw28 = 31; + Identity_Raw29 Raw29 = 32; + Identity_Raw30 Raw30 = 33; + Identity_Raw31 Raw31 = 34; + Identity_Raw32 Raw32 = 35; + Identity_BlakeTwo256 BlakeTwo256 = 36; + Identity_Sha256 Sha256 = 37; + Identity_Keccak256 Keccak256 = 38; + Identity_ShaThree256 ShaThree256 = 39; + } + oneof legal { + Identity_None None = 40; + Identity_Raw0 Raw0 = 41; + Identity_Raw1 Raw1 = 42; + Identity_Raw2 Raw2 = 43; + Identity_Raw3 Raw3 = 44; + Identity_Raw4 Raw4 = 45; + Identity_Raw5 Raw5 = 46; + Identity_Raw6 Raw6 = 47; + Identity_Raw7 Raw7 = 48; + Identity_Raw8 Raw8 = 49; + Identity_Raw9 Raw9 = 50; + Identity_Raw10 Raw10 = 51; + Identity_Raw11 Raw11 = 52; + Identity_Raw12 Raw12 = 53; + Identity_Raw13 Raw13 = 54; + Identity_Raw14 Raw14 = 55; + Identity_Raw15 Raw15 = 56; + Identity_Raw16 Raw16 = 57; + Identity_Raw17 Raw17 = 58; + Identity_Raw18 Raw18 = 59; + Identity_Raw19 Raw19 = 60; + Identity_Raw20 Raw20 = 61; + Identity_Raw21 Raw21 = 62; + Identity_Raw22 Raw22 = 63; + Identity_Raw23 Raw23 = 64; + Identity_Raw24 Raw24 = 65; + Identity_Raw25 Raw25 = 66; + Identity_Raw26 Raw26 = 67; + Identity_Raw27 Raw27 = 68; + Identity_Raw28 Raw28 = 69; + Identity_Raw29 Raw29 = 70; + Identity_Raw30 Raw30 = 71; + Identity_Raw31 Raw31 = 72; + Identity_Raw32 Raw32 = 73; + Identity_BlakeTwo256 BlakeTwo256 = 74; + Identity_Sha256 Sha256 = 75; + Identity_Keccak256 Keccak256 = 76; + Identity_ShaThree256 ShaThree256 = 77; + } + oneof web { + Identity_None None = 78; + Identity_Raw0 Raw0 = 79; + Identity_Raw1 Raw1 = 80; + Identity_Raw2 Raw2 = 81; + Identity_Raw3 Raw3 = 82; + Identity_Raw4 Raw4 = 83; + Identity_Raw5 Raw5 = 84; + Identity_Raw6 Raw6 = 85; + Identity_Raw7 Raw7 = 86; + Identity_Raw8 Raw8 = 87; + Identity_Raw9 Raw9 = 88; + Identity_Raw10 Raw10 = 89; + Identity_Raw11 Raw11 = 90; + Identity_Raw12 Raw12 = 91; + Identity_Raw13 Raw13 = 92; + Identity_Raw14 Raw14 = 93; + Identity_Raw15 Raw15 = 94; + Identity_Raw16 Raw16 = 95; + Identity_Raw17 Raw17 = 96; + Identity_Raw18 Raw18 = 97; + Identity_Raw19 Raw19 = 98; + Identity_Raw20 Raw20 = 99; + Identity_Raw21 Raw21 = 100; + Identity_Raw22 Raw22 = 101; + Identity_Raw23 Raw23 = 102; + Identity_Raw24 Raw24 = 103; + Identity_Raw25 Raw25 = 104; + Identity_Raw26 Raw26 = 105; + Identity_Raw27 Raw27 = 106; + Identity_Raw28 Raw28 = 107; + Identity_Raw29 Raw29 = 108; + Identity_Raw30 Raw30 = 109; + Identity_Raw31 Raw31 = 110; + Identity_Raw32 Raw32 = 111; + Identity_BlakeTwo256 BlakeTwo256 = 112; + Identity_Sha256 Sha256 = 113; + Identity_Keccak256 Keccak256 = 114; + Identity_ShaThree256 ShaThree256 = 115; + } + oneof riot { + Identity_None None = 116; + Identity_Raw0 Raw0 = 117; + Identity_Raw1 Raw1 = 118; + Identity_Raw2 Raw2 = 119; + Identity_Raw3 Raw3 = 120; + Identity_Raw4 Raw4 = 121; + Identity_Raw5 Raw5 = 122; + Identity_Raw6 Raw6 = 123; + Identity_Raw7 Raw7 = 124; + Identity_Raw8 Raw8 = 125; + Identity_Raw9 Raw9 = 126; + Identity_Raw10 Raw10 = 127; + Identity_Raw11 Raw11 = 128; + Identity_Raw12 Raw12 = 129; + Identity_Raw13 Raw13 = 130; + Identity_Raw14 Raw14 = 131; + Identity_Raw15 Raw15 = 132; + Identity_Raw16 Raw16 = 133; + Identity_Raw17 Raw17 = 134; + Identity_Raw18 Raw18 = 135; + Identity_Raw19 Raw19 = 136; + Identity_Raw20 Raw20 = 137; + Identity_Raw21 Raw21 = 138; + Identity_Raw22 Raw22 = 139; + Identity_Raw23 Raw23 = 140; + Identity_Raw24 Raw24 = 141; + Identity_Raw25 Raw25 = 142; + Identity_Raw26 Raw26 = 143; + Identity_Raw27 Raw27 = 144; + Identity_Raw28 Raw28 = 145; + Identity_Raw29 Raw29 = 146; + Identity_Raw30 Raw30 = 147; + Identity_Raw31 Raw31 = 148; + Identity_Raw32 Raw32 = 149; + Identity_BlakeTwo256 BlakeTwo256 = 150; + Identity_Sha256 Sha256 = 151; + Identity_Keccak256 Keccak256 = 152; + Identity_ShaThree256 ShaThree256 = 153; + } + oneof email { + Identity_None None = 154; + Identity_Raw0 Raw0 = 155; + Identity_Raw1 Raw1 = 156; + Identity_Raw2 Raw2 = 157; + Identity_Raw3 Raw3 = 158; + Identity_Raw4 Raw4 = 159; + Identity_Raw5 Raw5 = 160; + Identity_Raw6 Raw6 = 161; + Identity_Raw7 Raw7 = 162; + Identity_Raw8 Raw8 = 163; + Identity_Raw9 Raw9 = 164; + Identity_Raw10 Raw10 = 165; + Identity_Raw11 Raw11 = 166; + Identity_Raw12 Raw12 = 167; + Identity_Raw13 Raw13 = 168; + Identity_Raw14 Raw14 = 169; + Identity_Raw15 Raw15 = 170; + Identity_Raw16 Raw16 = 171; + Identity_Raw17 Raw17 = 172; + Identity_Raw18 Raw18 = 173; + Identity_Raw19 Raw19 = 174; + Identity_Raw20 Raw20 = 175; + Identity_Raw21 Raw21 = 176; + Identity_Raw22 Raw22 = 177; + Identity_Raw23 Raw23 = 178; + Identity_Raw24 Raw24 = 179; + Identity_Raw25 Raw25 = 180; + Identity_Raw26 Raw26 = 181; + Identity_Raw27 Raw27 = 182; + Identity_Raw28 Raw28 = 183; + Identity_Raw29 Raw29 = 184; + Identity_Raw30 Raw30 = 185; + Identity_Raw31 Raw31 = 186; + Identity_Raw32 Raw32 = 187; + Identity_BlakeTwo256 BlakeTwo256 = 188; + Identity_Sha256 Sha256 = 189; + Identity_Keccak256 Keccak256 = 190; + Identity_ShaThree256 ShaThree256 = 191; + } + optional Identity_pgp_fingerprint_list pgp_fingerprint = 192; + oneof image { + Identity_None None = 193; + Identity_Raw0 Raw0 = 194; + Identity_Raw1 Raw1 = 195; + Identity_Raw2 Raw2 = 196; + Identity_Raw3 Raw3 = 197; + Identity_Raw4 Raw4 = 198; + Identity_Raw5 Raw5 = 199; + Identity_Raw6 Raw6 = 200; + Identity_Raw7 Raw7 = 201; + Identity_Raw8 Raw8 = 202; + Identity_Raw9 Raw9 = 203; + Identity_Raw10 Raw10 = 204; + Identity_Raw11 Raw11 = 205; + Identity_Raw12 Raw12 = 206; + Identity_Raw13 Raw13 = 207; + Identity_Raw14 Raw14 = 208; + Identity_Raw15 Raw15 = 209; + Identity_Raw16 Raw16 = 210; + Identity_Raw17 Raw17 = 211; + Identity_Raw18 Raw18 = 212; + Identity_Raw19 Raw19 = 213; + Identity_Raw20 Raw20 = 214; + Identity_Raw21 Raw21 = 215; + Identity_Raw22 Raw22 = 216; + Identity_Raw23 Raw23 = 217; + Identity_Raw24 Raw24 = 218; + Identity_Raw25 Raw25 = 219; + Identity_Raw26 Raw26 = 220; + Identity_Raw27 Raw27 = 221; + Identity_Raw28 Raw28 = 222; + Identity_Raw29 Raw29 = 223; + Identity_Raw30 Raw30 = 224; + Identity_Raw31 Raw31 = 225; + Identity_Raw32 Raw32 = 226; + Identity_BlakeTwo256 BlakeTwo256 = 227; + Identity_Sha256 Sha256 = 228; + Identity_Keccak256 Keccak256 = 229; + Identity_ShaThree256 ShaThree256 = 230; + } + oneof twitter { + Identity_None None = 231; + Identity_Raw0 Raw0 = 232; + Identity_Raw1 Raw1 = 233; + Identity_Raw2 Raw2 = 234; + Identity_Raw3 Raw3 = 235; + Identity_Raw4 Raw4 = 236; + Identity_Raw5 Raw5 = 237; + Identity_Raw6 Raw6 = 238; + Identity_Raw7 Raw7 = 239; + Identity_Raw8 Raw8 = 240; + Identity_Raw9 Raw9 = 241; + Identity_Raw10 Raw10 = 242; + Identity_Raw11 Raw11 = 243; + Identity_Raw12 Raw12 = 244; + Identity_Raw13 Raw13 = 245; + Identity_Raw14 Raw14 = 246; + Identity_Raw15 Raw15 = 247; + Identity_Raw16 Raw16 = 248; + Identity_Raw17 Raw17 = 249; + Identity_Raw18 Raw18 = 250; + Identity_Raw19 Raw19 = 251; + Identity_Raw20 Raw20 = 252; + Identity_Raw21 Raw21 = 253; + Identity_Raw22 Raw22 = 254; + Identity_Raw23 Raw23 = 255; + Identity_Raw24 Raw24 = 256; + Identity_Raw25 Raw25 = 257; + Identity_Raw26 Raw26 = 258; + Identity_Raw27 Raw27 = 259; + Identity_Raw28 Raw28 = 260; + Identity_Raw29 Raw29 = 261; + Identity_Raw30 Raw30 = 262; + Identity_Raw31 Raw31 = 263; + Identity_Raw32 Raw32 = 264; + Identity_BlakeTwo256 BlakeTwo256 = 265; + Identity_Sha256 Sha256 = 266; + Identity_Keccak256 Keccak256 = 267; + Identity_ShaThree256 ShaThree256 = 268; + } +} +message Balances_Raw { + repeated uint32 = 1; + +} +message Balances_UpgradeAccounts_Call { + repeated sp_core_crypto_AccountId32 who = 1; + +} +message Identity_Raw4 { + repeated uint32 = 1; + +} +message Identity_Raw32 { + repeated uint32 = 1; + +} +message sp_core_crypto_AccountId32 { + repeated uint32 = 1; + +} +message Utility_AsDerivative_Call { + uint32 index = 1; + oneof call { + System_remark_Call remark = 2; + System_set_heap_pages_Call set_heap_pages = 3; + System_set_code_Call set_code = 4; + System_set_code_without_checks_Call set_code_without_checks = 5; + System_set_storage_Call set_storage = 6; + System_kill_storage_Call kill_storage = 7; + System_kill_prefix_Call kill_prefix = 8; + System_remark_with_event_Call remark_with_event = 9; + Timestamp_set_Call set = 10; + Babe_report_equivocation_Call report_equivocation = 11; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 12; + Babe_plan_config_change_Call plan_config_change = 13; + Grandpa_report_equivocation_Call report_equivocation = 14; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 15; + Grandpa_note_stalled_Call note_stalled = 16; + Balances_transfer_allow_death_Call transfer_allow_death = 17; + Balances_force_transfer_Call force_transfer = 18; + Balances_transfer_keep_alive_Call transfer_keep_alive = 19; + Balances_transfer_all_Call transfer_all = 20; + Balances_force_unreserve_Call force_unreserve = 21; + Balances_upgrade_accounts_Call upgrade_accounts = 22; + Balances_force_set_balance_Call force_set_balance = 23; + Vesting_vest_Call vest = 24; + Vesting_vest_other_Call vest_other = 25; + Vesting_vested_transfer_Call vested_transfer = 26; + Vesting_force_vested_transfer_Call force_vested_transfer = 27; + Vesting_merge_schedules_Call merge_schedules = 28; + BagsList_rebag_Call rebag = 29; + BagsList_put_in_front_of_Call put_in_front_of = 30; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 31; + ImOnline_heartbeat_Call heartbeat = 32; + Staking_bond_Call bond = 33; + Staking_bond_extra_Call bond_extra = 34; + Staking_unbond_Call unbond = 35; + Staking_withdraw_unbonded_Call withdraw_unbonded = 36; + Staking_validate_Call validate = 37; + Staking_nominate_Call nominate = 38; + Staking_chill_Call chill = 39; + Staking_set_payee_Call set_payee = 40; + Staking_set_controller_Call set_controller = 41; + Staking_set_validator_count_Call set_validator_count = 42; + Staking_increase_validator_count_Call increase_validator_count = 43; + Staking_scale_validator_count_Call scale_validator_count = 44; + Staking_force_no_eras_Call force_no_eras = 45; + Staking_force_new_era_Call force_new_era = 46; + Staking_set_invulnerables_Call set_invulnerables = 47; + Staking_force_unstake_Call force_unstake = 48; + Staking_force_new_era_always_Call force_new_era_always = 49; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 50; + Staking_payout_stakers_Call payout_stakers = 51; + Staking_rebond_Call rebond = 52; + Staking_reap_stash_Call reap_stash = 53; + Staking_kick_Call kick = 54; + Staking_set_staking_configs_Call set_staking_configs = 55; + Staking_chill_other_Call chill_other = 56; + Staking_force_apply_min_commission_Call force_apply_min_commission = 57; + Staking_set_min_commission_Call set_min_commission = 58; + Session_set_keys_Call set_keys = 59; + Session_purge_keys_Call purge_keys = 60; + Treasury_propose_spend_Call propose_spend = 61; + Treasury_reject_proposal_Call reject_proposal = 62; + Treasury_approve_proposal_Call approve_proposal = 63; + Treasury_spend_local_Call spend_local = 64; + Treasury_remove_approval_Call remove_approval = 65; + Treasury_spend_Call spend = 66; + Treasury_payout_Call payout = 67; + Treasury_check_status_Call check_status = 68; + Treasury_void_spend_Call void_spend = 69; + Utility_batch_Call batch = 70; + Utility_as_derivative_Call as_derivative = 71; + Utility_batch_all_Call batch_all = 72; + Utility_dispatch_as_Call dispatch_as = 73; + Utility_force_batch_Call force_batch = 74; + Utility_with_weight_Call with_weight = 75; + ConvictionVoting_vote_Call vote = 76; + ConvictionVoting_delegate_Call delegate = 77; + ConvictionVoting_undelegate_Call undelegate = 78; + ConvictionVoting_unlock_Call unlock = 79; + ConvictionVoting_remove_vote_Call remove_vote = 80; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 81; + Referenda_submit_Call submit = 82; + Referenda_place_decision_deposit_Call place_decision_deposit = 83; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 84; + Referenda_cancel_Call cancel = 85; + Referenda_kill_Call kill = 86; + Referenda_nudge_referendum_Call nudge_referendum = 87; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 88; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 89; + Referenda_set_metadata_Call set_metadata = 90; + FellowshipCollective_add_member_Call add_member = 91; + FellowshipCollective_promote_member_Call promote_member = 92; + FellowshipCollective_demote_member_Call demote_member = 93; + FellowshipCollective_remove_member_Call remove_member = 94; + FellowshipCollective_vote_Call vote = 95; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 96; + FellowshipReferenda_submit_Call submit = 97; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 98; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 99; + FellowshipReferenda_cancel_Call cancel = 100; + FellowshipReferenda_kill_Call kill = 101; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 102; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 103; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 104; + FellowshipReferenda_set_metadata_Call set_metadata = 105; + Whitelist_whitelist_call_Call whitelist_call = 106; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 107; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 108; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 109; + Scheduler_schedule_Call schedule = 110; + Scheduler_cancel_Call cancel = 111; + Scheduler_schedule_named_Call schedule_named = 112; + Scheduler_cancel_named_Call cancel_named = 113; + Scheduler_schedule_after_Call schedule_after = 114; + Scheduler_schedule_named_after_Call schedule_named_after = 115; + Preimage_note_preimage_Call note_preimage = 116; + Preimage_unnote_preimage_Call unnote_preimage = 117; + Preimage_request_preimage_Call request_preimage = 118; + Preimage_unrequest_preimage_Call unrequest_preimage = 119; + Preimage_ensure_updated_Call ensure_updated = 120; + Identity_add_registrar_Call add_registrar = 121; + Identity_set_identity_Call set_identity = 122; + Identity_set_subs_Call set_subs = 123; + Identity_clear_identity_Call clear_identity = 124; + Identity_request_judgement_Call request_judgement = 125; + Identity_cancel_request_Call cancel_request = 126; + Identity_set_fee_Call set_fee = 127; + Identity_set_account_id_Call set_account_id = 128; + Identity_set_fields_Call set_fields = 129; + Identity_provide_judgement_Call provide_judgement = 130; + Identity_kill_identity_Call kill_identity = 131; + Identity_add_sub_Call add_sub = 132; + Identity_rename_sub_Call rename_sub = 133; + Identity_remove_sub_Call remove_sub = 134; + Identity_quit_sub_Call quit_sub = 135; + Proxy_proxy_Call proxy = 136; + Proxy_add_proxy_Call add_proxy = 137; + Proxy_remove_proxy_Call remove_proxy = 138; + Proxy_remove_proxies_Call remove_proxies = 139; + Proxy_create_pure_Call create_pure = 140; + Proxy_kill_pure_Call kill_pure = 141; + Proxy_announce_Call announce = 142; + Proxy_remove_announcement_Call remove_announcement = 143; + Proxy_reject_announcement_Call reject_announcement = 144; + Proxy_proxy_announced_Call proxy_announced = 145; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 146; + Multisig_as_multi_Call as_multi = 147; + Multisig_approve_as_multi_Call approve_as_multi = 148; + Multisig_cancel_as_multi_Call cancel_as_multi = 149; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 150; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 151; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 152; + ElectionProviderMultiPhase_submit_Call submit = 153; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 154; + Bounties_propose_bounty_Call propose_bounty = 155; + Bounties_approve_bounty_Call approve_bounty = 156; + Bounties_propose_curator_Call propose_curator = 157; + Bounties_unassign_curator_Call unassign_curator = 158; + Bounties_accept_curator_Call accept_curator = 159; + Bounties_award_bounty_Call award_bounty = 160; + Bounties_claim_bounty_Call claim_bounty = 161; + Bounties_close_bounty_Call close_bounty = 162; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 163; + ChildBounties_add_child_bounty_Call add_child_bounty = 164; + ChildBounties_propose_curator_Call propose_curator = 165; + ChildBounties_accept_curator_Call accept_curator = 166; + ChildBounties_unassign_curator_Call unassign_curator = 167; + ChildBounties_award_child_bounty_Call award_child_bounty = 168; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 169; + ChildBounties_close_child_bounty_Call close_child_bounty = 170; + NominationPools_join_Call join = 171; + NominationPools_bond_extra_Call bond_extra = 172; + NominationPools_claim_payout_Call claim_payout = 173; + NominationPools_unbond_Call unbond = 174; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 175; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 176; + NominationPools_create_Call create = 177; + NominationPools_create_with_pool_id_Call create_with_pool_id = 178; + NominationPools_nominate_Call nominate = 179; + NominationPools_set_state_Call set_state = 180; + NominationPools_set_metadata_Call set_metadata = 181; + NominationPools_set_configs_Call set_configs = 182; + NominationPools_update_roles_Call update_roles = 183; + NominationPools_chill_Call chill = 184; + NominationPools_bond_extra_other_Call bond_extra_other = 185; + NominationPools_set_claim_permission_Call set_claim_permission = 186; + NominationPools_claim_payout_other_Call claim_payout_other = 187; + NominationPools_set_commission_Call set_commission = 188; + NominationPools_set_commission_max_Call set_commission_max = 189; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 190; + NominationPools_claim_commission_Call claim_commission = 191; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 192; + Gear_upload_code_Call upload_code = 193; + Gear_upload_program_Call upload_program = 194; + Gear_create_program_Call create_program = 195; + Gear_send_message_Call send_message = 196; + Gear_send_reply_Call send_reply = 197; + Gear_claim_value_Call claim_value = 198; + Gear_run_Call run = 199; + Gear_set_execute_inherent_Call set_execute_inherent = 200; + StakingRewards_refill_Call refill = 201; + StakingRewards_force_refill_Call force_refill = 202; + StakingRewards_withdraw_Call withdraw = 203; + StakingRewards_align_supply_Call align_supply = 204; + GearVoucher_issue_Call issue = 205; + GearVoucher_call_Call call = 206; + GearVoucher_revoke_Call revoke = 207; + GearVoucher_update_Call update = 208; + GearVoucher_call_deprecated_Call call_deprecated = 209; + GearVoucher_decline_Call decline = 210; + } +} +message Staking_Remove { +} +message sp_weights_weight_v2_Weight { + Compact_uint64 ref_time = 1; + Compact_uint64 proof_size = 2; +} +message NominationPools_SetMetadata_Call { + uint32 pool_id = 1; + repeated uint32 metadata = 2; + +} +message NominationPools_Chill_Call { + uint32 pool_id = 1; +} +message gear_core_ids_ProgramId { + repeated uint32 destination = 1; + +} +message FellowshipReferenda_Treasurer { +} +message FellowshipReferenda_Fellowship8Dan { +} +message GearVoucher_CallDeprecated_Call { + oneof call { + GearVoucher_SendMessage SendMessage = 1; + GearVoucher_SendReply SendReply = 2; + GearVoucher_UploadCode UploadCode = 3; + GearVoucher_DeclineVoucher DeclineVoucher = 4; + } +} +message Babe_ReportEquivocationUnsigned_Call { + sp_consensus_slots_EquivocationProof equivocation_proof = 1; + sp_session_MembershipProof key_owner_proof = 2; +} +message Staking_Index { + Compact_Tuple_Null = 1; +} +message Treasury_CheckStatus_Call { + uint32 index = 1; +} +message Tuple_Compact_uint32ElectionProviderMultiPhase_votes7_listCompact_uint32 { + Tuple_Compact_uint32ElectionProviderMultiPhase_votes7_listCompact_uint32 = 1; +} +message NominationPools_PermissionlessCompound { +} +message pallet_identity_types_BitFlags { + uint64 fields = 1; +} +message Session_SetKeys_Call { + vara_runtime_SessionKeys keys = 1; + repeated uint32 proof = 2; + +} +message ConvictionVoting_Split { + string aye = 1; + string nay = 2; +} +message Whitelist_WhitelistCall_Call { + primitive_types_H256 call_hash = 1; +} +message Scheduler_Cancel_Call { + uint32 when = 1; + uint32 index = 2; +} +message Tuple_sp_core_crypto_AccountId32pallet_identity_types_Data { + Tuple_sp_core_crypto_AccountId32pallet_identity_types_Data = 1; +} +message Vesting_Index { + Compact_Tuple_Null = 1; +} +message bounded_collections_bounded_vec_BoundedVec { + repeated uint32 = 1; + +} +message Tuple_Compact_uint32Tuple_Compact_uint32Compact_sp_arithmetic_per_things_PerU16Compact_uint32 { + Tuple_Compact_uint32Tuple_Compact_uint32Compact_sp_arithmetic_per_things_PerU16Compact_uint32 = 1; +} +message NominationPools_CreateWithPoolId_Call { + Compact_string amount = 1; + oneof root { + NominationPools_Id Id = 2; + NominationPools_Index Index = 3; + NominationPools_Raw Raw = 4; + NominationPools_Address32 Address32 = 5; + NominationPools_Address20 Address20 = 6; + } + oneof nominator { + NominationPools_Id Id = 7; + NominationPools_Index Index = 8; + NominationPools_Raw Raw = 9; + NominationPools_Address32 Address32 = 10; + NominationPools_Address20 Address20 = 11; + } + oneof bouncer { + NominationPools_Id Id = 12; + NominationPools_Index Index = 13; + NominationPools_Raw Raw = 14; + NominationPools_Address32 Address32 = 15; + NominationPools_Address20 Address20 = 16; + } + uint32 pool_id = 17; +} +message Identity_Keccak256 { + repeated uint32 = 1; + +} +message Staking_ForceNewEra_Call { +} +message Staking_SetStakingConfigs_Call { + oneof min_nominator_bond { + Staking_Noop Noop = 1; + Staking_Set Set = 2; + Staking_Remove Remove = 3; + } + oneof min_validator_bond { + Staking_Noop Noop = 4; + Staking_Set Set = 5; + Staking_Remove Remove = 6; + } + oneof max_nominator_count { + Staking_Noop Noop = 7; + Staking_Set Set = 8; + Staking_Remove Remove = 9; + } + oneof max_validator_count { + Staking_Noop Noop = 10; + Staking_Set Set = 11; + Staking_Remove Remove = 12; + } + oneof chill_threshold { + Staking_Noop Noop = 13; + Staking_Set Set = 14; + Staking_Remove Remove = 15; + } + oneof min_commission { + Staking_Noop Noop = 16; + Staking_Set Set = 17; + Staking_Remove Remove = 18; + } +} +message FellowshipReferenda_Origins { + oneof { + FellowshipReferenda_StakingAdmin StakingAdmin = 1; + FellowshipReferenda_Treasurer Treasurer = 2; + FellowshipReferenda_FellowshipAdmin FellowshipAdmin = 3; + FellowshipReferenda_GeneralAdmin GeneralAdmin = 4; + FellowshipReferenda_ReferendumCanceller ReferendumCanceller = 5; + FellowshipReferenda_ReferendumKiller ReferendumKiller = 6; + FellowshipReferenda_SmallTipper SmallTipper = 7; + FellowshipReferenda_BigTipper BigTipper = 8; + FellowshipReferenda_SmallSpender SmallSpender = 9; + FellowshipReferenda_MediumSpender MediumSpender = 10; + FellowshipReferenda_BigSpender BigSpender = 11; + FellowshipReferenda_WhitelistedCaller WhitelistedCaller = 12; + FellowshipReferenda_FellowshipInitiates FellowshipInitiates = 13; + FellowshipReferenda_Fellows Fellows = 14; + FellowshipReferenda_FellowshipExperts FellowshipExperts = 15; + FellowshipReferenda_FellowshipMasters FellowshipMasters = 16; + FellowshipReferenda_Fellowship1Dan Fellowship1Dan = 17; + FellowshipReferenda_Fellowship2Dan Fellowship2Dan = 18; + FellowshipReferenda_Fellowship3Dan Fellowship3Dan = 19; + FellowshipReferenda_Fellowship4Dan Fellowship4Dan = 20; + FellowshipReferenda_Fellowship5Dan Fellowship5Dan = 21; + FellowshipReferenda_Fellowship6Dan Fellowship6Dan = 22; + FellowshipReferenda_Fellowship7Dan Fellowship7Dan = 23; + FellowshipReferenda_Fellowship8Dan Fellowship8Dan = 24; + FellowshipReferenda_Fellowship9Dan Fellowship9Dan = 25; + } +} +message Proxy_CreatePure_Call { + oneof proxy_type { + Proxy_Any Any = 1; + Proxy_NonTransfer NonTransfer = 2; + Proxy_Governance Governance = 3; + Proxy_Staking Staking = 4; + Proxy_IdentityJudgement IdentityJudgement = 5; + Proxy_CancelProxy CancelProxy = 6; + } + uint32 delay = 7; + uint32 index = 8; +} +message BagsList_Address32 { + repeated uint32 = 1; + +} +message Staking_SetValidatorCount_Call { + Compact_uint32 new = 1; +} +message Referenda_Fellowship2Dan { +} +message Multisig_AsMultiThreshold1_Call { + repeated sp_core_crypto_AccountId32 other_signatories = 1; + + oneof call { + System_remark_Call remark = 2; + System_set_heap_pages_Call set_heap_pages = 3; + System_set_code_Call set_code = 4; + System_set_code_without_checks_Call set_code_without_checks = 5; + System_set_storage_Call set_storage = 6; + System_kill_storage_Call kill_storage = 7; + System_kill_prefix_Call kill_prefix = 8; + System_remark_with_event_Call remark_with_event = 9; + Timestamp_set_Call set = 10; + Babe_report_equivocation_Call report_equivocation = 11; + Babe_report_equivocation_unsigned_Call report_equivocation_unsigned = 12; + Babe_plan_config_change_Call plan_config_change = 13; + Grandpa_report_equivocation_Call report_equivocation = 14; + Grandpa_report_equivocation_unsigned_Call report_equivocation_unsigned = 15; + Grandpa_note_stalled_Call note_stalled = 16; + Balances_transfer_allow_death_Call transfer_allow_death = 17; + Balances_force_transfer_Call force_transfer = 18; + Balances_transfer_keep_alive_Call transfer_keep_alive = 19; + Balances_transfer_all_Call transfer_all = 20; + Balances_force_unreserve_Call force_unreserve = 21; + Balances_upgrade_accounts_Call upgrade_accounts = 22; + Balances_force_set_balance_Call force_set_balance = 23; + Vesting_vest_Call vest = 24; + Vesting_vest_other_Call vest_other = 25; + Vesting_vested_transfer_Call vested_transfer = 26; + Vesting_force_vested_transfer_Call force_vested_transfer = 27; + Vesting_merge_schedules_Call merge_schedules = 28; + BagsList_rebag_Call rebag = 29; + BagsList_put_in_front_of_Call put_in_front_of = 30; + BagsList_put_in_front_of_other_Call put_in_front_of_other = 31; + ImOnline_heartbeat_Call heartbeat = 32; + Staking_bond_Call bond = 33; + Staking_bond_extra_Call bond_extra = 34; + Staking_unbond_Call unbond = 35; + Staking_withdraw_unbonded_Call withdraw_unbonded = 36; + Staking_validate_Call validate = 37; + Staking_nominate_Call nominate = 38; + Staking_chill_Call chill = 39; + Staking_set_payee_Call set_payee = 40; + Staking_set_controller_Call set_controller = 41; + Staking_set_validator_count_Call set_validator_count = 42; + Staking_increase_validator_count_Call increase_validator_count = 43; + Staking_scale_validator_count_Call scale_validator_count = 44; + Staking_force_no_eras_Call force_no_eras = 45; + Staking_force_new_era_Call force_new_era = 46; + Staking_set_invulnerables_Call set_invulnerables = 47; + Staking_force_unstake_Call force_unstake = 48; + Staking_force_new_era_always_Call force_new_era_always = 49; + Staking_cancel_deferred_slash_Call cancel_deferred_slash = 50; + Staking_payout_stakers_Call payout_stakers = 51; + Staking_rebond_Call rebond = 52; + Staking_reap_stash_Call reap_stash = 53; + Staking_kick_Call kick = 54; + Staking_set_staking_configs_Call set_staking_configs = 55; + Staking_chill_other_Call chill_other = 56; + Staking_force_apply_min_commission_Call force_apply_min_commission = 57; + Staking_set_min_commission_Call set_min_commission = 58; + Session_set_keys_Call set_keys = 59; + Session_purge_keys_Call purge_keys = 60; + Treasury_propose_spend_Call propose_spend = 61; + Treasury_reject_proposal_Call reject_proposal = 62; + Treasury_approve_proposal_Call approve_proposal = 63; + Treasury_spend_local_Call spend_local = 64; + Treasury_remove_approval_Call remove_approval = 65; + Treasury_spend_Call spend = 66; + Treasury_payout_Call payout = 67; + Treasury_check_status_Call check_status = 68; + Treasury_void_spend_Call void_spend = 69; + Utility_batch_Call batch = 70; + Utility_as_derivative_Call as_derivative = 71; + Utility_batch_all_Call batch_all = 72; + Utility_dispatch_as_Call dispatch_as = 73; + Utility_force_batch_Call force_batch = 74; + Utility_with_weight_Call with_weight = 75; + ConvictionVoting_vote_Call vote = 76; + ConvictionVoting_delegate_Call delegate = 77; + ConvictionVoting_undelegate_Call undelegate = 78; + ConvictionVoting_unlock_Call unlock = 79; + ConvictionVoting_remove_vote_Call remove_vote = 80; + ConvictionVoting_remove_other_vote_Call remove_other_vote = 81; + Referenda_submit_Call submit = 82; + Referenda_place_decision_deposit_Call place_decision_deposit = 83; + Referenda_refund_decision_deposit_Call refund_decision_deposit = 84; + Referenda_cancel_Call cancel = 85; + Referenda_kill_Call kill = 86; + Referenda_nudge_referendum_Call nudge_referendum = 87; + Referenda_one_fewer_deciding_Call one_fewer_deciding = 88; + Referenda_refund_submission_deposit_Call refund_submission_deposit = 89; + Referenda_set_metadata_Call set_metadata = 90; + FellowshipCollective_add_member_Call add_member = 91; + FellowshipCollective_promote_member_Call promote_member = 92; + FellowshipCollective_demote_member_Call demote_member = 93; + FellowshipCollective_remove_member_Call remove_member = 94; + FellowshipCollective_vote_Call vote = 95; + FellowshipCollective_cleanup_poll_Call cleanup_poll = 96; + FellowshipReferenda_submit_Call submit = 97; + FellowshipReferenda_place_decision_deposit_Call place_decision_deposit = 98; + FellowshipReferenda_refund_decision_deposit_Call refund_decision_deposit = 99; + FellowshipReferenda_cancel_Call cancel = 100; + FellowshipReferenda_kill_Call kill = 101; + FellowshipReferenda_nudge_referendum_Call nudge_referendum = 102; + FellowshipReferenda_one_fewer_deciding_Call one_fewer_deciding = 103; + FellowshipReferenda_refund_submission_deposit_Call refund_submission_deposit = 104; + FellowshipReferenda_set_metadata_Call set_metadata = 105; + Whitelist_whitelist_call_Call whitelist_call = 106; + Whitelist_remove_whitelisted_call_Call remove_whitelisted_call = 107; + Whitelist_dispatch_whitelisted_call_Call dispatch_whitelisted_call = 108; + Whitelist_dispatch_whitelisted_call_with_preimage_Call dispatch_whitelisted_call_with_preimage = 109; + Scheduler_schedule_Call schedule = 110; + Scheduler_cancel_Call cancel = 111; + Scheduler_schedule_named_Call schedule_named = 112; + Scheduler_cancel_named_Call cancel_named = 113; + Scheduler_schedule_after_Call schedule_after = 114; + Scheduler_schedule_named_after_Call schedule_named_after = 115; + Preimage_note_preimage_Call note_preimage = 116; + Preimage_unnote_preimage_Call unnote_preimage = 117; + Preimage_request_preimage_Call request_preimage = 118; + Preimage_unrequest_preimage_Call unrequest_preimage = 119; + Preimage_ensure_updated_Call ensure_updated = 120; + Identity_add_registrar_Call add_registrar = 121; + Identity_set_identity_Call set_identity = 122; + Identity_set_subs_Call set_subs = 123; + Identity_clear_identity_Call clear_identity = 124; + Identity_request_judgement_Call request_judgement = 125; + Identity_cancel_request_Call cancel_request = 126; + Identity_set_fee_Call set_fee = 127; + Identity_set_account_id_Call set_account_id = 128; + Identity_set_fields_Call set_fields = 129; + Identity_provide_judgement_Call provide_judgement = 130; + Identity_kill_identity_Call kill_identity = 131; + Identity_add_sub_Call add_sub = 132; + Identity_rename_sub_Call rename_sub = 133; + Identity_remove_sub_Call remove_sub = 134; + Identity_quit_sub_Call quit_sub = 135; + Proxy_proxy_Call proxy = 136; + Proxy_add_proxy_Call add_proxy = 137; + Proxy_remove_proxy_Call remove_proxy = 138; + Proxy_remove_proxies_Call remove_proxies = 139; + Proxy_create_pure_Call create_pure = 140; + Proxy_kill_pure_Call kill_pure = 141; + Proxy_announce_Call announce = 142; + Proxy_remove_announcement_Call remove_announcement = 143; + Proxy_reject_announcement_Call reject_announcement = 144; + Proxy_proxy_announced_Call proxy_announced = 145; + Multisig_as_multi_threshold_1_Call as_multi_threshold_1 = 146; + Multisig_as_multi_Call as_multi = 147; + Multisig_approve_as_multi_Call approve_as_multi = 148; + Multisig_cancel_as_multi_Call cancel_as_multi = 149; + ElectionProviderMultiPhase_submit_unsigned_Call submit_unsigned = 150; + ElectionProviderMultiPhase_set_minimum_untrusted_score_Call set_minimum_untrusted_score = 151; + ElectionProviderMultiPhase_set_emergency_election_result_Call set_emergency_election_result = 152; + ElectionProviderMultiPhase_submit_Call submit = 153; + ElectionProviderMultiPhase_governance_fallback_Call governance_fallback = 154; + Bounties_propose_bounty_Call propose_bounty = 155; + Bounties_approve_bounty_Call approve_bounty = 156; + Bounties_propose_curator_Call propose_curator = 157; + Bounties_unassign_curator_Call unassign_curator = 158; + Bounties_accept_curator_Call accept_curator = 159; + Bounties_award_bounty_Call award_bounty = 160; + Bounties_claim_bounty_Call claim_bounty = 161; + Bounties_close_bounty_Call close_bounty = 162; + Bounties_extend_bounty_expiry_Call extend_bounty_expiry = 163; + ChildBounties_add_child_bounty_Call add_child_bounty = 164; + ChildBounties_propose_curator_Call propose_curator = 165; + ChildBounties_accept_curator_Call accept_curator = 166; + ChildBounties_unassign_curator_Call unassign_curator = 167; + ChildBounties_award_child_bounty_Call award_child_bounty = 168; + ChildBounties_claim_child_bounty_Call claim_child_bounty = 169; + ChildBounties_close_child_bounty_Call close_child_bounty = 170; + NominationPools_join_Call join = 171; + NominationPools_bond_extra_Call bond_extra = 172; + NominationPools_claim_payout_Call claim_payout = 173; + NominationPools_unbond_Call unbond = 174; + NominationPools_pool_withdraw_unbonded_Call pool_withdraw_unbonded = 175; + NominationPools_withdraw_unbonded_Call withdraw_unbonded = 176; + NominationPools_create_Call create = 177; + NominationPools_create_with_pool_id_Call create_with_pool_id = 178; + NominationPools_nominate_Call nominate = 179; + NominationPools_set_state_Call set_state = 180; + NominationPools_set_metadata_Call set_metadata = 181; + NominationPools_set_configs_Call set_configs = 182; + NominationPools_update_roles_Call update_roles = 183; + NominationPools_chill_Call chill = 184; + NominationPools_bond_extra_other_Call bond_extra_other = 185; + NominationPools_set_claim_permission_Call set_claim_permission = 186; + NominationPools_claim_payout_other_Call claim_payout_other = 187; + NominationPools_set_commission_Call set_commission = 188; + NominationPools_set_commission_max_Call set_commission_max = 189; + NominationPools_set_commission_change_rate_Call set_commission_change_rate = 190; + NominationPools_claim_commission_Call claim_commission = 191; + NominationPools_adjust_pool_deposit_Call adjust_pool_deposit = 192; + Gear_upload_code_Call upload_code = 193; + Gear_upload_program_Call upload_program = 194; + Gear_create_program_Call create_program = 195; + Gear_send_message_Call send_message = 196; + Gear_send_reply_Call send_reply = 197; + Gear_claim_value_Call claim_value = 198; + Gear_run_Call run = 199; + Gear_set_execute_inherent_Call set_execute_inherent = 200; + StakingRewards_refill_Call refill = 201; + StakingRewards_force_refill_Call force_refill = 202; + StakingRewards_withdraw_Call withdraw = 203; + StakingRewards_align_supply_Call align_supply = 204; + GearVoucher_issue_Call issue = 205; + GearVoucher_call_Call call = 206; + GearVoucher_revoke_Call revoke = 207; + GearVoucher_update_Call update = 208; + GearVoucher_call_deprecated_Call call_deprecated = 209; + GearVoucher_decline_Call decline = 210; + } +} diff --git a/rpc/testdata/test.proto b/rpc/testdata/test.proto index 9e66a89..2febf34 100644 --- a/rpc/testdata/test.proto +++ b/rpc/testdata/test.proto @@ -111,9 +111,14 @@ message Timestamp { oneof CallFunction { Set set = 1; } + message Set { - uint64 now = 1; + Uint64 now = 1; } + + message Uint64 { + uint64 value = 1; + } } message Babe { @@ -308,4 +313,22 @@ message KillStorageCall { message Keys { bytes keys = 1; -} \ No newline at end of file +} + +message Compact_uint32_GEN { + uint32 value +} + +message pallet_conviction_voting_vote_AccountVote_GEN { + oneof vote { + pallet_conviction_voting_vote_AccountVote_standard + pallet_conviction_voting_vote_AccountVote_split + pallet_conviction_voting_vote_AccountVote_splitAbstain + } +} + +message ConvictionVoting_Vote_Call { + Compact_uint32 poll_index + pallet_conviction_voting_vote_AccountVote vote +} + diff --git a/types/metadata_types.go b/types/metadata_types.go index 8fafce0..890a54c 100644 --- a/types/metadata_types.go +++ b/types/metadata_types.go @@ -208,11 +208,11 @@ type Primitive struct { } func (p *Primitive) GetName() string { - return p.Si0TypeDefPrimitive.GetProtoFieldName() + return p.Si0TypeDefPrimitive.ToProtoMessage() } func (p *Primitive) GetProtoFieldName() string { - return p.Si0TypeDefPrimitive.GetProtoFieldName() + return p.Si0TypeDefPrimitive.ToProtoMessage() } func (p *Primitive) ToProtoMessage(options ...string) string { diff --git a/types/protobuf_types.go b/types/protobuf_types.go index fba4df1..30a78ad 100644 --- a/types/protobuf_types.go +++ b/types/protobuf_types.go @@ -24,14 +24,14 @@ func (p *ProtobufMessages) GetPackageName() string { func (p *ProtobufMessages) ToProtoMessage() string { var sb strings.Builder - sb.WriteString(p.GetSyntaxName()) - sb.WriteString(p.GetPackageName()) - - sb.WriteString("message Params {\n") - for i, message := range p.Messages { - sb.WriteString(fmt.Sprintf("%s = %d;\n", message.ToOneOfCallFunctions(), i+1)) - } - sb.WriteString("}\n") + // sb.WriteString(p.GetSyntaxName()) + // sb.WriteString(p.GetPackageName()) + + // sb.WriteString("message Params {\n") + // for i, message := range p.Messages { + // sb.WriteString(fmt.Sprintf("%s = %d;\n", message.ToOneOfCallFunctions(), i+1)) + // } + // sb.WriteString("}\n") for _, message := range p.Messages { sb.WriteString(message.ToProtoMessage())