diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cbf80d56..c2bcd70c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,6 +46,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) * [#235](https://github.com/babylonlabs-io/babylon/pull/235) Change default values for iavl cache when using `testnet` command +### API Breaking + +* [238](https://github.com/babylonlabs-io/babylon/pull/238) Add additional data +to delegation creation event + ## v0.14.1 ### API Breaking diff --git a/proto/babylon/btcstaking/v1/events.proto b/proto/babylon/btcstaking/v1/events.proto index 3815c6a6a..1c7634681 100644 --- a/proto/babylon/btcstaking/v1/events.proto +++ b/proto/babylon/btcstaking/v1/events.proto @@ -147,26 +147,30 @@ message EventBTCDelegationCreated { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation string staking_tx_hash = 1 [(amino.dont_omitempty) = true]; + // staking_output_pk_script is the hex encoded PK script of the staking output + string staking_output_pk_script = 2 [(amino.dont_omitempty) = true]; + // staking_output_index is the index of the staking output in the staking tx + string staking_output_index = 3 [(amino.dont_omitempty) = true]; // version of the params used to validate the delegation - string params_version = 2 [(amino.dont_omitempty) = true]; + string params_version = 4 [(amino.dont_omitempty) = true]; // finality_provider_btc_pks_hex is the list of hex str of Bitcoin secp256k1 PK of // the finality providers that this BTC delegation delegates to // the PK follows encoding in BIP-340 spec - repeated string finality_provider_btc_pks_hex = 3 [(amino.dont_omitempty) = true]; + repeated string finality_provider_btc_pks_hex = 5 [(amino.dont_omitempty) = true]; // staker_btc_pk_hex is the hex str of Bitcoin secp256k1 PK of the staker that // creates this BTC delegation the PK follows encoding in BIP-340 spec - string staker_btc_pk_hex = 4 [(amino.dont_omitempty) = true]; + string staker_btc_pk_hex = 6 [(amino.dont_omitempty) = true]; // staking_time is the timelock of the staking tx specified in the BTC script - string staking_time = 5 [(amino.dont_omitempty) = true]; + string staking_time = 7 [(amino.dont_omitempty) = true]; // staking_amount is the total amount of BTC stake in this delegation // quantified in satoshi - string staking_amount = 6 [(amino.dont_omitempty) = true]; + string staking_amount = 8 [(amino.dont_omitempty) = true]; // unbonding_time is the time is timelock on unbonding tx chosen by the staker - string unbonding_time = 7 [(amino.dont_omitempty) = true]; + string unbonding_time = 9 [(amino.dont_omitempty) = true]; // unbonding_tx is hex encoded bytes of the unsigned unbonding tx - string unbonding_tx = 8 [(amino.dont_omitempty) = true]; + string unbonding_tx = 10 [(amino.dont_omitempty) = true]; // new_state of the BTC delegation - string new_state = 9 [(amino.dont_omitempty) = true]; + string new_state = 11 [(amino.dont_omitempty) = true]; } // EventCovenantSignatureReceived is the event emitted when a covenant committee diff --git a/x/btcstaking/types/btc_delegation.go b/x/btcstaking/types/btc_delegation.go index 6986ade86..e9a877a26 100644 --- a/x/btcstaking/types/btc_delegation.go +++ b/x/btcstaking/types/btc_delegation.go @@ -162,6 +162,16 @@ func (d *BTCDelegation) MustGetStakingTxHash() chainhash.Hash { return txHash } +func (d *BTCDelegation) MustGetStakingTx() *wire.MsgTx { + stakingTx, err := bbn.NewBTCTxFromBytes(d.StakingTx) + + if err != nil { + panic(err) + } + + return stakingTx +} + func (d *BTCDelegation) ValidateBasic() error { if _, err := sdk.AccAddressFromBech32(d.StakerAddr); err != nil { return fmt.Errorf("invalid staker address: %s - %w", d.StakerAddr, err) diff --git a/x/btcstaking/types/events.go b/x/btcstaking/types/events.go index 268fe2d45..837442fdd 100644 --- a/x/btcstaking/types/events.go +++ b/x/btcstaking/types/events.go @@ -93,6 +93,8 @@ func NewBtcDelCreationEvent( ) *EventBTCDelegationCreated { return &EventBTCDelegationCreated{ StakingTxHash: stakingTxHash, + StakingOutputPkScript: hex.EncodeToString(btcDel.MustGetStakingTx().TxOut[btcDel.StakingOutputIdx].PkScript), + StakingOutputIndex: strconv.FormatUint(uint64(btcDel.StakingOutputIdx), 10), ParamsVersion: strconv.FormatUint(uint64(btcDel.ParamsVersion), 10), FinalityProviderBtcPksHex: btcDel.FinalityProviderKeys(), StakerBtcPkHex: btcDel.BtcPk.MarshalHex(), diff --git a/x/btcstaking/types/events.pb.go b/x/btcstaking/types/events.pb.go index 9f371dfba..5d393d9e9 100644 --- a/x/btcstaking/types/events.pb.go +++ b/x/btcstaking/types/events.pb.go @@ -704,26 +704,30 @@ type EventBTCDelegationCreated struct { // staking_tx_hash is the hash of the staking tx. // It uniquely identifies a BTC delegation StakingTxHash string `protobuf:"bytes,1,opt,name=staking_tx_hash,json=stakingTxHash,proto3" json:"staking_tx_hash,omitempty"` + // staking_output_pk_script is the hex encoded PK script of the staking output + StakingOutputPkScript string `protobuf:"bytes,2,opt,name=staking_output_pk_script,json=stakingOutputPkScript,proto3" json:"staking_output_pk_script,omitempty"` + // staking_output_index is the index of the staking output in the staking tx + StakingOutputIndex string `protobuf:"bytes,3,opt,name=staking_output_index,json=stakingOutputIndex,proto3" json:"staking_output_index,omitempty"` // version of the params used to validate the delegation - ParamsVersion string `protobuf:"bytes,2,opt,name=params_version,json=paramsVersion,proto3" json:"params_version,omitempty"` + ParamsVersion string `protobuf:"bytes,4,opt,name=params_version,json=paramsVersion,proto3" json:"params_version,omitempty"` // finality_provider_btc_pks_hex is the list of hex str of Bitcoin secp256k1 PK of // the finality providers that this BTC delegation delegates to // the PK follows encoding in BIP-340 spec - FinalityProviderBtcPksHex []string `protobuf:"bytes,3,rep,name=finality_provider_btc_pks_hex,json=finalityProviderBtcPksHex,proto3" json:"finality_provider_btc_pks_hex,omitempty"` + FinalityProviderBtcPksHex []string `protobuf:"bytes,5,rep,name=finality_provider_btc_pks_hex,json=finalityProviderBtcPksHex,proto3" json:"finality_provider_btc_pks_hex,omitempty"` // staker_btc_pk_hex is the hex str of Bitcoin secp256k1 PK of the staker that // creates this BTC delegation the PK follows encoding in BIP-340 spec - StakerBtcPkHex string `protobuf:"bytes,4,opt,name=staker_btc_pk_hex,json=stakerBtcPkHex,proto3" json:"staker_btc_pk_hex,omitempty"` + StakerBtcPkHex string `protobuf:"bytes,6,opt,name=staker_btc_pk_hex,json=stakerBtcPkHex,proto3" json:"staker_btc_pk_hex,omitempty"` // staking_time is the timelock of the staking tx specified in the BTC script - StakingTime string `protobuf:"bytes,5,opt,name=staking_time,json=stakingTime,proto3" json:"staking_time,omitempty"` + StakingTime string `protobuf:"bytes,7,opt,name=staking_time,json=stakingTime,proto3" json:"staking_time,omitempty"` // staking_amount is the total amount of BTC stake in this delegation // quantified in satoshi - StakingAmount string `protobuf:"bytes,6,opt,name=staking_amount,json=stakingAmount,proto3" json:"staking_amount,omitempty"` + StakingAmount string `protobuf:"bytes,8,opt,name=staking_amount,json=stakingAmount,proto3" json:"staking_amount,omitempty"` // unbonding_time is the time is timelock on unbonding tx chosen by the staker - UnbondingTime string `protobuf:"bytes,7,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"` + UnbondingTime string `protobuf:"bytes,9,opt,name=unbonding_time,json=unbondingTime,proto3" json:"unbonding_time,omitempty"` // unbonding_tx is hex encoded bytes of the unsigned unbonding tx - UnbondingTx string `protobuf:"bytes,8,opt,name=unbonding_tx,json=unbondingTx,proto3" json:"unbonding_tx,omitempty"` + UnbondingTx string `protobuf:"bytes,10,opt,name=unbonding_tx,json=unbondingTx,proto3" json:"unbonding_tx,omitempty"` // new_state of the BTC delegation - NewState string `protobuf:"bytes,9,opt,name=new_state,json=newState,proto3" json:"new_state,omitempty"` + NewState string `protobuf:"bytes,11,opt,name=new_state,json=newState,proto3" json:"new_state,omitempty"` } func (m *EventBTCDelegationCreated) Reset() { *m = EventBTCDelegationCreated{} } @@ -766,6 +770,20 @@ func (m *EventBTCDelegationCreated) GetStakingTxHash() string { return "" } +func (m *EventBTCDelegationCreated) GetStakingOutputPkScript() string { + if m != nil { + return m.StakingOutputPkScript + } + return "" +} + +func (m *EventBTCDelegationCreated) GetStakingOutputIndex() string { + if m != nil { + return m.StakingOutputIndex + } + return "" +} + func (m *EventBTCDelegationCreated) GetParamsVersion() string { if m != nil { return m.ParamsVersion @@ -1249,85 +1267,88 @@ func init() { } var fileDescriptor_74118427820fff75 = []byte{ - // 1241 bytes of a gzipped FileDescriptorProto + // 1290 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0xcb, 0x6f, 0xdb, 0xc6, - 0x13, 0x36, 0x25, 0x3f, 0xd7, 0x79, 0x38, 0xfc, 0xe5, 0x17, 0xc8, 0x6a, 0xa2, 0x38, 0xca, 0x03, - 0x6e, 0xd0, 0x48, 0x79, 0xf8, 0xd0, 0xab, 0x64, 0xcb, 0x91, 0x52, 0xc3, 0x55, 0x29, 0x3b, 0x40, - 0x7b, 0x21, 0x96, 0xe4, 0x58, 0xda, 0x8a, 0xda, 0x25, 0xc8, 0xa5, 0x2c, 0xdd, 0x0b, 0xf4, 0x9a, - 0x73, 0x81, 0xde, 0x7b, 0x6b, 0xff, 0x8b, 0xf6, 0x52, 0x20, 0x97, 0x02, 0x45, 0x0f, 0x45, 0x11, - 0x1f, 0xfa, 0x5f, 0x14, 0x05, 0x77, 0x97, 0x94, 0x68, 0x53, 0x89, 0x5d, 0x24, 0x17, 0xc3, 0xdc, - 0xf9, 0x66, 0xbe, 0x99, 0x6f, 0x76, 0x66, 0x21, 0x54, 0xb6, 0xb0, 0x35, 0x76, 0x19, 0xad, 0x5a, - 0xdc, 0x0e, 0x38, 0xee, 0x13, 0xda, 0xad, 0x0e, 0x9f, 0x54, 0x61, 0x08, 0x94, 0x07, 0x15, 0xcf, - 0x67, 0x9c, 0xe9, 0xff, 0x57, 0x98, 0xca, 0x04, 0x53, 0x19, 0x3e, 0x29, 0x5e, 0xef, 0xb2, 0x2e, - 0x13, 0x88, 0x6a, 0xf4, 0x9f, 0x04, 0x17, 0xef, 0xd9, 0x2c, 0x18, 0xb0, 0xa0, 0x3a, 0x09, 0x66, - 0x01, 0xc7, 0x4f, 0xe2, 0x6f, 0x85, 0x7a, 0x90, 0x4d, 0x3b, 0x45, 0x20, 0x71, 0xeb, 0x32, 0x9a, - 0x29, 0x69, 0xe4, 0x87, 0x32, 0x5d, 0xc3, 0x03, 0x42, 0x59, 0x55, 0xfc, 0x95, 0x47, 0xe5, 0xef, - 0x72, 0xe8, 0x66, 0x23, 0xca, 0x7c, 0x97, 0x50, 0xec, 0x12, 0x3e, 0x6e, 0xfb, 0x6c, 0x48, 0x1c, - 0xf0, 0xb7, 0x7d, 0xc0, 0x1c, 0x1c, 0xfd, 0x2e, 0x42, 0x16, 0xb7, 0x4d, 0xaf, 0x6f, 0xf6, 0x60, - 0x54, 0xd0, 0x36, 0xb4, 0xcd, 0x95, 0xfa, 0xc2, 0x0f, 0x7f, 0xff, 0xf4, 0x50, 0x33, 0x96, 0x2d, - 0x6e, 0xb7, 0xfb, 0x4d, 0x18, 0xe9, 0xeb, 0x68, 0x1e, 0x3b, 0x8e, 0x5f, 0xc8, 0x4d, 0x9b, 0xc5, - 0x91, 0x7e, 0x1f, 0x21, 0x9b, 0x0d, 0x06, 0x24, 0x08, 0x08, 0xa3, 0x85, 0xfc, 0x34, 0x60, 0xca, - 0xa0, 0x17, 0xd0, 0xd2, 0x80, 0x51, 0xd2, 0x07, 0xbf, 0x30, 0x1f, 0x61, 0x8c, 0xf8, 0x53, 0x2f, - 0xa2, 0x65, 0xe2, 0x00, 0xe5, 0x84, 0x8f, 0x0b, 0x0b, 0xc2, 0x94, 0x7c, 0x47, 0x5e, 0xc7, 0x60, - 0x05, 0x84, 0x43, 0x61, 0x51, 0x7a, 0xa9, 0x4f, 0xfd, 0x63, 0xb4, 0x16, 0x80, 0x1d, 0xfa, 0x84, - 0x8f, 0x4d, 0x9b, 0x51, 0x8e, 0x6d, 0x5e, 0x58, 0x12, 0x90, 0xab, 0xf1, 0xf9, 0xb6, 0x3c, 0x8e, - 0x82, 0x38, 0xc0, 0x31, 0x71, 0x83, 0xc2, 0xb2, 0x0c, 0xa2, 0x3e, 0xcb, 0xff, 0x68, 0xe8, 0xa3, - 0x4c, 0x71, 0x1a, 0x0e, 0x39, 0xb7, 0x36, 0x69, 0x01, 0x72, 0xe7, 0x10, 0x20, 0x3f, 0x5b, 0x80, - 0xf9, 0xd9, 0x02, 0x2c, 0xbc, 0x5b, 0x80, 0xc5, 0x77, 0x0a, 0xb0, 0x94, 0x16, 0xe0, 0x95, 0x86, - 0x6e, 0x09, 0x01, 0xea, 0x07, 0xdb, 0x3b, 0xe0, 0x42, 0x17, 0x73, 0xc2, 0x68, 0x87, 0x63, 0x0e, - 0x87, 0x9e, 0x83, 0x39, 0xe8, 0x0f, 0xd0, 0x55, 0x75, 0xfd, 0x4c, 0x3e, 0x32, 0x7b, 0x38, 0xe8, - 0x49, 0x1d, 0x8c, 0xcb, 0xea, 0xf8, 0x60, 0xd4, 0xc4, 0x41, 0x4f, 0x7f, 0x8e, 0x56, 0x28, 0x1c, - 0x9b, 0x41, 0xe4, 0x2a, 0x44, 0xb8, 0xf2, 0xf4, 0x61, 0x25, 0x73, 0x48, 0x2a, 0x67, 0xb8, 0xc2, - 0xc0, 0x58, 0xa6, 0x70, 0x2c, 0x68, 0xcb, 0x47, 0xe8, 0x86, 0xc8, 0xa8, 0x03, 0x2e, 0xd8, 0x9c, - 0x0c, 0xa1, 0xe3, 0xe2, 0xa0, 0x47, 0x68, 0x57, 0xdf, 0x43, 0xcb, 0x10, 0x75, 0x87, 0xda, 0x20, - 0x72, 0x58, 0x7d, 0xfa, 0x78, 0x06, 0xc3, 0x19, 0xdf, 0x86, 0xf2, 0x33, 0x92, 0x08, 0xe5, 0x6f, - 0x16, 0xd1, 0x75, 0x41, 0xd4, 0x66, 0xc7, 0xe0, 0xef, 0x90, 0x80, 0xab, 0x8a, 0x09, 0x42, 0x41, - 0xe4, 0x06, 0x8e, 0x79, 0xe4, 0x29, 0xa2, 0xe6, 0x0c, 0xa2, 0xac, 0x00, 0xf2, 0xb0, 0x23, 0x43, - 0x9c, 0xbe, 0x58, 0xcd, 0x39, 0x63, 0x45, 0x45, 0xdf, 0xf5, 0xf4, 0x23, 0xb4, 0xf2, 0x35, 0x26, - 0xae, 0x64, 0xca, 0x09, 0xa6, 0xe7, 0x17, 0x66, 0x7a, 0x21, 0x22, 0x64, 0x10, 0x2d, 0xcb, 0xd8, - 0xbb, 0x9e, 0xee, 0xa2, 0xd5, 0x90, 0x4e, 0x98, 0xf2, 0x82, 0xa9, 0x75, 0x61, 0xa6, 0x43, 0x15, - 0x23, 0x83, 0x0b, 0xc5, 0xf1, 0x77, 0x3d, 0xbd, 0x8b, 0xae, 0x47, 0x53, 0xe3, 0x80, 0x2b, 0xaf, - 0x83, 0x19, 0x8a, 0x18, 0xe2, 0x6e, 0xaf, 0x3e, 0xdd, 0x7a, 0x1b, 0xed, 0xac, 0x6b, 0xd8, 0x9c, - 0x33, 0xae, 0x59, 0xdc, 0xde, 0x01, 0x77, 0xea, 0xb0, 0xd8, 0x53, 0xab, 0x6d, 0x86, 0xd6, 0x7a, - 0x13, 0xe5, 0xbc, 0xbe, 0xe8, 0xe0, 0xa5, 0xfa, 0xa7, 0x7f, 0xfc, 0x79, 0x7b, 0xab, 0x4b, 0x78, - 0x2f, 0xb4, 0x2a, 0x36, 0x1b, 0x54, 0x55, 0x12, 0x2e, 0xb6, 0x82, 0x47, 0x84, 0xc5, 0x9f, 0x55, - 0x3e, 0xf6, 0x20, 0xa8, 0xd4, 0x5b, 0xed, 0x67, 0x5b, 0x8f, 0xdb, 0xa1, 0xf5, 0x19, 0x8c, 0x8d, - 0x9c, 0xd7, 0x2f, 0x76, 0xd5, 0x9e, 0xc8, 0xd6, 0xfa, 0x3d, 0x12, 0x11, 0x35, 0x8f, 0xb3, 0xa4, - 0x7e, 0x7f, 0x54, 0xf5, 0x79, 0x94, 0x83, 0x61, 0x19, 0xd0, 0x9d, 0xcc, 0x0d, 0x28, 0xe7, 0x72, - 0xbb, 0x87, 0x69, 0x17, 0xf4, 0x9b, 0x68, 0x51, 0xee, 0xc1, 0xf4, 0x0e, 0x5c, 0x10, 0x3b, 0x50, - 0x2f, 0x9f, 0x1e, 0xfd, 0xc9, 0x92, 0x4c, 0xa6, 0xfa, 0xe7, 0x3c, 0x5a, 0x3f, 0xdb, 0xe1, 0xf8, - 0x0d, 0x7a, 0x34, 0x63, 0xc9, 0xc4, 0x71, 0x4e, 0xed, 0x9a, 0x4f, 0xd0, 0x15, 0x0f, 0xfb, 0x78, - 0x10, 0x98, 0x43, 0xf0, 0xcf, 0x6e, 0xdd, 0xcb, 0xd2, 0xf8, 0x52, 0xda, 0xf4, 0xe7, 0xe8, 0xd6, - 0x91, 0x2a, 0x2e, 0x7a, 0x33, 0x45, 0x75, 0xa6, 0x2c, 0x27, 0x10, 0x7b, 0x3d, 0xbf, 0x91, 0x9f, - 0x38, 0xaf, 0x1f, 0x9d, 0x12, 0xa2, 0x1e, 0xd5, 0x18, 0x44, 0x8b, 0xfe, 0x31, 0xba, 0x16, 0xe5, - 0x91, 0x78, 0x0b, 0xe7, 0xf9, 0x69, 0xe6, 0x2b, 0xd2, 0x5e, 0x8f, 0x9f, 0x86, 0x4d, 0x74, 0x29, - 0xa9, 0x8b, 0x0c, 0xd4, 0x0a, 0x8f, 0xc1, 0xab, 0x71, 0x51, 0x64, 0x00, 0x51, 0x49, 0x31, 0x12, - 0x0f, 0x58, 0x48, 0xd5, 0x2e, 0x3f, 0x2d, 0x40, 0x4d, 0xd8, 0x22, 0x74, 0x48, 0x2d, 0x46, 0x9d, - 0x24, 0xf2, 0x52, 0x0a, 0x9d, 0x18, 0x45, 0xec, 0x4d, 0x74, 0x69, 0x0a, 0x3d, 0x92, 0x8f, 0x60, - 0x92, 0xc5, 0x04, 0x3b, 0x4a, 0x77, 0x72, 0x25, 0xbb, 0x93, 0xbf, 0x69, 0xa8, 0x24, 0x3a, 0xb9, - 0xcd, 0x86, 0x40, 0x31, 0xe5, 0x1d, 0xd2, 0xa5, 0x98, 0x87, 0x3e, 0x18, 0x60, 0x03, 0x19, 0x5e, - 0xbc, 0x9d, 0x5b, 0xe8, 0x7f, 0xb6, 0x8a, 0x35, 0xad, 0x6c, 0xaa, 0xa7, 0x6b, 0x31, 0x22, 0xd1, - 0x76, 0x1f, 0x6d, 0x24, 0x5e, 0x93, 0xf2, 0x82, 0x38, 0x19, 0xd5, 0xd9, 0xa9, 0x10, 0xb7, 0x62, - 0xf8, 0x61, 0x8c, 0x4e, 0x32, 0x6f, 0xc2, 0xa8, 0xcc, 0x50, 0x31, 0x55, 0xd6, 0x17, 0x21, 0xf3, - 0xc3, 0x81, 0x01, 0xd8, 0xee, 0x5d, 0xbc, 0xa4, 0xf3, 0x8c, 0xc4, 0xaf, 0x1a, 0xda, 0x3c, 0x3b, - 0x12, 0x2d, 0x6a, 0xbb, 0x61, 0x74, 0x6f, 0xdb, 0x3e, 0x63, 0x47, 0xff, 0x55, 0x52, 0x79, 0xf1, - 0x7c, 0x6e, 0xf6, 0x80, 0x74, 0x7b, 0x3c, 0x9d, 0xc2, 0xaa, 0x30, 0x35, 0x85, 0x45, 0xbf, 0x87, - 0x10, 0x50, 0x27, 0xc6, 0xa5, 0x04, 0x5b, 0x01, 0xea, 0x28, 0x54, 0xaa, 0x9e, 0xf9, 0xec, 0x7a, - 0xbe, 0x8f, 0x2f, 0x86, 0xac, 0x47, 0x96, 0x23, 0xb5, 0x06, 0xa7, 0x81, 0x7d, 0x77, 0xfc, 0xe1, - 0xaa, 0x48, 0xe5, 0x97, 0xcf, 0xce, 0x8f, 0x66, 0x6d, 0xa0, 0xc6, 0xc8, 0x23, 0xfe, 0x87, 0xe9, - 0xef, 0xb7, 0x39, 0x75, 0xa3, 0x0e, 0x29, 0x8c, 0x3c, 0xb0, 0x39, 0x38, 0x87, 0x53, 0xb3, 0x76, - 0xf1, 0x21, 0x09, 0xbc, 0xa8, 0x53, 0x62, 0xc5, 0x24, 0x2e, 0xe9, 0x21, 0x11, 0x88, 0x4e, 0x04, - 0x50, 0x5e, 0x35, 0x54, 0x3c, 0xed, 0x05, 0x38, 0xda, 0x7f, 0xc2, 0x39, 0x25, 0xd4, 0x8d, 0x94, - 0xb3, 0x40, 0xcd, 0x08, 0x61, 0xb9, 0xcc, 0xee, 0x9b, 0x84, 0x3a, 0x6a, 0xfd, 0x5d, 0xce, 0x0c, - 0x51, 0x8f, 0x50, 0xad, 0x08, 0xf4, 0xf0, 0x47, 0x0d, 0xdd, 0xc8, 0x7e, 0x5f, 0xf4, 0xfb, 0xe8, - 0xce, 0x6e, 0x6b, 0xbf, 0xb6, 0xd7, 0x3a, 0xf8, 0xd2, 0x6c, 0x1b, 0x9f, 0xbf, 0x6c, 0xed, 0x34, - 0x0c, 0xb3, 0x73, 0x50, 0x3b, 0x38, 0xec, 0x98, 0xad, 0xfd, 0xda, 0xf6, 0x41, 0xeb, 0x65, 0x63, - 0x6d, 0x4e, 0xbf, 0x8b, 0x6e, 0xcf, 0x84, 0x29, 0x90, 0xf6, 0x56, 0xd0, 0x8b, 0x5a, 0x6b, 0xaf, - 0xb1, 0xb3, 0x96, 0xd3, 0xef, 0xa1, 0x8d, 0x99, 0xa0, 0xce, 0x5e, 0xad, 0xd3, 0x6c, 0xec, 0xac, - 0xe5, 0xeb, 0xfb, 0xbf, 0xbc, 0x29, 0x69, 0xaf, 0xdf, 0x94, 0xb4, 0xbf, 0xde, 0x94, 0xb4, 0x57, - 0x27, 0xa5, 0xb9, 0xd7, 0x27, 0xa5, 0xb9, 0xdf, 0x4f, 0x4a, 0x73, 0x5f, 0x9d, 0xe3, 0xbd, 0x1d, - 0x4d, 0xff, 0x82, 0x13, 0x8f, 0xaf, 0xb5, 0x28, 0x7e, 0x8c, 0x3d, 0xfb, 0x37, 0x00, 0x00, 0xff, - 0xff, 0x6e, 0x87, 0xad, 0x9c, 0x5b, 0x0e, 0x00, 0x00, + 0x13, 0xb6, 0x64, 0xd9, 0xb1, 0xc7, 0x79, 0x38, 0xfc, 0x39, 0x81, 0xac, 0x5f, 0xa2, 0x38, 0xca, + 0x03, 0x6e, 0xd0, 0x48, 0x79, 0x18, 0x68, 0x4f, 0x05, 0x24, 0x5b, 0x8e, 0x94, 0x1a, 0x8e, 0x2a, + 0xd9, 0x01, 0xda, 0x0b, 0xb1, 0x24, 0xc7, 0xd2, 0x56, 0xd4, 0x2e, 0x41, 0x2e, 0x65, 0xe9, 0x5e, + 0xa0, 0xd7, 0x9c, 0x0b, 0xf4, 0xde, 0x5b, 0xfb, 0x27, 0xf4, 0xd8, 0x4b, 0x81, 0x5c, 0x0a, 0x14, + 0x3d, 0x14, 0x45, 0x7c, 0xe8, 0x7f, 0x51, 0x14, 0xdc, 0x25, 0x25, 0x51, 0xa6, 0x12, 0xbb, 0x48, + 0x2e, 0x86, 0x77, 0xe7, 0x9b, 0xf9, 0x66, 0x3f, 0xce, 0x03, 0x82, 0x82, 0x41, 0x8c, 0xa1, 0xcd, + 0x59, 0xc9, 0x10, 0xa6, 0x27, 0x48, 0x97, 0xb2, 0x76, 0xa9, 0xff, 0xb8, 0x84, 0x7d, 0x64, 0xc2, + 0x2b, 0x3a, 0x2e, 0x17, 0x5c, 0xbb, 0x16, 0x62, 0x8a, 0x63, 0x4c, 0xb1, 0xff, 0x38, 0xb7, 0xd6, + 0xe6, 0x6d, 0x2e, 0x11, 0xa5, 0xe0, 0x3f, 0x05, 0xce, 0xdd, 0x35, 0xb9, 0xd7, 0xe3, 0x5e, 0x69, + 0x1c, 0xcc, 0x40, 0x41, 0x1e, 0x47, 0xe7, 0x10, 0x75, 0x3f, 0x99, 0x76, 0x82, 0x40, 0xe1, 0xd6, + 0x55, 0x34, 0x5d, 0xd1, 0xa8, 0x43, 0x68, 0xba, 0x4a, 0x7a, 0x94, 0xf1, 0x92, 0xfc, 0xab, 0xae, + 0x0a, 0xdf, 0xa5, 0xe1, 0x46, 0x35, 0xc8, 0x7c, 0x97, 0x32, 0x62, 0x53, 0x31, 0x6c, 0xb8, 0xbc, + 0x4f, 0x2d, 0x74, 0xb7, 0x5d, 0x24, 0x02, 0x2d, 0xed, 0x0e, 0x80, 0x21, 0x4c, 0xdd, 0xe9, 0xea, + 0x1d, 0x1c, 0x64, 0x53, 0x1b, 0xa9, 0xcd, 0xe5, 0xca, 0xc2, 0x0f, 0x7f, 0xff, 0xf4, 0x20, 0xd5, + 0x5c, 0x32, 0x84, 0xd9, 0xe8, 0xd6, 0x70, 0xa0, 0xad, 0x43, 0x86, 0x58, 0x96, 0x9b, 0x4d, 0x4f, + 0x9a, 0xe5, 0x95, 0x76, 0x0f, 0xc0, 0xe4, 0xbd, 0x1e, 0xf5, 0x3c, 0xca, 0x59, 0x76, 0x7e, 0x12, + 0x30, 0x61, 0xd0, 0xb2, 0x70, 0xa1, 0xc7, 0x19, 0xed, 0xa2, 0x9b, 0xcd, 0x04, 0x98, 0x66, 0x74, + 0xd4, 0x72, 0xb0, 0x44, 0x2d, 0x64, 0x82, 0x8a, 0x61, 0x76, 0x41, 0x9a, 0x46, 0xe7, 0xc0, 0xeb, + 0x18, 0x0d, 0x8f, 0x0a, 0xcc, 0x2e, 0x2a, 0xaf, 0xf0, 0xa8, 0x7d, 0x04, 0xab, 0x1e, 0x9a, 0xbe, + 0x4b, 0xc5, 0x50, 0x37, 0x39, 0x13, 0xc4, 0x14, 0xd9, 0x0b, 0x12, 0x72, 0x25, 0xba, 0xdf, 0x56, + 0xd7, 0x41, 0x10, 0x0b, 0x05, 0xa1, 0xb6, 0x97, 0x5d, 0x52, 0x41, 0xc2, 0x63, 0xe1, 0x9f, 0x14, + 0xfc, 0x3f, 0x51, 0x9c, 0xaa, 0x45, 0xcf, 0xac, 0x4d, 0x5c, 0x80, 0xf4, 0x19, 0x04, 0x98, 0x9f, + 0x2d, 0x40, 0x66, 0xb6, 0x00, 0x0b, 0xef, 0x16, 0x60, 0xf1, 0x9d, 0x02, 0x5c, 0x88, 0x0b, 0xf0, + 0x2a, 0x05, 0x37, 0xa5, 0x00, 0x95, 0x83, 0xed, 0x1d, 0xb4, 0xb1, 0x4d, 0x04, 0xe5, 0xac, 0x25, + 0x88, 0xc0, 0x43, 0xc7, 0x22, 0x02, 0xb5, 0xfb, 0x70, 0x25, 0x2c, 0x3f, 0x5d, 0x0c, 0xf4, 0x0e, + 0xf1, 0x3a, 0x4a, 0x87, 0xe6, 0xa5, 0xf0, 0xfa, 0x60, 0x50, 0x23, 0x5e, 0x47, 0x7b, 0x06, 0xcb, + 0x0c, 0x8f, 0x75, 0x2f, 0x70, 0x95, 0x22, 0x5c, 0x7e, 0xf2, 0xa0, 0x98, 0xd8, 0x24, 0xc5, 0x53, + 0x5c, 0xbe, 0xd7, 0x5c, 0x62, 0x78, 0x2c, 0x69, 0x0b, 0x47, 0x70, 0x5d, 0x66, 0xd4, 0x42, 0x1b, + 0x4d, 0x41, 0xfb, 0xd8, 0xb2, 0x89, 0xd7, 0xa1, 0xac, 0xad, 0xed, 0xc1, 0x12, 0x06, 0x5f, 0x87, + 0x99, 0x28, 0x73, 0x58, 0x79, 0xf2, 0x68, 0x06, 0xc3, 0x29, 0xdf, 0x6a, 0xe8, 0xd7, 0x1c, 0x45, + 0x28, 0x7c, 0xb3, 0x08, 0x6b, 0x92, 0xa8, 0xc1, 0x8f, 0xd1, 0xdd, 0xa1, 0x9e, 0x08, 0x5f, 0x4c, + 0x01, 0xbc, 0xc0, 0x0d, 0x2d, 0xfd, 0xc8, 0x09, 0x89, 0x6a, 0x33, 0x88, 0x92, 0x02, 0xa8, 0xcb, + 0x96, 0x0a, 0x31, 0x5d, 0x58, 0xb5, 0xb9, 0xe6, 0x72, 0x18, 0x7d, 0xd7, 0xd1, 0x8e, 0x60, 0xf9, + 0x6b, 0x42, 0x6d, 0xc5, 0x94, 0x96, 0x4c, 0xcf, 0xce, 0xcd, 0xf4, 0x5c, 0x46, 0x48, 0x20, 0x5a, + 0x52, 0xb1, 0x77, 0x1d, 0xcd, 0x86, 0x15, 0x9f, 0x8d, 0x99, 0xe6, 0x25, 0x53, 0xfd, 0xdc, 0x4c, + 0x87, 0x61, 0x8c, 0x04, 0x2e, 0x88, 0xe2, 0xef, 0x3a, 0x5a, 0x1b, 0xd6, 0x82, 0xae, 0xb1, 0xd0, + 0x56, 0xe5, 0xa0, 0xfb, 0x32, 0x86, 0xac, 0xed, 0x95, 0x27, 0x5b, 0x6f, 0xa3, 0x9d, 0x55, 0x86, + 0xb5, 0xb9, 0xe6, 0x55, 0x43, 0x98, 0x3b, 0x68, 0x4f, 0x5c, 0xe6, 0x3a, 0xe1, 0x68, 0x9b, 0xa1, + 0xb5, 0x56, 0x83, 0xb4, 0xd3, 0x95, 0x5f, 0xf0, 0x62, 0xe5, 0xd3, 0x3f, 0xfe, 0xbc, 0xb5, 0xd5, + 0xa6, 0xa2, 0xe3, 0x1b, 0x45, 0x93, 0xf7, 0x4a, 0x61, 0x12, 0x36, 0x31, 0xbc, 0x87, 0x94, 0x47, + 0xc7, 0x92, 0x18, 0x3a, 0xe8, 0x15, 0x2b, 0xf5, 0xc6, 0xd3, 0xad, 0x47, 0x0d, 0xdf, 0xf8, 0x1c, + 0x87, 0xcd, 0xb4, 0xd3, 0xcd, 0xb5, 0xc3, 0x39, 0x91, 0xac, 0xf5, 0x7b, 0x24, 0xa2, 0x61, 0x3f, + 0xce, 0x92, 0xfa, 0xfd, 0x51, 0x55, 0x32, 0x90, 0xc6, 0x7e, 0x01, 0xe1, 0x76, 0xe2, 0x04, 0x54, + 0x7d, 0xb9, 0xdd, 0x21, 0xac, 0x8d, 0xda, 0x0d, 0x58, 0x54, 0x73, 0x30, 0x3e, 0x03, 0x17, 0xe4, + 0x0c, 0xd4, 0x0a, 0xd3, 0xad, 0x3f, 0x1e, 0x92, 0xa3, 0xae, 0xfe, 0x39, 0x03, 0xeb, 0xa7, 0xbf, + 0x70, 0xb4, 0x83, 0x1e, 0xce, 0x18, 0x32, 0x51, 0x9c, 0xa9, 0x59, 0xf3, 0x19, 0x64, 0x23, 0x38, + 0xf7, 0x85, 0xe3, 0x8b, 0x60, 0x42, 0x7b, 0xa6, 0x4b, 0x1d, 0x11, 0xe7, 0xbf, 0x16, 0xc2, 0x5e, + 0x48, 0x54, 0xa3, 0xdb, 0x92, 0x18, 0xed, 0x13, 0x58, 0x9b, 0xf2, 0xa7, 0xcc, 0xc2, 0x41, 0x7c, + 0x79, 0x69, 0x31, 0xdf, 0x7a, 0x00, 0xd0, 0x3e, 0x86, 0xcb, 0x0e, 0x71, 0x49, 0xcf, 0xd3, 0xfb, + 0xe8, 0xca, 0x71, 0x9f, 0x89, 0xa5, 0xa9, 0x8c, 0x2f, 0x95, 0x4d, 0x7b, 0x06, 0x37, 0x8f, 0x42, + 0x55, 0x83, 0x65, 0x2d, 0x65, 0xd5, 0x95, 0x8e, 0x9e, 0x5c, 0x28, 0x0b, 0x1b, 0xf3, 0x63, 0xe7, + 0xf5, 0xa3, 0xa9, 0x2f, 0x50, 0x09, 0xc4, 0xf5, 0x82, 0x0d, 0xf3, 0x08, 0xae, 0x06, 0xc9, 0x8c, + 0xbc, 0xa5, 0xf3, 0xe2, 0x24, 0xf3, 0x65, 0x65, 0xaf, 0x44, 0x3b, 0x69, 0x13, 0x2e, 0x8e, 0x04, + 0xa5, 0x3d, 0x54, 0x63, 0x3f, 0x02, 0xaf, 0x44, 0x6a, 0xd2, 0x1e, 0x06, 0x4f, 0x8a, 0x90, 0xa4, + 0xc7, 0x7d, 0x26, 0xd4, 0x8e, 0x9c, 0x56, 0xbe, 0x2c, 0x6d, 0x01, 0xda, 0x67, 0x06, 0x67, 0xd6, + 0x28, 0xf2, 0x72, 0x0c, 0x3d, 0x32, 0xca, 0xd8, 0x9b, 0x70, 0x71, 0x02, 0x3d, 0xc8, 0x42, 0x2c, + 0x8b, 0x31, 0x76, 0x10, 0x2f, 0xa1, 0x95, 0xe4, 0x12, 0xfa, 0x2d, 0x05, 0x79, 0x59, 0x42, 0xdb, + 0xbc, 0x8f, 0x8c, 0x30, 0xd1, 0xa2, 0x6d, 0x46, 0x84, 0xef, 0x62, 0x13, 0x4d, 0xa4, 0xfd, 0xf3, + 0xd7, 0xd1, 0x16, 0xfc, 0xcf, 0x0c, 0x63, 0x4d, 0x2a, 0x1b, 0x2b, 0xa1, 0xd5, 0x08, 0x31, 0xd2, + 0x76, 0x1f, 0x36, 0x46, 0x5e, 0xe3, 0xe7, 0x79, 0x51, 0x32, 0x32, 0x44, 0xac, 0x92, 0x6e, 0x46, + 0xf0, 0xc3, 0x08, 0x3d, 0xca, 0xbc, 0x86, 0x83, 0x02, 0x87, 0x5c, 0xec, 0x59, 0x5f, 0xf8, 0xdc, + 0xf5, 0x7b, 0x4d, 0x24, 0x66, 0xe7, 0xfc, 0x4f, 0x3a, 0x4b, 0x2f, 0xfe, 0x9a, 0x82, 0xcd, 0xd3, + 0xbd, 0x58, 0x67, 0xa6, 0xed, 0x07, 0x75, 0xdb, 0x70, 0x39, 0x3f, 0xfa, 0xaf, 0x92, 0xaa, 0xc2, + 0x73, 0x85, 0xde, 0x41, 0xda, 0xee, 0x4c, 0xb5, 0xe3, 0x8a, 0x34, 0xd5, 0xa4, 0x45, 0xbb, 0x0b, + 0x80, 0xcc, 0x8a, 0x70, 0x31, 0xc1, 0x96, 0x91, 0x59, 0x21, 0x2a, 0xf6, 0x9e, 0x4c, 0xf2, 0x7b, + 0xbe, 0x8f, 0x0a, 0x43, 0xbd, 0x47, 0x3d, 0x47, 0x69, 0x8d, 0x56, 0x95, 0xb8, 0xf6, 0xf0, 0xc3, + 0xbd, 0x22, 0x96, 0xdf, 0x7c, 0x72, 0x7e, 0x2c, 0x69, 0xf4, 0x55, 0x07, 0x0e, 0x75, 0x3f, 0xcc, + 0xf7, 0xfd, 0x36, 0x1d, 0x56, 0xd4, 0x21, 0xc3, 0x81, 0x83, 0xa6, 0x40, 0xeb, 0x70, 0xa2, 0xd7, + 0xce, 0xdf, 0x24, 0x9e, 0x13, 0x7c, 0x29, 0x39, 0x62, 0x46, 0x2e, 0xf1, 0x26, 0x91, 0x88, 0x56, + 0x00, 0x08, 0xbd, 0xca, 0x90, 0x9b, 0xf6, 0x42, 0x12, 0xcc, 0x3f, 0xe9, 0x1c, 0x13, 0xea, 0x7a, + 0xcc, 0x59, 0xa2, 0x66, 0x84, 0x30, 0x6c, 0x6e, 0x76, 0xc3, 0x59, 0x1d, 0xd4, 0xc2, 0xa5, 0xc4, + 0x10, 0x95, 0x00, 0x25, 0xe7, 0xf5, 0x83, 0x1f, 0x53, 0x70, 0x3d, 0x79, 0xb1, 0x69, 0xf7, 0xe0, + 0xf6, 0x6e, 0x7d, 0xbf, 0xbc, 0x57, 0x3f, 0xf8, 0x52, 0x6f, 0x34, 0x5f, 0xbc, 0xac, 0xef, 0x54, + 0x9b, 0x7a, 0xeb, 0xa0, 0x7c, 0x70, 0xd8, 0xd2, 0xeb, 0xfb, 0xe5, 0xed, 0x83, 0xfa, 0xcb, 0xea, + 0xea, 0x9c, 0x76, 0x07, 0x6e, 0xcd, 0x84, 0x85, 0xa0, 0xd4, 0x5b, 0x41, 0xcf, 0xcb, 0xf5, 0xbd, + 0xea, 0xce, 0x6a, 0x5a, 0xbb, 0x0b, 0x1b, 0x33, 0x41, 0xad, 0xbd, 0x72, 0xab, 0x56, 0xdd, 0x59, + 0x9d, 0xaf, 0xec, 0xff, 0xf2, 0x26, 0x9f, 0x7a, 0xfd, 0x26, 0x9f, 0xfa, 0xeb, 0x4d, 0x3e, 0xf5, + 0xea, 0x24, 0x3f, 0xf7, 0xfa, 0x24, 0x3f, 0xf7, 0xfb, 0x49, 0x7e, 0xee, 0xab, 0x33, 0x2c, 0xfa, + 0xc1, 0xe4, 0x4f, 0x47, 0xb9, 0xf5, 0x8d, 0x45, 0xf9, 0x2b, 0xf0, 0xe9, 0xbf, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x85, 0xad, 0xdc, 0x00, 0xd4, 0x0e, 0x00, 0x00, } func (m *EventFinalityProviderCreated) Marshal() (dAtA []byte, err error) { @@ -1834,42 +1855,42 @@ func (m *EventBTCDelegationCreated) MarshalToSizedBuffer(dAtA []byte) (int, erro copy(dAtA[i:], m.NewState) i = encodeVarintEvents(dAtA, i, uint64(len(m.NewState))) i-- - dAtA[i] = 0x4a + dAtA[i] = 0x5a } if len(m.UnbondingTx) > 0 { i -= len(m.UnbondingTx) copy(dAtA[i:], m.UnbondingTx) i = encodeVarintEvents(dAtA, i, uint64(len(m.UnbondingTx))) i-- - dAtA[i] = 0x42 + dAtA[i] = 0x52 } if len(m.UnbondingTime) > 0 { i -= len(m.UnbondingTime) copy(dAtA[i:], m.UnbondingTime) i = encodeVarintEvents(dAtA, i, uint64(len(m.UnbondingTime))) i-- - dAtA[i] = 0x3a + dAtA[i] = 0x4a } if len(m.StakingAmount) > 0 { i -= len(m.StakingAmount) copy(dAtA[i:], m.StakingAmount) i = encodeVarintEvents(dAtA, i, uint64(len(m.StakingAmount))) i-- - dAtA[i] = 0x32 + dAtA[i] = 0x42 } if len(m.StakingTime) > 0 { i -= len(m.StakingTime) copy(dAtA[i:], m.StakingTime) i = encodeVarintEvents(dAtA, i, uint64(len(m.StakingTime))) i-- - dAtA[i] = 0x2a + dAtA[i] = 0x3a } if len(m.StakerBtcPkHex) > 0 { i -= len(m.StakerBtcPkHex) copy(dAtA[i:], m.StakerBtcPkHex) i = encodeVarintEvents(dAtA, i, uint64(len(m.StakerBtcPkHex))) i-- - dAtA[i] = 0x22 + dAtA[i] = 0x32 } if len(m.FinalityProviderBtcPksHex) > 0 { for iNdEx := len(m.FinalityProviderBtcPksHex) - 1; iNdEx >= 0; iNdEx-- { @@ -1877,7 +1898,7 @@ func (m *EventBTCDelegationCreated) MarshalToSizedBuffer(dAtA []byte) (int, erro copy(dAtA[i:], m.FinalityProviderBtcPksHex[iNdEx]) i = encodeVarintEvents(dAtA, i, uint64(len(m.FinalityProviderBtcPksHex[iNdEx]))) i-- - dAtA[i] = 0x1a + dAtA[i] = 0x2a } } if len(m.ParamsVersion) > 0 { @@ -1885,6 +1906,20 @@ func (m *EventBTCDelegationCreated) MarshalToSizedBuffer(dAtA []byte) (int, erro copy(dAtA[i:], m.ParamsVersion) i = encodeVarintEvents(dAtA, i, uint64(len(m.ParamsVersion))) i-- + dAtA[i] = 0x22 + } + if len(m.StakingOutputIndex) > 0 { + i -= len(m.StakingOutputIndex) + copy(dAtA[i:], m.StakingOutputIndex) + i = encodeVarintEvents(dAtA, i, uint64(len(m.StakingOutputIndex))) + i-- + dAtA[i] = 0x1a + } + if len(m.StakingOutputPkScript) > 0 { + i -= len(m.StakingOutputPkScript) + copy(dAtA[i:], m.StakingOutputPkScript) + i = encodeVarintEvents(dAtA, i, uint64(len(m.StakingOutputPkScript))) + i-- dAtA[i] = 0x12 } if len(m.StakingTxHash) > 0 { @@ -2403,6 +2438,14 @@ func (m *EventBTCDelegationCreated) Size() (n int) { if l > 0 { n += 1 + l + sovEvents(uint64(l)) } + l = len(m.StakingOutputPkScript) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } + l = len(m.StakingOutputIndex) + if l > 0 { + n += 1 + l + sovEvents(uint64(l)) + } l = len(m.ParamsVersion) if l > 0 { n += 1 + l + sovEvents(uint64(l)) @@ -3959,6 +4002,70 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { m.StakingTxHash = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex case 2: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StakingOutputPkScript", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StakingOutputPkScript = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 3: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field StakingOutputIndex", wireType) + } + var stringLen uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowEvents + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + stringLen |= uint64(b&0x7F) << shift + if b < 0x80 { + break + } + } + intStringLen := int(stringLen) + if intStringLen < 0 { + return ErrInvalidLengthEvents + } + postIndex := iNdEx + intStringLen + if postIndex < 0 { + return ErrInvalidLengthEvents + } + if postIndex > l { + return io.ErrUnexpectedEOF + } + m.StakingOutputIndex = string(dAtA[iNdEx:postIndex]) + iNdEx = postIndex + case 4: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field ParamsVersion", wireType) } @@ -3990,7 +4097,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.ParamsVersion = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 3: + case 5: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field FinalityProviderBtcPksHex", wireType) } @@ -4022,7 +4129,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.FinalityProviderBtcPksHex = append(m.FinalityProviderBtcPksHex, string(dAtA[iNdEx:postIndex])) iNdEx = postIndex - case 4: + case 6: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StakerBtcPkHex", wireType) } @@ -4054,7 +4161,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.StakerBtcPkHex = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 5: + case 7: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StakingTime", wireType) } @@ -4086,7 +4193,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.StakingTime = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 6: + case 8: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field StakingAmount", wireType) } @@ -4118,7 +4225,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.StakingAmount = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 7: + case 9: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field UnbondingTime", wireType) } @@ -4150,7 +4257,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.UnbondingTime = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 8: + case 10: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field UnbondingTx", wireType) } @@ -4182,7 +4289,7 @@ func (m *EventBTCDelegationCreated) Unmarshal(dAtA []byte) error { } m.UnbondingTx = string(dAtA[iNdEx:postIndex]) iNdEx = postIndex - case 9: + case 11: if wireType != 2 { return fmt.Errorf("proto: wrong wireType = %d for field NewState", wireType) }