types

package
v1.68.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 13, 2023 License: BSD-3-Clause Imports: 4 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Chain33BlockChainName    = "Chain33-mainchain"
	EthereumBlockChainName   = "Ethereum-mainchain"
	BinanceChainName         = "Binance"
	EthereumChainName        = "Ethereum"
	BTYAddrChain33           = "1111111111111111111114oLvT2"
	NilAddrChain33           = "1111111111111111111114oLvT2"
	EthNilAddr               = "0x0000000000000000000000000000000000000000"
	SYMBOL_BTY               = "BTY"
	Tx_Status_Pending        = "pending"
	Tx_Status_Success        = "Successful"
	Tx_Status_Failed         = "Failed"
	Source_Chain_Ethereum    = int32(0)
	Source_Chain_Chain33     = int32(1)
	Invalid_Tx_Index         = int64(0)
	Invalid_Chain33Tx_Status = int32(-1)
)
View Source
const Version4Relayer = "0.1.4"

Version4Relayer ...

Variables

View Source
var (
	ErrInvalidEthContractAddress = errors.New("ErrInvalidEthContractAddress")
	ErrUnpack                    = errors.New("ErrUnpackResultWithABI")
	ErrPack                      = errors.New("ErrPackParamererWithABI")
	ErrEmptyAddress              = errors.New("ErrEmptyAddress")
	ErrAddress4Eth               = errors.New("symbol \"eth\" must have null address set as token address")
	ErrPublicKeyType             = errors.New("ErrPublicKeyType")
	ErrInvalidContractAddress    = errors.New("ErrInvalidTargetContractAddress")
	ErrNoValidatorConfigured     = errors.New("ErrNoValidatorConfigured")
	ErrMulSignNotDeployed        = errors.New("Contract multi-sign haven't been deployed yet")
	ErrGetTransactionHash        = errors.New("Failed to get tx hash from mulsign")
	ErrContractNotRegistered     = errors.New("contract not registered")
)
View Source
var DecimalsPrefix = map[uint8]int64{
	1:  1e1,
	2:  1e2,
	3:  1e3,
	4:  1e4,
	5:  1e5,
	6:  1e6,
	7:  1e7,
	8:  1e8,
	9:  1e9,
	10: 1e10,
	11: 1e11,
	12: 1e12,
	13: 1e13,
	14: 1e14,
	15: 1e15,
	16: 1e16,
	17: 1e17,
	18: 1e18,
}

Functions

This section is empty.

Types

type Account4Relayer

type Account4Relayer struct {
	Privkey              []byte   `protobuf:"bytes,1,opt,name=privkey,proto3" json:"privkey,omitempty"`
	Addr                 string   `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

以太坊账户信息

privkey : 账户地址对应的私钥
addr :账户地址

func (*Account4Relayer) Descriptor

func (*Account4Relayer) Descriptor() ([]byte, []int)

func (*Account4Relayer) GetAddr

func (m *Account4Relayer) GetAddr() string

func (*Account4Relayer) GetPrivkey

func (m *Account4Relayer) GetPrivkey() []byte

func (*Account4Relayer) ProtoMessage

func (*Account4Relayer) ProtoMessage()

func (*Account4Relayer) Reset

func (m *Account4Relayer) Reset()

func (*Account4Relayer) String

func (m *Account4Relayer) String() string

func (*Account4Relayer) XXX_DiscardUnknown added in v1.66.0

func (m *Account4Relayer) XXX_DiscardUnknown()

func (*Account4Relayer) XXX_Marshal added in v1.66.0

func (m *Account4Relayer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Account4Relayer) XXX_Merge added in v1.66.0

func (m *Account4Relayer) XXX_Merge(src proto.Message)

func (*Account4Relayer) XXX_Size added in v1.66.0

func (m *Account4Relayer) XXX_Size() int

func (*Account4Relayer) XXX_Unmarshal added in v1.66.0

func (m *Account4Relayer) XXX_Unmarshal(b []byte) error

type Account4Show

type Account4Show struct {
	Privkey              string   `protobuf:"bytes,1,opt,name=privkey,proto3" json:"privkey,omitempty"`
	Addr                 string   `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Account4Show) Descriptor

func (*Account4Show) Descriptor() ([]byte, []int)

func (*Account4Show) GetAddr

func (m *Account4Show) GetAddr() string

func (*Account4Show) GetPrivkey

func (m *Account4Show) GetPrivkey() string

func (*Account4Show) ProtoMessage

func (*Account4Show) ProtoMessage()

func (*Account4Show) Reset

func (m *Account4Show) Reset()

func (*Account4Show) String

func (m *Account4Show) String() string

func (*Account4Show) XXX_DiscardUnknown added in v1.66.0

func (m *Account4Show) XXX_DiscardUnknown()

func (*Account4Show) XXX_Marshal added in v1.66.0

func (m *Account4Show) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Account4Show) XXX_Merge added in v1.66.0

func (m *Account4Show) XXX_Merge(src proto.Message)

func (*Account4Show) XXX_Size added in v1.66.0

func (m *Account4Show) XXX_Size() int

func (*Account4Show) XXX_Unmarshal added in v1.66.0

func (m *Account4Show) XXX_Unmarshal(b []byte) error

type ApproveAllowance

type ApproveAllowance struct {
	OwnerKey             string   `protobuf:"bytes,1,opt,name=ownerKey,proto3" json:"ownerKey,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Amount               string   `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	ChainName            string   `protobuf:"bytes,4,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ApproveAllowance) Descriptor

func (*ApproveAllowance) Descriptor() ([]byte, []int)

func (*ApproveAllowance) GetAmount

func (m *ApproveAllowance) GetAmount() string

func (*ApproveAllowance) GetChainName added in v1.66.2

func (m *ApproveAllowance) GetChainName() string

func (*ApproveAllowance) GetOwnerKey

func (m *ApproveAllowance) GetOwnerKey() string

func (*ApproveAllowance) GetTokenAddr

func (m *ApproveAllowance) GetTokenAddr() string

func (*ApproveAllowance) ProtoMessage

func (*ApproveAllowance) ProtoMessage()

func (*ApproveAllowance) Reset

func (m *ApproveAllowance) Reset()

func (*ApproveAllowance) String

func (m *ApproveAllowance) String() string

func (*ApproveAllowance) XXX_DiscardUnknown added in v1.66.0

func (m *ApproveAllowance) XXX_DiscardUnknown()

func (*ApproveAllowance) XXX_Marshal added in v1.66.0

func (m *ApproveAllowance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ApproveAllowance) XXX_Merge added in v1.66.0

func (m *ApproveAllowance) XXX_Merge(src proto.Message)

func (*ApproveAllowance) XXX_Size added in v1.66.0

func (m *ApproveAllowance) XXX_Size() int

func (*ApproveAllowance) XXX_Unmarshal added in v1.66.0

func (m *ApproveAllowance) XXX_Unmarshal(b []byte) error

type AssetType

type AssetType struct {
	Chain                string   `protobuf:"bytes,1,opt,name=chain,proto3" json:"chain,omitempty"`
	IssueContract        string   `protobuf:"bytes,2,opt,name=issueContract,proto3" json:"issueContract,omitempty"`
	Symbol               string   `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AssetType) Descriptor

func (*AssetType) Descriptor() ([]byte, []int)

func (*AssetType) GetChain

func (m *AssetType) GetChain() string

func (*AssetType) GetIssueContract

func (m *AssetType) GetIssueContract() string

func (*AssetType) GetSymbol

func (m *AssetType) GetSymbol() string

func (*AssetType) ProtoMessage

func (*AssetType) ProtoMessage()

func (*AssetType) Reset

func (m *AssetType) Reset()

func (*AssetType) String

func (m *AssetType) String() string

func (*AssetType) XXX_DiscardUnknown added in v1.66.0

func (m *AssetType) XXX_DiscardUnknown()

func (*AssetType) XXX_Marshal added in v1.66.0

func (m *AssetType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AssetType) XXX_Merge added in v1.66.0

func (m *AssetType) XXX_Merge(src proto.Message)

func (*AssetType) XXX_Size added in v1.66.0

func (m *AssetType) XXX_Size() int

func (*AssetType) XXX_Unmarshal added in v1.66.0

func (m *AssetType) XXX_Unmarshal(b []byte) error

type BalanceAddr

type BalanceAddr struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	ChainName            string   `protobuf:"bytes,3,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BalanceAddr) Descriptor

func (*BalanceAddr) Descriptor() ([]byte, []int)

func (*BalanceAddr) GetChainName added in v1.66.2

func (m *BalanceAddr) GetChainName() string

func (*BalanceAddr) GetOwner

func (m *BalanceAddr) GetOwner() string

func (*BalanceAddr) GetTokenAddr

func (m *BalanceAddr) GetTokenAddr() string

func (*BalanceAddr) ProtoMessage

func (*BalanceAddr) ProtoMessage()

func (*BalanceAddr) Reset

func (m *BalanceAddr) Reset()

func (*BalanceAddr) String

func (m *BalanceAddr) String() string

func (*BalanceAddr) XXX_DiscardUnknown added in v1.66.0

func (m *BalanceAddr) XXX_DiscardUnknown()

func (*BalanceAddr) XXX_Marshal added in v1.66.0

func (m *BalanceAddr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BalanceAddr) XXX_Merge added in v1.66.0

func (m *BalanceAddr) XXX_Merge(src proto.Message)

func (*BalanceAddr) XXX_Size added in v1.66.0

func (m *BalanceAddr) XXX_Size() int

func (*BalanceAddr) XXX_Unmarshal added in v1.66.0

func (m *BalanceAddr) XXX_Unmarshal(b []byte) error

type BalanceLockedReq added in v1.66.0

type BalanceLockedReq struct {
	BridgeBank           string   `protobuf:"bytes,1,opt,name=bridgeBank,proto3" json:"bridgeBank,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	ChainName            string   `protobuf:"bytes,3,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BalanceLockedReq) Descriptor added in v1.66.0

func (*BalanceLockedReq) Descriptor() ([]byte, []int)

func (*BalanceLockedReq) GetBridgeBank added in v1.66.0

func (m *BalanceLockedReq) GetBridgeBank() string

func (*BalanceLockedReq) GetChainName added in v1.66.2

func (m *BalanceLockedReq) GetChainName() string

func (*BalanceLockedReq) GetTokenAddr added in v1.66.0

func (m *BalanceLockedReq) GetTokenAddr() string

func (*BalanceLockedReq) ProtoMessage added in v1.66.0

func (*BalanceLockedReq) ProtoMessage()

func (*BalanceLockedReq) Reset added in v1.66.0

func (m *BalanceLockedReq) Reset()

func (*BalanceLockedReq) String added in v1.66.0

func (m *BalanceLockedReq) String() string

func (*BalanceLockedReq) XXX_DiscardUnknown added in v1.66.0

func (m *BalanceLockedReq) XXX_DiscardUnknown()

func (*BalanceLockedReq) XXX_Marshal added in v1.66.0

func (m *BalanceLockedReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BalanceLockedReq) XXX_Merge added in v1.66.0

func (m *BalanceLockedReq) XXX_Merge(src proto.Message)

func (*BalanceLockedReq) XXX_Size added in v1.66.0

func (m *BalanceLockedReq) XXX_Size() int

func (*BalanceLockedReq) XXX_Unmarshal added in v1.66.0

func (m *BalanceLockedReq) XXX_Unmarshal(b []byte) error

type Burn

type Burn struct {
	OwnerKey             string   `protobuf:"bytes,1,opt,name=ownerKey,proto3" json:"ownerKey,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Amount               string   `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	Chain33Receiver      string   `protobuf:"bytes,4,opt,name=chain33Receiver,proto3" json:"chain33Receiver,omitempty"`
	ChainName            string   `protobuf:"bytes,5,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Burn) Descriptor

func (*Burn) Descriptor() ([]byte, []int)

func (*Burn) GetAmount

func (m *Burn) GetAmount() string

func (*Burn) GetChain33Receiver

func (m *Burn) GetChain33Receiver() string

func (*Burn) GetChainName added in v1.66.2

func (m *Burn) GetChainName() string

func (*Burn) GetOwnerKey

func (m *Burn) GetOwnerKey() string

func (*Burn) GetTokenAddr

func (m *Burn) GetTokenAddr() string

func (*Burn) ProtoMessage

func (*Burn) ProtoMessage()

func (*Burn) Reset

func (m *Burn) Reset()

func (*Burn) String

func (m *Burn) String() string

func (*Burn) XXX_DiscardUnknown added in v1.66.0

func (m *Burn) XXX_DiscardUnknown()

func (*Burn) XXX_Marshal added in v1.66.0

func (m *Burn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Burn) XXX_Merge added in v1.66.0

func (m *Burn) XXX_Merge(src proto.Message)

func (*Burn) XXX_Size added in v1.66.0

func (m *Burn) XXX_Size() int

func (*Burn) XXX_Unmarshal added in v1.66.0

func (m *Burn) XXX_Unmarshal(b []byte) error

type BurnFromChain33

type BurnFromChain33 struct {
	OwnerKey             string   `protobuf:"bytes,1,opt,name=ownerKey,proto3" json:"ownerKey,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Amount               string   `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	EthereumReceiver     string   `protobuf:"bytes,4,opt,name=ethereumReceiver,proto3" json:"ethereumReceiver,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*BurnFromChain33) Descriptor

func (*BurnFromChain33) Descriptor() ([]byte, []int)

func (*BurnFromChain33) GetAmount

func (m *BurnFromChain33) GetAmount() string

func (*BurnFromChain33) GetEthereumReceiver

func (m *BurnFromChain33) GetEthereumReceiver() string

func (*BurnFromChain33) GetOwnerKey

func (m *BurnFromChain33) GetOwnerKey() string

func (*BurnFromChain33) GetTokenAddr

func (m *BurnFromChain33) GetTokenAddr() string

func (*BurnFromChain33) ProtoMessage

func (*BurnFromChain33) ProtoMessage()

func (*BurnFromChain33) Reset

func (m *BurnFromChain33) Reset()

func (*BurnFromChain33) String

func (m *BurnFromChain33) String() string

func (*BurnFromChain33) XXX_DiscardUnknown added in v1.66.0

func (m *BurnFromChain33) XXX_DiscardUnknown()

func (*BurnFromChain33) XXX_Marshal added in v1.66.0

func (m *BurnFromChain33) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BurnFromChain33) XXX_Merge added in v1.66.0

func (m *BurnFromChain33) XXX_Merge(src proto.Message)

func (*BurnFromChain33) XXX_Size added in v1.66.0

func (m *BurnFromChain33) XXX_Size() int

func (*BurnFromChain33) XXX_Unmarshal added in v1.66.0

func (m *BurnFromChain33) XXX_Unmarshal(b []byte) error

type CfgMultiSignAddr added in v1.66.2

type CfgMultiSignAddr struct {
	MultiSignAddr        string   `protobuf:"bytes,1,opt,name=multiSignAddr,proto3" json:"multiSignAddr,omitempty"`
	ChainName            string   `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CfgMultiSignAddr) Descriptor added in v1.66.2

func (*CfgMultiSignAddr) Descriptor() ([]byte, []int)

func (*CfgMultiSignAddr) GetChainName added in v1.66.2

func (m *CfgMultiSignAddr) GetChainName() string

func (*CfgMultiSignAddr) GetMultiSignAddr added in v1.66.2

func (m *CfgMultiSignAddr) GetMultiSignAddr() string

func (*CfgMultiSignAddr) ProtoMessage added in v1.66.2

func (*CfgMultiSignAddr) ProtoMessage()

func (*CfgMultiSignAddr) Reset added in v1.66.2

func (m *CfgMultiSignAddr) Reset()

func (*CfgMultiSignAddr) String added in v1.66.2

func (m *CfgMultiSignAddr) String() string

func (*CfgMultiSignAddr) XXX_DiscardUnknown added in v1.67.1

func (m *CfgMultiSignAddr) XXX_DiscardUnknown()

func (*CfgMultiSignAddr) XXX_Marshal added in v1.67.1

func (m *CfgMultiSignAddr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CfgMultiSignAddr) XXX_Merge added in v1.67.1

func (m *CfgMultiSignAddr) XXX_Merge(src proto.Message)

func (*CfgMultiSignAddr) XXX_Size added in v1.67.1

func (m *CfgMultiSignAddr) XXX_Size() int

func (*CfgMultiSignAddr) XXX_Unmarshal added in v1.67.1

func (m *CfgMultiSignAddr) XXX_Unmarshal(b []byte) error

type CfgOfflineSaveAccountReq added in v1.66.2

type CfgOfflineSaveAccountReq struct {
	Address              string   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	ChainName            string   `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CfgOfflineSaveAccountReq) Descriptor added in v1.66.2

func (*CfgOfflineSaveAccountReq) Descriptor() ([]byte, []int)

func (*CfgOfflineSaveAccountReq) GetAddress added in v1.66.2

func (m *CfgOfflineSaveAccountReq) GetAddress() string

func (*CfgOfflineSaveAccountReq) GetChainName added in v1.66.2

func (m *CfgOfflineSaveAccountReq) GetChainName() string

func (*CfgOfflineSaveAccountReq) ProtoMessage added in v1.66.2

func (*CfgOfflineSaveAccountReq) ProtoMessage()

func (*CfgOfflineSaveAccountReq) Reset added in v1.66.2

func (m *CfgOfflineSaveAccountReq) Reset()

func (*CfgOfflineSaveAccountReq) String added in v1.66.2

func (m *CfgOfflineSaveAccountReq) String() string

func (*CfgOfflineSaveAccountReq) XXX_DiscardUnknown added in v1.67.1

func (m *CfgOfflineSaveAccountReq) XXX_DiscardUnknown()

func (*CfgOfflineSaveAccountReq) XXX_Marshal added in v1.67.1

func (m *CfgOfflineSaveAccountReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CfgOfflineSaveAccountReq) XXX_Merge added in v1.67.1

func (m *CfgOfflineSaveAccountReq) XXX_Merge(src proto.Message)

func (*CfgOfflineSaveAccountReq) XXX_Size added in v1.67.1

func (m *CfgOfflineSaveAccountReq) XXX_Size() int

func (*CfgOfflineSaveAccountReq) XXX_Unmarshal added in v1.67.1

func (m *CfgOfflineSaveAccountReq) XXX_Unmarshal(b []byte) error

type CfgPlatformTokenSymbolReq added in v1.66.2

type CfgPlatformTokenSymbolReq struct {
	Symbol               string   `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	ChainName            string   `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CfgPlatformTokenSymbolReq) Descriptor added in v1.66.2

func (*CfgPlatformTokenSymbolReq) Descriptor() ([]byte, []int)

func (*CfgPlatformTokenSymbolReq) GetChainName added in v1.66.2

func (m *CfgPlatformTokenSymbolReq) GetChainName() string

func (*CfgPlatformTokenSymbolReq) GetSymbol added in v1.66.2

func (m *CfgPlatformTokenSymbolReq) GetSymbol() string

func (*CfgPlatformTokenSymbolReq) ProtoMessage added in v1.66.2

func (*CfgPlatformTokenSymbolReq) ProtoMessage()

func (*CfgPlatformTokenSymbolReq) Reset added in v1.66.2

func (m *CfgPlatformTokenSymbolReq) Reset()

func (*CfgPlatformTokenSymbolReq) String added in v1.66.2

func (m *CfgPlatformTokenSymbolReq) String() string

func (*CfgPlatformTokenSymbolReq) XXX_DiscardUnknown added in v1.67.1

func (m *CfgPlatformTokenSymbolReq) XXX_DiscardUnknown()

func (*CfgPlatformTokenSymbolReq) XXX_Marshal added in v1.67.1

func (m *CfgPlatformTokenSymbolReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CfgPlatformTokenSymbolReq) XXX_Merge added in v1.67.1

func (m *CfgPlatformTokenSymbolReq) XXX_Merge(src proto.Message)

func (*CfgPlatformTokenSymbolReq) XXX_Size added in v1.67.1

func (m *CfgPlatformTokenSymbolReq) XXX_Size() int

func (*CfgPlatformTokenSymbolReq) XXX_Unmarshal added in v1.67.1

func (m *CfgPlatformTokenSymbolReq) XXX_Unmarshal(b []byte) error

type CfgWithdrawReq added in v1.66.0

type CfgWithdrawReq struct {
	Symbol               string   `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	FeeAmount            string   `protobuf:"bytes,2,opt,name=feeAmount,proto3" json:"feeAmount,omitempty"`
	AmountPerDay         string   `protobuf:"bytes,3,opt,name=amountPerDay,proto3" json:"amountPerDay,omitempty"`
	ChainName            string   `protobuf:"bytes,4,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CfgWithdrawReq) Descriptor added in v1.66.0

func (*CfgWithdrawReq) Descriptor() ([]byte, []int)

func (*CfgWithdrawReq) GetAmountPerDay added in v1.66.0

func (m *CfgWithdrawReq) GetAmountPerDay() string

func (*CfgWithdrawReq) GetChainName added in v1.66.2

func (m *CfgWithdrawReq) GetChainName() string

func (*CfgWithdrawReq) GetFeeAmount added in v1.66.0

func (m *CfgWithdrawReq) GetFeeAmount() string

func (*CfgWithdrawReq) GetSymbol added in v1.66.0

func (m *CfgWithdrawReq) GetSymbol() string

func (*CfgWithdrawReq) ProtoMessage added in v1.66.0

func (*CfgWithdrawReq) ProtoMessage()

func (*CfgWithdrawReq) Reset added in v1.66.0

func (m *CfgWithdrawReq) Reset()

func (*CfgWithdrawReq) String added in v1.66.0

func (m *CfgWithdrawReq) String() string

func (*CfgWithdrawReq) XXX_DiscardUnknown added in v1.66.0

func (m *CfgWithdrawReq) XXX_DiscardUnknown()

func (*CfgWithdrawReq) XXX_Marshal added in v1.66.0

func (m *CfgWithdrawReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CfgWithdrawReq) XXX_Merge added in v1.66.0

func (m *CfgWithdrawReq) XXX_Merge(src proto.Message)

func (*CfgWithdrawReq) XXX_Size added in v1.66.0

func (m *CfgWithdrawReq) XXX_Size() int

func (*CfgWithdrawReq) XXX_Unmarshal added in v1.66.0

func (m *CfgWithdrawReq) XXX_Unmarshal(b []byte) error

type Chain33RelayerCfg added in v1.66.2

type Chain33RelayerCfg struct {
	SyncTxConfig            *SyncTxConfig `protobuf:"bytes,1,opt,name=syncTxConfig,proto3" json:"syncTxConfig,omitempty"`
	BridgeRegistryOnChain33 string        `protobuf:"bytes,2,opt,name=bridgeRegistryOnChain33,proto3" json:"bridgeRegistryOnChain33,omitempty"`
	ChainName               string        `protobuf:"bytes,3,opt,name=chainName,proto3" json:"chainName,omitempty"`
	ChainID4Chain33         int32         `protobuf:"varint,4,opt,name=chainID4Chain33,proto3" json:"chainID4Chain33,omitempty"`
	XXX_NoUnkeyedLiteral    struct{}      `json:"-"`
	XXX_unrecognized        []byte        `json:"-"`
	XXX_sizecache           int32         `json:"-"`
}

func (*Chain33RelayerCfg) Descriptor added in v1.66.2

func (*Chain33RelayerCfg) Descriptor() ([]byte, []int)

func (*Chain33RelayerCfg) GetBridgeRegistryOnChain33 added in v1.66.2

func (m *Chain33RelayerCfg) GetBridgeRegistryOnChain33() string

func (*Chain33RelayerCfg) GetChainID4Chain33 added in v1.66.2

func (m *Chain33RelayerCfg) GetChainID4Chain33() int32

func (*Chain33RelayerCfg) GetChainName added in v1.66.2

func (m *Chain33RelayerCfg) GetChainName() string

func (*Chain33RelayerCfg) GetSyncTxConfig added in v1.66.2

func (m *Chain33RelayerCfg) GetSyncTxConfig() *SyncTxConfig

func (*Chain33RelayerCfg) ProtoMessage added in v1.66.2

func (*Chain33RelayerCfg) ProtoMessage()

func (*Chain33RelayerCfg) Reset added in v1.66.2

func (m *Chain33RelayerCfg) Reset()

func (*Chain33RelayerCfg) String added in v1.66.2

func (m *Chain33RelayerCfg) String() string

func (*Chain33RelayerCfg) XXX_DiscardUnknown added in v1.67.1

func (m *Chain33RelayerCfg) XXX_DiscardUnknown()

func (*Chain33RelayerCfg) XXX_Marshal added in v1.67.1

func (m *Chain33RelayerCfg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Chain33RelayerCfg) XXX_Merge added in v1.67.1

func (m *Chain33RelayerCfg) XXX_Merge(src proto.Message)

func (*Chain33RelayerCfg) XXX_Size added in v1.67.1

func (m *Chain33RelayerCfg) XXX_Size() int

func (*Chain33RelayerCfg) XXX_Unmarshal added in v1.67.1

func (m *Chain33RelayerCfg) XXX_Unmarshal(b []byte) error

type Chain33ToEthereumStatics

type Chain33ToEthereumStatics struct {
	EthTxstatus      string `protobuf:"bytes,1,opt,name=ethTxstatus,proto3" json:"ethTxstatus,omitempty"`
	Chain33Txhash    string `protobuf:"bytes,2,opt,name=chain33Txhash,proto3" json:"chain33Txhash,omitempty"`
	EthereumTxhash   string `protobuf:"bytes,3,opt,name=EthereumTxhash,proto3" json:"EthereumTxhash,omitempty"`
	BurnLockWithdraw int32  `protobuf:"varint,4,opt,name=burnLockWithdraw,proto3" json:"burnLockWithdraw,omitempty"`
	//该笔lock或者burn交易的chain33发起人
	Chain33Sender    string `protobuf:"bytes,5,opt,name=chain33Sender,proto3" json:"chain33Sender,omitempty"`
	EthereumReceiver string `protobuf:"bytes,6,opt,name=ethereumReceiver,proto3" json:"ethereumReceiver,omitempty"`
	Symbol           string `protobuf:"bytes,7,opt,name=symbol,proto3" json:"symbol,omitempty"`
	//因为考虑到,eth的单位是以wei计算的,所以使用string类型
	Amount               string   `protobuf:"bytes,8,opt,name=amount,proto3" json:"amount,omitempty"`
	Nonce                int64    `protobuf:"varint,9,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TxIndex              int64    `protobuf:"varint,10,opt,name=txIndex,proto3" json:"txIndex,omitempty"`
	OperationType        string   `protobuf:"bytes,11,opt,name=operationType,proto3" json:"operationType,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Chain33ToEthereumStatics) Descriptor

func (*Chain33ToEthereumStatics) Descriptor() ([]byte, []int)

func (*Chain33ToEthereumStatics) GetAmount

func (m *Chain33ToEthereumStatics) GetAmount() string

func (*Chain33ToEthereumStatics) GetBurnLockWithdraw added in v1.66.0

func (m *Chain33ToEthereumStatics) GetBurnLockWithdraw() int32

func (*Chain33ToEthereumStatics) GetChain33Sender

func (m *Chain33ToEthereumStatics) GetChain33Sender() string

func (*Chain33ToEthereumStatics) GetChain33Txhash

func (m *Chain33ToEthereumStatics) GetChain33Txhash() string

func (*Chain33ToEthereumStatics) GetEthTxstatus

func (m *Chain33ToEthereumStatics) GetEthTxstatus() string

func (*Chain33ToEthereumStatics) GetEthereumReceiver

func (m *Chain33ToEthereumStatics) GetEthereumReceiver() string

func (*Chain33ToEthereumStatics) GetEthereumTxhash

func (m *Chain33ToEthereumStatics) GetEthereumTxhash() string

func (*Chain33ToEthereumStatics) GetNonce

func (m *Chain33ToEthereumStatics) GetNonce() int64

func (*Chain33ToEthereumStatics) GetOperationType

func (m *Chain33ToEthereumStatics) GetOperationType() string

func (*Chain33ToEthereumStatics) GetSymbol

func (m *Chain33ToEthereumStatics) GetSymbol() string

func (*Chain33ToEthereumStatics) GetTxIndex

func (m *Chain33ToEthereumStatics) GetTxIndex() int64

func (*Chain33ToEthereumStatics) ProtoMessage

func (*Chain33ToEthereumStatics) ProtoMessage()

func (*Chain33ToEthereumStatics) Reset

func (m *Chain33ToEthereumStatics) Reset()

func (*Chain33ToEthereumStatics) String

func (m *Chain33ToEthereumStatics) String() string

func (*Chain33ToEthereumStatics) XXX_DiscardUnknown added in v1.66.0

func (m *Chain33ToEthereumStatics) XXX_DiscardUnknown()

func (*Chain33ToEthereumStatics) XXX_Marshal added in v1.66.0

func (m *Chain33ToEthereumStatics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Chain33ToEthereumStatics) XXX_Merge added in v1.66.0

func (m *Chain33ToEthereumStatics) XXX_Merge(src proto.Message)

func (*Chain33ToEthereumStatics) XXX_Size added in v1.66.0

func (m *Chain33ToEthereumStatics) XXX_Size() int

func (*Chain33ToEthereumStatics) XXX_Unmarshal added in v1.66.0

func (m *Chain33ToEthereumStatics) XXX_Unmarshal(b []byte) error

type CreateLockEventReq added in v1.66.3

type CreateLockEventReq struct {
	From                 string   `protobuf:"bytes,1,opt,name=from,proto3" json:"from,omitempty"`
	To                   string   `protobuf:"bytes,2,opt,name=to,proto3" json:"to,omitempty"`
	Token                string   `protobuf:"bytes,3,opt,name=token,proto3" json:"token,omitempty"`
	Symbol               string   `protobuf:"bytes,4,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Value                string   `protobuf:"bytes,5,opt,name=value,proto3" json:"value,omitempty"`
	Nonce                string   `protobuf:"bytes,6,opt,name=nonce,proto3" json:"nonce,omitempty"`
	ChainName            string   `protobuf:"bytes,7,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CreateLockEventReq) Descriptor added in v1.66.3

func (*CreateLockEventReq) Descriptor() ([]byte, []int)

func (*CreateLockEventReq) GetChainName added in v1.66.3

func (m *CreateLockEventReq) GetChainName() string

func (*CreateLockEventReq) GetFrom added in v1.66.3

func (m *CreateLockEventReq) GetFrom() string

func (*CreateLockEventReq) GetNonce added in v1.66.3

func (m *CreateLockEventReq) GetNonce() string

func (*CreateLockEventReq) GetSymbol added in v1.66.3

func (m *CreateLockEventReq) GetSymbol() string

func (*CreateLockEventReq) GetTo added in v1.66.3

func (m *CreateLockEventReq) GetTo() string

func (*CreateLockEventReq) GetToken added in v1.66.3

func (m *CreateLockEventReq) GetToken() string

func (*CreateLockEventReq) GetValue added in v1.66.3

func (m *CreateLockEventReq) GetValue() string

func (*CreateLockEventReq) ProtoMessage added in v1.66.3

func (*CreateLockEventReq) ProtoMessage()

func (*CreateLockEventReq) Reset added in v1.66.3

func (m *CreateLockEventReq) Reset()

func (*CreateLockEventReq) String added in v1.66.3

func (m *CreateLockEventReq) String() string

func (*CreateLockEventReq) XXX_DiscardUnknown added in v1.67.1

func (m *CreateLockEventReq) XXX_DiscardUnknown()

func (*CreateLockEventReq) XXX_Marshal added in v1.67.1

func (m *CreateLockEventReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CreateLockEventReq) XXX_Merge added in v1.67.1

func (m *CreateLockEventReq) XXX_Merge(src proto.Message)

func (*CreateLockEventReq) XXX_Size added in v1.67.1

func (m *CreateLockEventReq) XXX_Size() int

func (*CreateLockEventReq) XXX_Unmarshal added in v1.67.1

func (m *CreateLockEventReq) XXX_Unmarshal(b []byte) error

type ERC20Token

type ERC20Token struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Symbol               string   `protobuf:"bytes,3,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Amount               string   `protobuf:"bytes,4,opt,name=amount,proto3" json:"amount,omitempty"`
	Decimals             int32    `protobuf:"varint,5,opt,name=decimals,proto3" json:"decimals,omitempty"`
	Chain2Deploy         string   `protobuf:"bytes,6,opt,name=chain2deploy,proto3" json:"chain2deploy,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ERC20Token) Descriptor

func (*ERC20Token) Descriptor() ([]byte, []int)

func (*ERC20Token) GetAmount

func (m *ERC20Token) GetAmount() string

func (*ERC20Token) GetChain2Deploy added in v1.66.2

func (m *ERC20Token) GetChain2Deploy() string

func (*ERC20Token) GetDecimals added in v1.66.0

func (m *ERC20Token) GetDecimals() int32

func (*ERC20Token) GetName

func (m *ERC20Token) GetName() string

func (*ERC20Token) GetOwner

func (m *ERC20Token) GetOwner() string

func (*ERC20Token) GetSymbol

func (m *ERC20Token) GetSymbol() string

func (*ERC20Token) ProtoMessage

func (*ERC20Token) ProtoMessage()

func (*ERC20Token) Reset

func (m *ERC20Token) Reset()

func (*ERC20Token) String

func (m *ERC20Token) String() string

func (*ERC20Token) XXX_DiscardUnknown added in v1.66.0

func (m *ERC20Token) XXX_DiscardUnknown()

func (*ERC20Token) XXX_Marshal added in v1.66.0

func (m *ERC20Token) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ERC20Token) XXX_Merge added in v1.66.0

func (m *ERC20Token) XXX_Merge(src proto.Message)

func (*ERC20Token) XXX_Size added in v1.66.0

func (m *ERC20Token) XXX_Size() int

func (*ERC20Token) XXX_Unmarshal added in v1.66.0

func (m *ERC20Token) XXX_Unmarshal(b []byte) error

type ETHConfigLockedTokenOffline

type ETHConfigLockedTokenOffline struct {
	Address              string   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Symbol               string   `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Threshold            string   `protobuf:"bytes,3,opt,name=threshold,proto3" json:"threshold,omitempty"`
	Percents             uint32   `protobuf:"varint,4,opt,name=percents,proto3" json:"percents,omitempty"`
	ChainName            string   `protobuf:"bytes,5,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ETHConfigLockedTokenOffline) Descriptor

func (*ETHConfigLockedTokenOffline) Descriptor() ([]byte, []int)

func (*ETHConfigLockedTokenOffline) GetAddress

func (m *ETHConfigLockedTokenOffline) GetAddress() string

func (*ETHConfigLockedTokenOffline) GetChainName added in v1.66.2

func (m *ETHConfigLockedTokenOffline) GetChainName() string

func (*ETHConfigLockedTokenOffline) GetPercents

func (m *ETHConfigLockedTokenOffline) GetPercents() uint32

func (*ETHConfigLockedTokenOffline) GetSymbol

func (m *ETHConfigLockedTokenOffline) GetSymbol() string

func (*ETHConfigLockedTokenOffline) GetThreshold

func (m *ETHConfigLockedTokenOffline) GetThreshold() string

func (*ETHConfigLockedTokenOffline) ProtoMessage

func (*ETHConfigLockedTokenOffline) ProtoMessage()

func (*ETHConfigLockedTokenOffline) Reset

func (m *ETHConfigLockedTokenOffline) Reset()

func (*ETHConfigLockedTokenOffline) String

func (m *ETHConfigLockedTokenOffline) String() string

func (*ETHConfigLockedTokenOffline) XXX_DiscardUnknown added in v1.66.0

func (m *ETHConfigLockedTokenOffline) XXX_DiscardUnknown()

func (*ETHConfigLockedTokenOffline) XXX_Marshal added in v1.66.0

func (m *ETHConfigLockedTokenOffline) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ETHConfigLockedTokenOffline) XXX_Merge added in v1.66.0

func (m *ETHConfigLockedTokenOffline) XXX_Merge(src proto.Message)

func (*ETHConfigLockedTokenOffline) XXX_Size added in v1.66.0

func (m *ETHConfigLockedTokenOffline) XXX_Size() int

func (*ETHConfigLockedTokenOffline) XXX_Unmarshal added in v1.66.0

func (m *ETHConfigLockedTokenOffline) XXX_Unmarshal(b []byte) error

type ETHTokenLockAddress

type ETHTokenLockAddress struct {
	Address              string   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Symbol               string   `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ETHTokenLockAddress) Descriptor

func (*ETHTokenLockAddress) Descriptor() ([]byte, []int)

func (*ETHTokenLockAddress) GetAddress

func (m *ETHTokenLockAddress) GetAddress() string

func (*ETHTokenLockAddress) GetSymbol

func (m *ETHTokenLockAddress) GetSymbol() string

func (*ETHTokenLockAddress) ProtoMessage

func (*ETHTokenLockAddress) ProtoMessage()

func (*ETHTokenLockAddress) Reset

func (m *ETHTokenLockAddress) Reset()

func (*ETHTokenLockAddress) String

func (m *ETHTokenLockAddress) String() string

func (*ETHTokenLockAddress) XXX_DiscardUnknown added in v1.66.0

func (m *ETHTokenLockAddress) XXX_DiscardUnknown()

func (*ETHTokenLockAddress) XXX_Marshal added in v1.66.0

func (m *ETHTokenLockAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ETHTokenLockAddress) XXX_Merge added in v1.66.0

func (m *ETHTokenLockAddress) XXX_Merge(src proto.Message)

func (*ETHTokenLockAddress) XXX_Size added in v1.66.0

func (m *ETHTokenLockAddress) XXX_Size() int

func (*ETHTokenLockAddress) XXX_Unmarshal added in v1.66.0

func (m *ETHTokenLockAddress) XXX_Unmarshal(b []byte) error

type EthBridgeClaim

type EthBridgeClaim struct {
	EthereumChainID int64  `protobuf:"varint,1,opt,name=ethereumChainID,proto3" json:"ethereumChainID,omitempty"`
	BridgeBrankAddr string `protobuf:"bytes,2,opt,name=bridgeBrankAddr,proto3" json:"bridgeBrankAddr,omitempty"`
	Nonce           int64  `protobuf:"varint,3,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TokenAddr       string `protobuf:"bytes,4,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Symbol          string `protobuf:"bytes,5,opt,name=symbol,proto3" json:"symbol,omitempty"`
	EthereumSender  string `protobuf:"bytes,6,opt,name=ethereumSender,proto3" json:"ethereumSender,omitempty"`
	Chain33Receiver string `protobuf:"bytes,7,opt,name=chain33Receiver,proto3" json:"chain33Receiver,omitempty"`
	//因为考虑到eth是以wei单位的,需要更大的计数范围,所以使用string类型
	Amount               string   `protobuf:"bytes,9,opt,name=amount,proto3" json:"amount,omitempty"`
	ClaimType            int32    `protobuf:"varint,10,opt,name=claimType,proto3" json:"claimType,omitempty"`
	ChainName            string   `protobuf:"bytes,11,opt,name=chainName,proto3" json:"chainName,omitempty"`
	Decimal              int64    `protobuf:"varint,12,opt,name=decimal,proto3" json:"decimal,omitempty"`
	EthTxHash            string   `protobuf:"bytes,13,opt,name=ethTxHash,proto3" json:"ethTxHash,omitempty"`
	ForwardTimes         int32    `protobuf:"varint,14,opt,name=forwardTimes,proto3" json:"forwardTimes,omitempty"`
	ForwardIndex         int64    `protobuf:"varint,15,opt,name=forwardIndex,proto3" json:"forwardIndex,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthBridgeClaim) Descriptor

func (*EthBridgeClaim) Descriptor() ([]byte, []int)

func (*EthBridgeClaim) GetAmount

func (m *EthBridgeClaim) GetAmount() string

func (*EthBridgeClaim) GetBridgeBrankAddr

func (m *EthBridgeClaim) GetBridgeBrankAddr() string

func (*EthBridgeClaim) GetChain33Receiver

func (m *EthBridgeClaim) GetChain33Receiver() string

func (*EthBridgeClaim) GetChainName

func (m *EthBridgeClaim) GetChainName() string

func (*EthBridgeClaim) GetClaimType

func (m *EthBridgeClaim) GetClaimType() int32

func (*EthBridgeClaim) GetDecimal

func (m *EthBridgeClaim) GetDecimal() int64

func (*EthBridgeClaim) GetEthTxHash

func (m *EthBridgeClaim) GetEthTxHash() string

func (*EthBridgeClaim) GetEthereumChainID

func (m *EthBridgeClaim) GetEthereumChainID() int64

func (*EthBridgeClaim) GetEthereumSender

func (m *EthBridgeClaim) GetEthereumSender() string

func (*EthBridgeClaim) GetForwardIndex added in v1.67.0

func (m *EthBridgeClaim) GetForwardIndex() int64

func (*EthBridgeClaim) GetForwardTimes added in v1.67.0

func (m *EthBridgeClaim) GetForwardTimes() int32

func (*EthBridgeClaim) GetNonce

func (m *EthBridgeClaim) GetNonce() int64

func (*EthBridgeClaim) GetSymbol

func (m *EthBridgeClaim) GetSymbol() string

func (*EthBridgeClaim) GetTokenAddr

func (m *EthBridgeClaim) GetTokenAddr() string

func (*EthBridgeClaim) ProtoMessage

func (*EthBridgeClaim) ProtoMessage()

func (*EthBridgeClaim) Reset

func (m *EthBridgeClaim) Reset()

func (*EthBridgeClaim) String

func (m *EthBridgeClaim) String() string

func (*EthBridgeClaim) XXX_DiscardUnknown added in v1.66.0

func (m *EthBridgeClaim) XXX_DiscardUnknown()

func (*EthBridgeClaim) XXX_Marshal added in v1.66.0

func (m *EthBridgeClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EthBridgeClaim) XXX_Merge added in v1.66.0

func (m *EthBridgeClaim) XXX_Merge(src proto.Message)

func (*EthBridgeClaim) XXX_Size added in v1.66.0

func (m *EthBridgeClaim) XXX_Size() int

func (*EthBridgeClaim) XXX_Unmarshal added in v1.66.0

func (m *EthBridgeClaim) XXX_Unmarshal(b []byte) error

type EthRelayerCfg added in v1.66.2

type EthRelayerCfg struct {
	EthChainName         string   `protobuf:"bytes,1,opt,name=ethChainName,proto3" json:"ethChainName,omitempty"`
	EthProvider          []string `protobuf:"bytes,2,rep,name=ethProvider,proto3" json:"ethProvider,omitempty"`
	EthProviderCli       []string `protobuf:"bytes,3,rep,name=ethProviderCli,proto3" json:"ethProviderCli,omitempty"`
	BridgeRegistry       string   `protobuf:"bytes,4,opt,name=bridgeRegistry,proto3" json:"bridgeRegistry,omitempty"`
	EthMaturityDegree    int32    `protobuf:"varint,5,opt,name=ethMaturityDegree,proto3" json:"ethMaturityDegree,omitempty"`
	EthBlockFetchPeriod  int32    `protobuf:"varint,6,opt,name=ethBlockFetchPeriod,proto3" json:"ethBlockFetchPeriod,omitempty"`
	StartListenHeight    int64    `protobuf:"varint,7,opt,name=startListenHeight,proto3" json:"startListenHeight,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EthRelayerCfg) Descriptor added in v1.66.2

func (*EthRelayerCfg) Descriptor() ([]byte, []int)

func (*EthRelayerCfg) GetBridgeRegistry added in v1.66.2

func (m *EthRelayerCfg) GetBridgeRegistry() string

func (*EthRelayerCfg) GetEthBlockFetchPeriod added in v1.66.2

func (m *EthRelayerCfg) GetEthBlockFetchPeriod() int32

func (*EthRelayerCfg) GetEthChainName added in v1.66.2

func (m *EthRelayerCfg) GetEthChainName() string

func (*EthRelayerCfg) GetEthMaturityDegree added in v1.66.2

func (m *EthRelayerCfg) GetEthMaturityDegree() int32

func (*EthRelayerCfg) GetEthProvider added in v1.66.2

func (m *EthRelayerCfg) GetEthProvider() []string

func (*EthRelayerCfg) GetEthProviderCli added in v1.66.2

func (m *EthRelayerCfg) GetEthProviderCli() []string

func (*EthRelayerCfg) GetStartListenHeight added in v1.67.0

func (m *EthRelayerCfg) GetStartListenHeight() int64

func (*EthRelayerCfg) ProtoMessage added in v1.66.2

func (*EthRelayerCfg) ProtoMessage()

func (*EthRelayerCfg) Reset added in v1.66.2

func (m *EthRelayerCfg) Reset()

func (*EthRelayerCfg) String added in v1.66.2

func (m *EthRelayerCfg) String() string

func (*EthRelayerCfg) XXX_DiscardUnknown added in v1.67.1

func (m *EthRelayerCfg) XXX_DiscardUnknown()

func (*EthRelayerCfg) XXX_Marshal added in v1.67.1

func (m *EthRelayerCfg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EthRelayerCfg) XXX_Merge added in v1.67.1

func (m *EthRelayerCfg) XXX_Merge(src proto.Message)

func (*EthRelayerCfg) XXX_Size added in v1.67.1

func (m *EthRelayerCfg) XXX_Size() int

func (*EthRelayerCfg) XXX_Unmarshal added in v1.67.1

func (m *EthRelayerCfg) XXX_Unmarshal(b []byte) error

type Ethereum2Chain33Statics

type Ethereum2Chain33Statics struct {
	Chain33Txstatus string `protobuf:"bytes,1,opt,name=chain33Txstatus,proto3" json:"chain33Txstatus,omitempty"`
	Chain33Txhash   string `protobuf:"bytes,2,opt,name=chain33Txhash,proto3" json:"chain33Txhash,omitempty"`
	EthereumTxhash  string `protobuf:"bytes,3,opt,name=EthereumTxhash,proto3" json:"EthereumTxhash,omitempty"`
	BurnLock        int32  `protobuf:"varint,4,opt,name=burnLock,proto3" json:"burnLock,omitempty"`
	//该笔lock或者burn交易的chain33发起人
	EthereumSender  string `protobuf:"bytes,5,opt,name=ethereumSender,proto3" json:"ethereumSender,omitempty"`
	Chain33Receiver string `protobuf:"bytes,6,opt,name=chain33Receiver,proto3" json:"chain33Receiver,omitempty"`
	Symbol          string `protobuf:"bytes,7,opt,name=symbol,proto3" json:"symbol,omitempty"`
	//因为考虑到,eth的单位是以wei计算的,所以使用string类型
	Amount               string   `protobuf:"bytes,8,opt,name=amount,proto3" json:"amount,omitempty"`
	Nonce                int64    `protobuf:"varint,9,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TxIndex              int64    `protobuf:"varint,10,opt,name=txIndex,proto3" json:"txIndex,omitempty"`
	OperationType        string   `protobuf:"bytes,11,opt,name=operationType,proto3" json:"operationType,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Ethereum2Chain33Statics) Descriptor

func (*Ethereum2Chain33Statics) Descriptor() ([]byte, []int)

func (*Ethereum2Chain33Statics) GetAmount

func (m *Ethereum2Chain33Statics) GetAmount() string

func (*Ethereum2Chain33Statics) GetBurnLock

func (m *Ethereum2Chain33Statics) GetBurnLock() int32

func (*Ethereum2Chain33Statics) GetChain33Receiver

func (m *Ethereum2Chain33Statics) GetChain33Receiver() string

func (*Ethereum2Chain33Statics) GetChain33Txhash

func (m *Ethereum2Chain33Statics) GetChain33Txhash() string

func (*Ethereum2Chain33Statics) GetChain33Txstatus

func (m *Ethereum2Chain33Statics) GetChain33Txstatus() string

func (*Ethereum2Chain33Statics) GetEthereumSender

func (m *Ethereum2Chain33Statics) GetEthereumSender() string

func (*Ethereum2Chain33Statics) GetEthereumTxhash

func (m *Ethereum2Chain33Statics) GetEthereumTxhash() string

func (*Ethereum2Chain33Statics) GetNonce

func (m *Ethereum2Chain33Statics) GetNonce() int64

func (*Ethereum2Chain33Statics) GetOperationType

func (m *Ethereum2Chain33Statics) GetOperationType() string

func (*Ethereum2Chain33Statics) GetSymbol

func (m *Ethereum2Chain33Statics) GetSymbol() string

func (*Ethereum2Chain33Statics) GetTxIndex

func (m *Ethereum2Chain33Statics) GetTxIndex() int64

func (*Ethereum2Chain33Statics) ProtoMessage

func (*Ethereum2Chain33Statics) ProtoMessage()

func (*Ethereum2Chain33Statics) Reset

func (m *Ethereum2Chain33Statics) Reset()

func (*Ethereum2Chain33Statics) String

func (m *Ethereum2Chain33Statics) String() string

func (*Ethereum2Chain33Statics) XXX_DiscardUnknown added in v1.66.0

func (m *Ethereum2Chain33Statics) XXX_DiscardUnknown()

func (*Ethereum2Chain33Statics) XXX_Marshal added in v1.66.0

func (m *Ethereum2Chain33Statics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Ethereum2Chain33Statics) XXX_Merge added in v1.66.0

func (m *Ethereum2Chain33Statics) XXX_Merge(src proto.Message)

func (*Ethereum2Chain33Statics) XXX_Size added in v1.66.0

func (m *Ethereum2Chain33Statics) XXX_Size() int

func (*Ethereum2Chain33Statics) XXX_Unmarshal added in v1.66.0

func (m *Ethereum2Chain33Statics) XXX_Unmarshal(b []byte) error

type EventLogIndex

type EventLogIndex struct {
	Height               uint64   `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	Index                uint32   `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EventLogIndex) Descriptor

func (*EventLogIndex) Descriptor() ([]byte, []int)

func (*EventLogIndex) GetHeight

func (m *EventLogIndex) GetHeight() uint64

func (*EventLogIndex) GetIndex

func (m *EventLogIndex) GetIndex() uint32

func (*EventLogIndex) ProtoMessage

func (*EventLogIndex) ProtoMessage()

func (*EventLogIndex) Reset

func (m *EventLogIndex) Reset()

func (*EventLogIndex) String

func (m *EventLogIndex) String() string

func (*EventLogIndex) XXX_DiscardUnknown added in v1.66.0

func (m *EventLogIndex) XXX_DiscardUnknown()

func (*EventLogIndex) XXX_Marshal added in v1.66.0

func (m *EventLogIndex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EventLogIndex) XXX_Merge added in v1.66.0

func (m *EventLogIndex) XXX_Merge(src proto.Message)

func (*EventLogIndex) XXX_Size added in v1.66.0

func (m *EventLogIndex) XXX_Size() int

func (*EventLogIndex) XXX_Unmarshal added in v1.66.0

func (m *EventLogIndex) XXX_Unmarshal(b []byte) error

type ImportKeyReq

type ImportKeyReq struct {
	PrivateKey           string   `protobuf:"bytes,1,opt,name=privateKey,proto3" json:"privateKey,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ImportKeyReq) Descriptor

func (*ImportKeyReq) Descriptor() ([]byte, []int)

func (*ImportKeyReq) GetPrivateKey

func (m *ImportKeyReq) GetPrivateKey() string

func (*ImportKeyReq) ProtoMessage

func (*ImportKeyReq) ProtoMessage()

func (*ImportKeyReq) Reset

func (m *ImportKeyReq) Reset()

func (*ImportKeyReq) String

func (m *ImportKeyReq) String() string

func (*ImportKeyReq) XXX_DiscardUnknown added in v1.66.0

func (m *ImportKeyReq) XXX_DiscardUnknown()

func (*ImportKeyReq) XXX_Marshal added in v1.66.0

func (m *ImportKeyReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ImportKeyReq) XXX_Merge added in v1.66.0

func (m *ImportKeyReq) XXX_Merge(src proto.Message)

func (*ImportKeyReq) XXX_Size added in v1.66.0

func (m *ImportKeyReq) XXX_Size() int

func (*ImportKeyReq) XXX_Unmarshal added in v1.66.0

func (m *ImportKeyReq) XXX_Unmarshal(b []byte) error

type LockBTY

type LockBTY struct {
	OwnerKey string `protobuf:"bytes,1,opt,name=ownerKey,proto3" json:"ownerKey,omitempty"`
	Amount   string `protobuf:"bytes,2,opt,name=amount,proto3" json:"amount,omitempty"`
	//将lock住的资产跨链转移到ethereum的该账户名下
	EtherumReceiver      string   `protobuf:"bytes,3,opt,name=etherumReceiver,proto3" json:"etherumReceiver,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LockBTY) Descriptor

func (*LockBTY) Descriptor() ([]byte, []int)

func (*LockBTY) GetAmount

func (m *LockBTY) GetAmount() string

func (*LockBTY) GetEtherumReceiver

func (m *LockBTY) GetEtherumReceiver() string

func (*LockBTY) GetOwnerKey

func (m *LockBTY) GetOwnerKey() string

func (*LockBTY) ProtoMessage

func (*LockBTY) ProtoMessage()

func (*LockBTY) Reset

func (m *LockBTY) Reset()

func (*LockBTY) String

func (m *LockBTY) String() string

func (*LockBTY) XXX_DiscardUnknown added in v1.66.0

func (m *LockBTY) XXX_DiscardUnknown()

func (*LockBTY) XXX_Marshal added in v1.66.0

func (m *LockBTY) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LockBTY) XXX_Merge added in v1.66.0

func (m *LockBTY) XXX_Merge(src proto.Message)

func (*LockBTY) XXX_Size added in v1.66.0

func (m *LockBTY) XXX_Size() int

func (*LockBTY) XXX_Unmarshal added in v1.66.0

func (m *LockBTY) XXX_Unmarshal(b []byte) error

type LockEthErc20

type LockEthErc20 struct {
	OwnerKey  string `protobuf:"bytes,1,opt,name=ownerKey,proto3" json:"ownerKey,omitempty"`
	TokenAddr string `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Amount    string `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	//将lock住的资产跨链转移到chain33的该账户名下
	Chain33Receiver      string   `protobuf:"bytes,4,opt,name=chain33Receiver,proto3" json:"chain33Receiver,omitempty"`
	ChainName            string   `protobuf:"bytes,5,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*LockEthErc20) Descriptor

func (*LockEthErc20) Descriptor() ([]byte, []int)

func (*LockEthErc20) GetAmount

func (m *LockEthErc20) GetAmount() string

func (*LockEthErc20) GetChain33Receiver

func (m *LockEthErc20) GetChain33Receiver() string

func (*LockEthErc20) GetChainName added in v1.66.2

func (m *LockEthErc20) GetChainName() string

func (*LockEthErc20) GetOwnerKey

func (m *LockEthErc20) GetOwnerKey() string

func (*LockEthErc20) GetTokenAddr

func (m *LockEthErc20) GetTokenAddr() string

func (*LockEthErc20) ProtoMessage

func (*LockEthErc20) ProtoMessage()

func (*LockEthErc20) Reset

func (m *LockEthErc20) Reset()

func (*LockEthErc20) String

func (m *LockEthErc20) String() string

func (*LockEthErc20) XXX_DiscardUnknown added in v1.66.0

func (m *LockEthErc20) XXX_DiscardUnknown()

func (*LockEthErc20) XXX_Marshal added in v1.66.0

func (m *LockEthErc20) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*LockEthErc20) XXX_Merge added in v1.66.0

func (m *LockEthErc20) XXX_Merge(src proto.Message)

func (*LockEthErc20) XXX_Size added in v1.66.0

func (m *LockEthErc20) XXX_Size() int

func (*LockEthErc20) XXX_Unmarshal added in v1.66.0

func (m *LockEthErc20) XXX_Unmarshal(b []byte) error

type Log

type Log struct {
	Loglevel             string   `protobuf:"bytes,1,opt,name=loglevel,proto3" json:"loglevel,omitempty"`
	LogConsoleLevel      string   `protobuf:"bytes,2,opt,name=logConsoleLevel,proto3" json:"logConsoleLevel,omitempty"`
	LogFile              string   `protobuf:"bytes,3,opt,name=logFile,proto3" json:"logFile,omitempty"`
	MaxFileSize          uint32   `protobuf:"varint,4,opt,name=maxFileSize,proto3" json:"maxFileSize,omitempty"`
	MaxBackups           uint32   `protobuf:"varint,5,opt,name=maxBackups,proto3" json:"maxBackups,omitempty"`
	MaxAge               uint32   `protobuf:"varint,6,opt,name=maxAge,proto3" json:"maxAge,omitempty"`
	LocalTime            bool     `protobuf:"varint,7,opt,name=localTime,proto3" json:"localTime,omitempty"`
	Compress             bool     `protobuf:"varint,8,opt,name=compress,proto3" json:"compress,omitempty"`
	CallerFile           bool     `protobuf:"varint,9,opt,name=callerFile,proto3" json:"callerFile,omitempty"`
	CallerFunction       bool     `protobuf:"varint,10,opt,name=callerFunction,proto3" json:"callerFunction,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Log) Descriptor

func (*Log) Descriptor() ([]byte, []int)

func (*Log) GetCallerFile

func (m *Log) GetCallerFile() bool

func (*Log) GetCallerFunction

func (m *Log) GetCallerFunction() bool

func (*Log) GetCompress

func (m *Log) GetCompress() bool

func (*Log) GetLocalTime

func (m *Log) GetLocalTime() bool

func (*Log) GetLogConsoleLevel

func (m *Log) GetLogConsoleLevel() string

func (*Log) GetLogFile

func (m *Log) GetLogFile() string

func (*Log) GetLoglevel

func (m *Log) GetLoglevel() string

func (*Log) GetMaxAge

func (m *Log) GetMaxAge() uint32

func (*Log) GetMaxBackups

func (m *Log) GetMaxBackups() uint32

func (*Log) GetMaxFileSize

func (m *Log) GetMaxFileSize() uint32

func (*Log) ProtoMessage

func (*Log) ProtoMessage()

func (*Log) Reset

func (m *Log) Reset()

func (*Log) String

func (m *Log) String() string

func (*Log) XXX_DiscardUnknown added in v1.66.0

func (m *Log) XXX_DiscardUnknown()

func (*Log) XXX_Marshal added in v1.66.0

func (m *Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Log) XXX_Merge added in v1.66.0

func (m *Log) XXX_Merge(src proto.Message)

func (*Log) XXX_Size added in v1.66.0

func (m *Log) XXX_Size() int

func (*Log) XXX_Unmarshal added in v1.66.0

func (m *Log) XXX_Unmarshal(b []byte) error

type MintToken

type MintToken struct {
	Owner                string   `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Amount               string   `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MintToken) Descriptor

func (*MintToken) Descriptor() ([]byte, []int)

func (*MintToken) GetAmount

func (m *MintToken) GetAmount() string

func (*MintToken) GetOwner

func (m *MintToken) GetOwner() string

func (*MintToken) GetTokenAddr

func (m *MintToken) GetTokenAddr() string

func (*MintToken) ProtoMessage

func (*MintToken) ProtoMessage()

func (*MintToken) Reset

func (m *MintToken) Reset()

func (*MintToken) String

func (m *MintToken) String() string

func (*MintToken) XXX_DiscardUnknown added in v1.66.0

func (m *MintToken) XXX_DiscardUnknown()

func (*MintToken) XXX_Marshal added in v1.66.0

func (m *MintToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MintToken) XXX_Merge added in v1.66.0

func (m *MintToken) XXX_Merge(src proto.Message)

func (*MintToken) XXX_Size added in v1.66.0

func (m *MintToken) XXX_Size() int

func (*MintToken) XXX_Unmarshal added in v1.66.0

func (m *MintToken) XXX_Unmarshal(b []byte) error

type NewProphecyClaim

type NewProphecyClaim struct {
	ClaimType            uint32   `protobuf:"varint,1,opt,name=claimType,proto3" json:"claimType,omitempty"`
	Chain33Sender        string   `protobuf:"bytes,2,opt,name=chain33Sender,proto3" json:"chain33Sender,omitempty"`
	TokenAddr            string   `protobuf:"bytes,3,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Symbol               string   `protobuf:"bytes,4,opt,name=symbol,proto3" json:"symbol,omitempty"`
	EthReceiver          string   `protobuf:"bytes,5,opt,name=ethReceiver,proto3" json:"ethReceiver,omitempty"`
	Amount               string   `protobuf:"bytes,6,opt,name=amount,proto3" json:"amount,omitempty"`
	TxHash               string   `protobuf:"bytes,7,opt,name=txHash,proto3" json:"txHash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*NewProphecyClaim) Descriptor

func (*NewProphecyClaim) Descriptor() ([]byte, []int)

func (*NewProphecyClaim) GetAmount

func (m *NewProphecyClaim) GetAmount() string

func (*NewProphecyClaim) GetChain33Sender

func (m *NewProphecyClaim) GetChain33Sender() string

func (*NewProphecyClaim) GetClaimType

func (m *NewProphecyClaim) GetClaimType() uint32

func (*NewProphecyClaim) GetEthReceiver

func (m *NewProphecyClaim) GetEthReceiver() string

func (*NewProphecyClaim) GetSymbol

func (m *NewProphecyClaim) GetSymbol() string

func (*NewProphecyClaim) GetTokenAddr

func (m *NewProphecyClaim) GetTokenAddr() string

func (*NewProphecyClaim) GetTxHash

func (m *NewProphecyClaim) GetTxHash() string

func (*NewProphecyClaim) ProtoMessage

func (*NewProphecyClaim) ProtoMessage()

func (*NewProphecyClaim) Reset

func (m *NewProphecyClaim) Reset()

func (*NewProphecyClaim) String

func (m *NewProphecyClaim) String() string

func (*NewProphecyClaim) XXX_DiscardUnknown added in v1.66.0

func (m *NewProphecyClaim) XXX_DiscardUnknown()

func (*NewProphecyClaim) XXX_Marshal added in v1.66.0

func (m *NewProphecyClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NewProphecyClaim) XXX_Merge added in v1.66.0

func (m *NewProphecyClaim) XXX_Merge(src proto.Message)

func (*NewProphecyClaim) XXX_Size added in v1.66.0

func (m *NewProphecyClaim) XXX_Size() int

func (*NewProphecyClaim) XXX_Unmarshal added in v1.66.0

func (m *NewProphecyClaim) XXX_Unmarshal(b []byte) error

type ProphecyProcessed added in v1.67.3

type ProphecyProcessed struct {
	ClaimID              string   `protobuf:"bytes,1,opt,name=claimID,proto3" json:"claimID,omitempty"`
	Valid                bool     `protobuf:"varint,2,opt,name=valid,proto3" json:"valid,omitempty"`
	Txhash               string   `protobuf:"bytes,3,opt,name=txhash,proto3" json:"txhash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ProphecyProcessed) Descriptor added in v1.67.3

func (*ProphecyProcessed) Descriptor() ([]byte, []int)

func (*ProphecyProcessed) GetClaimID added in v1.67.3

func (m *ProphecyProcessed) GetClaimID() string

func (*ProphecyProcessed) GetTxhash added in v1.67.3

func (m *ProphecyProcessed) GetTxhash() string

func (*ProphecyProcessed) GetValid added in v1.67.3

func (m *ProphecyProcessed) GetValid() bool

func (*ProphecyProcessed) ProtoMessage added in v1.67.3

func (*ProphecyProcessed) ProtoMessage()

func (*ProphecyProcessed) Reset added in v1.67.3

func (m *ProphecyProcessed) Reset()

func (*ProphecyProcessed) String added in v1.67.3

func (m *ProphecyProcessed) String() string

func (*ProphecyProcessed) XXX_DiscardUnknown added in v1.67.3

func (m *ProphecyProcessed) XXX_DiscardUnknown()

func (*ProphecyProcessed) XXX_Marshal added in v1.67.3

func (m *ProphecyProcessed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProphecyProcessed) XXX_Merge added in v1.67.3

func (m *ProphecyProcessed) XXX_Merge(src proto.Message)

func (*ProphecyProcessed) XXX_Size added in v1.67.3

func (m *ProphecyProcessed) XXX_Size() int

func (*ProphecyProcessed) XXX_Unmarshal added in v1.67.3

func (m *ProphecyProcessed) XXX_Unmarshal(b []byte) error

type QueryReq added in v1.67.0

type QueryReq struct {
	Param                string   `protobuf:"bytes,1,opt,name=param,proto3" json:"param,omitempty"`
	AbiData              string   `protobuf:"bytes,2,opt,name=abiData,proto3" json:"abiData,omitempty"`
	ContractAddr         string   `protobuf:"bytes,3,opt,name=contractAddr,proto3" json:"contractAddr,omitempty"`
	Owner                string   `protobuf:"bytes,4,opt,name=owner,proto3" json:"owner,omitempty"`
	ChainName            string   `protobuf:"bytes,5,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*QueryReq) Descriptor added in v1.67.0

func (*QueryReq) Descriptor() ([]byte, []int)

func (*QueryReq) GetAbiData added in v1.67.0

func (m *QueryReq) GetAbiData() string

func (*QueryReq) GetChainName added in v1.67.0

func (m *QueryReq) GetChainName() string

func (*QueryReq) GetContractAddr added in v1.67.0

func (m *QueryReq) GetContractAddr() string

func (*QueryReq) GetOwner added in v1.67.0

func (m *QueryReq) GetOwner() string

func (*QueryReq) GetParam added in v1.67.0

func (m *QueryReq) GetParam() string

func (*QueryReq) ProtoMessage added in v1.67.0

func (*QueryReq) ProtoMessage()

func (*QueryReq) Reset added in v1.67.0

func (m *QueryReq) Reset()

func (*QueryReq) String added in v1.67.0

func (m *QueryReq) String() string

func (*QueryReq) XXX_DiscardUnknown added in v1.67.1

func (m *QueryReq) XXX_DiscardUnknown()

func (*QueryReq) XXX_Marshal added in v1.67.1

func (m *QueryReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*QueryReq) XXX_Merge added in v1.67.1

func (m *QueryReq) XXX_Merge(src proto.Message)

func (*QueryReq) XXX_Size added in v1.67.1

func (m *QueryReq) XXX_Size() int

func (*QueryReq) XXX_Unmarshal added in v1.67.1

func (m *QueryReq) XXX_Unmarshal(b []byte) error

type RegetEthereumEventReq added in v1.66.3

type RegetEthereumEventReq struct {
	Start                int64    `protobuf:"varint,1,opt,name=start,proto3" json:"start,omitempty"`
	Stop                 int64    `protobuf:"varint,2,opt,name=stop,proto3" json:"stop,omitempty"`
	ChainName            string   `protobuf:"bytes,3,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RegetEthereumEventReq) Descriptor added in v1.66.3

func (*RegetEthereumEventReq) Descriptor() ([]byte, []int)

func (*RegetEthereumEventReq) GetChainName added in v1.66.3

func (m *RegetEthereumEventReq) GetChainName() string

func (*RegetEthereumEventReq) GetStart added in v1.66.3

func (m *RegetEthereumEventReq) GetStart() int64

func (*RegetEthereumEventReq) GetStop added in v1.66.3

func (m *RegetEthereumEventReq) GetStop() int64

func (*RegetEthereumEventReq) ProtoMessage added in v1.66.3

func (*RegetEthereumEventReq) ProtoMessage()

func (*RegetEthereumEventReq) Reset added in v1.66.3

func (m *RegetEthereumEventReq) Reset()

func (*RegetEthereumEventReq) String added in v1.66.3

func (m *RegetEthereumEventReq) String() string

func (*RegetEthereumEventReq) XXX_DiscardUnknown added in v1.67.1

func (m *RegetEthereumEventReq) XXX_DiscardUnknown()

func (*RegetEthereumEventReq) XXX_Marshal added in v1.67.1

func (m *RegetEthereumEventReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RegetEthereumEventReq) XXX_Merge added in v1.67.1

func (m *RegetEthereumEventReq) XXX_Merge(src proto.Message)

func (*RegetEthereumEventReq) XXX_Size added in v1.67.1

func (m *RegetEthereumEventReq) XXX_Size() int

func (*RegetEthereumEventReq) XXX_Unmarshal added in v1.67.1

func (m *RegetEthereumEventReq) XXX_Unmarshal(b []byte) error

type RelayTxDetail added in v1.67.0

type RelayTxDetail struct {
	ClaimType      int32 `protobuf:"varint,1,opt,name=claimType,proto3" json:"claimType,omitempty"`
	TxIndexRelayed int64 `protobuf:"varint,2,opt,name=txIndexRelayed,proto3" json:"txIndexRelayed,omitempty"`
	//中继交易,不是源交易
	Txhash               string   `protobuf:"bytes,3,opt,name=txhash,proto3" json:"txhash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RelayTxDetail) Descriptor added in v1.67.0

func (*RelayTxDetail) Descriptor() ([]byte, []int)

func (*RelayTxDetail) GetClaimType added in v1.67.0

func (m *RelayTxDetail) GetClaimType() int32

func (*RelayTxDetail) GetTxIndexRelayed added in v1.67.0

func (m *RelayTxDetail) GetTxIndexRelayed() int64

func (*RelayTxDetail) GetTxhash added in v1.67.0

func (m *RelayTxDetail) GetTxhash() string

func (*RelayTxDetail) ProtoMessage added in v1.67.0

func (*RelayTxDetail) ProtoMessage()

func (*RelayTxDetail) Reset added in v1.67.0

func (m *RelayTxDetail) Reset()

func (*RelayTxDetail) String added in v1.67.0

func (m *RelayTxDetail) String() string

func (*RelayTxDetail) XXX_DiscardUnknown added in v1.67.1

func (m *RelayTxDetail) XXX_DiscardUnknown()

func (*RelayTxDetail) XXX_Marshal added in v1.67.1

func (m *RelayTxDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayTxDetail) XXX_Merge added in v1.67.1

func (m *RelayTxDetail) XXX_Merge(src proto.Message)

func (*RelayTxDetail) XXX_Size added in v1.67.1

func (m *RelayTxDetail) XXX_Size() int

func (*RelayTxDetail) XXX_Unmarshal added in v1.67.1

func (m *RelayTxDetail) XXX_Unmarshal(b []byte) error

type RelayerConfig

type RelayerConfig struct {
	Title                string             `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
	JrpcBindAddr         string             `protobuf:"bytes,2,opt,name=jrpcBindAddr,proto3" json:"jrpcBindAddr,omitempty"`
	EthRelayerCfg        []*EthRelayerCfg   `protobuf:"bytes,3,rep,name=ethRelayerCfg,proto3" json:"ethRelayerCfg,omitempty"`
	Chain33RelayerCfg    *Chain33RelayerCfg `protobuf:"bytes,4,opt,name=chain33RelayerCfg,proto3" json:"chain33RelayerCfg,omitempty"`
	Log                  *Log               `protobuf:"bytes,5,opt,name=log,proto3" json:"log,omitempty"`
	Dbdriver             string             `protobuf:"bytes,6,opt,name=dbdriver,proto3" json:"dbdriver,omitempty"`
	DbPath               string             `protobuf:"bytes,7,opt,name=dbPath,proto3" json:"dbPath,omitempty"`
	DbCache              int32              `protobuf:"varint,8,opt,name=dbCache,proto3" json:"dbCache,omitempty"`
	ProcessWithDraw      bool               `protobuf:"varint,9,opt,name=processWithDraw,proto3" json:"processWithDraw,omitempty"`
	RemindUrl            string             `protobuf:"bytes,10,opt,name=remindUrl,proto3" json:"remindUrl,omitempty"`
	RemindClientErrorUrl string             `protobuf:"bytes,11,opt,name=remindClientErrorUrl,proto3" json:"remindClientErrorUrl,omitempty"`
	RemindEmail          []string           `protobuf:"bytes,12,rep,name=remindEmail,proto3" json:"remindEmail,omitempty"`
	DelayedSendTime      int64              `protobuf:"varint,13,opt,name=delayedSendTime,proto3" json:"delayedSendTime,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*RelayerConfig) Descriptor

func (*RelayerConfig) Descriptor() ([]byte, []int)

func (*RelayerConfig) GetChain33RelayerCfg added in v1.66.2

func (m *RelayerConfig) GetChain33RelayerCfg() *Chain33RelayerCfg

func (*RelayerConfig) GetDbCache added in v1.66.2

func (m *RelayerConfig) GetDbCache() int32

func (*RelayerConfig) GetDbPath added in v1.66.2

func (m *RelayerConfig) GetDbPath() string

func (*RelayerConfig) GetDbdriver added in v1.66.2

func (m *RelayerConfig) GetDbdriver() string

func (*RelayerConfig) GetDelayedSendTime added in v1.67.3

func (m *RelayerConfig) GetDelayedSendTime() int64

func (*RelayerConfig) GetEthRelayerCfg added in v1.66.2

func (m *RelayerConfig) GetEthRelayerCfg() []*EthRelayerCfg

func (*RelayerConfig) GetJrpcBindAddr

func (m *RelayerConfig) GetJrpcBindAddr() string

func (*RelayerConfig) GetLog

func (m *RelayerConfig) GetLog() *Log

func (*RelayerConfig) GetProcessWithDraw added in v1.66.0

func (m *RelayerConfig) GetProcessWithDraw() bool

func (*RelayerConfig) GetRemindClientErrorUrl added in v1.67.1

func (m *RelayerConfig) GetRemindClientErrorUrl() string

func (*RelayerConfig) GetRemindEmail added in v1.67.1

func (m *RelayerConfig) GetRemindEmail() []string

func (*RelayerConfig) GetRemindUrl added in v1.66.3

func (m *RelayerConfig) GetRemindUrl() string

func (*RelayerConfig) GetTitle

func (m *RelayerConfig) GetTitle() string

func (*RelayerConfig) ProtoMessage

func (*RelayerConfig) ProtoMessage()

func (*RelayerConfig) Reset

func (m *RelayerConfig) Reset()

func (*RelayerConfig) String

func (m *RelayerConfig) String() string

func (*RelayerConfig) XXX_DiscardUnknown added in v1.66.0

func (m *RelayerConfig) XXX_DiscardUnknown()

func (*RelayerConfig) XXX_Marshal added in v1.66.0

func (m *RelayerConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayerConfig) XXX_Merge added in v1.66.0

func (m *RelayerConfig) XXX_Merge(src proto.Message)

func (*RelayerConfig) XXX_Size added in v1.66.0

func (m *RelayerConfig) XXX_Size() int

func (*RelayerConfig) XXX_Unmarshal added in v1.66.0

func (m *RelayerConfig) XXX_Unmarshal(b []byte) error

type RelayerRunStatus

type RelayerRunStatus struct {
	Status               int32    `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
	Details              string   `protobuf:"bytes,2,opt,name=details,proto3" json:"details,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*RelayerRunStatus) Descriptor

func (*RelayerRunStatus) Descriptor() ([]byte, []int)

func (*RelayerRunStatus) GetDetails

func (m *RelayerRunStatus) GetDetails() string

func (*RelayerRunStatus) GetStatus

func (m *RelayerRunStatus) GetStatus() int32

func (*RelayerRunStatus) ProtoMessage

func (*RelayerRunStatus) ProtoMessage()

func (*RelayerRunStatus) Reset

func (m *RelayerRunStatus) Reset()

func (*RelayerRunStatus) String

func (m *RelayerRunStatus) String() string

func (*RelayerRunStatus) XXX_DiscardUnknown added in v1.66.0

func (m *RelayerRunStatus) XXX_DiscardUnknown()

func (*RelayerRunStatus) XXX_Marshal added in v1.66.0

func (m *RelayerRunStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RelayerRunStatus) XXX_Merge added in v1.66.0

func (m *RelayerRunStatus) XXX_Merge(src proto.Message)

func (*RelayerRunStatus) XXX_Size added in v1.66.0

func (m *RelayerRunStatus) XXX_Size() int

func (*RelayerRunStatus) XXX_Unmarshal added in v1.66.0

func (m *RelayerRunStatus) XXX_Unmarshal(b []byte) error

type ReplyAddr

type ReplyAddr struct {
	IsOK                 bool     `protobuf:"varint,1,opt,name=isOK,proto3" json:"isOK,omitempty"`
	Addr                 string   `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReplyAddr) Descriptor

func (*ReplyAddr) Descriptor() ([]byte, []int)

func (*ReplyAddr) GetAddr

func (m *ReplyAddr) GetAddr() string

func (*ReplyAddr) GetIsOK

func (m *ReplyAddr) GetIsOK() bool

func (*ReplyAddr) ProtoMessage

func (*ReplyAddr) ProtoMessage()

func (*ReplyAddr) Reset

func (m *ReplyAddr) Reset()

func (*ReplyAddr) String

func (m *ReplyAddr) String() string

func (*ReplyAddr) XXX_DiscardUnknown added in v1.66.0

func (m *ReplyAddr) XXX_DiscardUnknown()

func (*ReplyAddr) XXX_Marshal added in v1.66.0

func (m *ReplyAddr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyAddr) XXX_Merge added in v1.66.0

func (m *ReplyAddr) XXX_Merge(src proto.Message)

func (*ReplyAddr) XXX_Size added in v1.66.0

func (m *ReplyAddr) XXX_Size() int

func (*ReplyAddr) XXX_Unmarshal added in v1.66.0

func (m *ReplyAddr) XXX_Unmarshal(b []byte) error

type ReplyBalance

type ReplyBalance struct {
	IsOK                 bool     `protobuf:"varint,1,opt,name=isOK,proto3" json:"isOK,omitempty"`
	Balance              string   `protobuf:"bytes,2,opt,name=balance,proto3" json:"balance,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReplyBalance) Descriptor

func (*ReplyBalance) Descriptor() ([]byte, []int)

func (*ReplyBalance) GetBalance

func (m *ReplyBalance) GetBalance() string

func (*ReplyBalance) GetIsOK

func (m *ReplyBalance) GetIsOK() bool

func (*ReplyBalance) ProtoMessage

func (*ReplyBalance) ProtoMessage()

func (*ReplyBalance) Reset

func (m *ReplyBalance) Reset()

func (*ReplyBalance) String

func (m *ReplyBalance) String() string

func (*ReplyBalance) XXX_DiscardUnknown added in v1.66.0

func (m *ReplyBalance) XXX_DiscardUnknown()

func (*ReplyBalance) XXX_Marshal added in v1.66.0

func (m *ReplyBalance) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReplyBalance) XXX_Merge added in v1.66.0

func (m *ReplyBalance) XXX_Merge(src proto.Message)

func (*ReplyBalance) XXX_Size added in v1.66.0

func (m *ReplyBalance) XXX_Size() int

func (*ReplyBalance) XXX_Unmarshal added in v1.66.0

func (m *ReplyBalance) XXX_Unmarshal(b []byte) error

type ReqChangePasswd

type ReqChangePasswd struct {
	OldPassphase         string   `protobuf:"bytes,1,opt,name=oldPassphase,proto3" json:"oldPassphase,omitempty"`
	NewPassphase         string   `protobuf:"bytes,2,opt,name=newPassphase,proto3" json:"newPassphase,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqChangePasswd) Descriptor

func (*ReqChangePasswd) Descriptor() ([]byte, []int)

func (*ReqChangePasswd) GetNewPassphase

func (m *ReqChangePasswd) GetNewPassphase() string

func (*ReqChangePasswd) GetOldPassphase

func (m *ReqChangePasswd) GetOldPassphase() string

func (*ReqChangePasswd) ProtoMessage

func (*ReqChangePasswd) ProtoMessage()

func (*ReqChangePasswd) Reset

func (m *ReqChangePasswd) Reset()

func (*ReqChangePasswd) String

func (m *ReqChangePasswd) String() string

func (*ReqChangePasswd) XXX_DiscardUnknown added in v1.66.0

func (m *ReqChangePasswd) XXX_DiscardUnknown()

func (*ReqChangePasswd) XXX_Marshal added in v1.66.0

func (m *ReqChangePasswd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqChangePasswd) XXX_Merge added in v1.66.0

func (m *ReqChangePasswd) XXX_Merge(src proto.Message)

func (*ReqChangePasswd) XXX_Size added in v1.66.0

func (m *ReqChangePasswd) XXX_Size() int

func (*ReqChangePasswd) XXX_Unmarshal added in v1.66.0

func (m *ReqChangePasswd) XXX_Unmarshal(b []byte) error

type ReqSetPasswd

type ReqSetPasswd struct {
	Passphase            string   `protobuf:"bytes,1,opt,name=Passphase,proto3" json:"Passphase,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReqSetPasswd) Descriptor

func (*ReqSetPasswd) Descriptor() ([]byte, []int)

func (*ReqSetPasswd) GetPassphase

func (m *ReqSetPasswd) GetPassphase() string

func (*ReqSetPasswd) ProtoMessage

func (*ReqSetPasswd) ProtoMessage()

func (*ReqSetPasswd) Reset

func (m *ReqSetPasswd) Reset()

func (*ReqSetPasswd) String

func (m *ReqSetPasswd) String() string

func (*ReqSetPasswd) XXX_DiscardUnknown added in v1.66.0

func (m *ReqSetPasswd) XXX_DiscardUnknown()

func (*ReqSetPasswd) XXX_Marshal added in v1.66.0

func (m *ReqSetPasswd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReqSetPasswd) XXX_Merge added in v1.66.0

func (m *ReqSetPasswd) XXX_Merge(src proto.Message)

func (*ReqSetPasswd) XXX_Size added in v1.66.0

func (m *ReqSetPasswd) XXX_Size() int

func (*ReqSetPasswd) XXX_Unmarshal added in v1.66.0

func (m *ReqSetPasswd) XXX_Unmarshal(b []byte) error

type ResendChain33EventReq added in v1.66.0

type ResendChain33EventReq struct {
	Height               int64    `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ResendChain33EventReq) Descriptor added in v1.66.0

func (*ResendChain33EventReq) Descriptor() ([]byte, []int)

func (*ResendChain33EventReq) GetHeight added in v1.66.0

func (m *ResendChain33EventReq) GetHeight() int64

func (*ResendChain33EventReq) ProtoMessage added in v1.66.0

func (*ResendChain33EventReq) ProtoMessage()

func (*ResendChain33EventReq) Reset added in v1.66.0

func (m *ResendChain33EventReq) Reset()

func (*ResendChain33EventReq) String added in v1.66.0

func (m *ResendChain33EventReq) String() string

func (*ResendChain33EventReq) XXX_DiscardUnknown added in v1.66.0

func (m *ResendChain33EventReq) XXX_DiscardUnknown()

func (*ResendChain33EventReq) XXX_Marshal added in v1.66.0

func (m *ResendChain33EventReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResendChain33EventReq) XXX_Merge added in v1.66.0

func (m *ResendChain33EventReq) XXX_Merge(src proto.Message)

func (*ResendChain33EventReq) XXX_Size added in v1.66.0

func (m *ResendChain33EventReq) XXX_Size() int

func (*ResendChain33EventReq) XXX_Unmarshal added in v1.66.0

func (m *ResendChain33EventReq) XXX_Unmarshal(b []byte) error

type ResendEthereumEventReq added in v1.66.3

type ResendEthereumEventReq struct {
	Height               int64    `protobuf:"varint,1,opt,name=height,proto3" json:"height,omitempty"`
	TxIndex              int32    `protobuf:"varint,2,opt,name=txIndex,proto3" json:"txIndex,omitempty"`
	ChainName            string   `protobuf:"bytes,3,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ResendEthereumEventReq) Descriptor added in v1.66.3

func (*ResendEthereumEventReq) Descriptor() ([]byte, []int)

func (*ResendEthereumEventReq) GetChainName added in v1.66.3

func (m *ResendEthereumEventReq) GetChainName() string

func (*ResendEthereumEventReq) GetHeight added in v1.66.3

func (m *ResendEthereumEventReq) GetHeight() int64

func (*ResendEthereumEventReq) GetTxIndex added in v1.66.3

func (m *ResendEthereumEventReq) GetTxIndex() int32

func (*ResendEthereumEventReq) ProtoMessage added in v1.66.3

func (*ResendEthereumEventReq) ProtoMessage()

func (*ResendEthereumEventReq) Reset added in v1.66.3

func (m *ResendEthereumEventReq) Reset()

func (*ResendEthereumEventReq) String added in v1.66.3

func (m *ResendEthereumEventReq) String() string

func (*ResendEthereumEventReq) XXX_DiscardUnknown added in v1.67.1

func (m *ResendEthereumEventReq) XXX_DiscardUnknown()

func (*ResendEthereumEventReq) XXX_Marshal added in v1.67.1

func (m *ResendEthereumEventReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ResendEthereumEventReq) XXX_Merge added in v1.67.1

func (m *ResendEthereumEventReq) XXX_Merge(src proto.Message)

func (*ResendEthereumEventReq) XXX_Size added in v1.67.1

func (m *ResendEthereumEventReq) XXX_Size() int

func (*ResendEthereumEventReq) XXX_Unmarshal added in v1.67.1

func (m *ResendEthereumEventReq) XXX_Unmarshal(b []byte) error

type SafeTransfer

type SafeTransfer struct {
	To                   string   `protobuf:"bytes,1,opt,name=to,proto3" json:"to,omitempty"`
	Token                string   `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	Amount               float64  `protobuf:"fixed64,3,opt,name=amount,proto3" json:"amount,omitempty"`
	OperatorPrivateKey   string   `protobuf:"bytes,4,opt,name=operatorPrivateKey,proto3" json:"operatorPrivateKey,omitempty"`
	OwnerPrivateKeys     []string `protobuf:"bytes,5,rep,name=ownerPrivateKeys,proto3" json:"ownerPrivateKeys,omitempty"`
	ChainName            string   `protobuf:"bytes,6,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SafeTransfer) Descriptor

func (*SafeTransfer) Descriptor() ([]byte, []int)

func (*SafeTransfer) GetAmount

func (m *SafeTransfer) GetAmount() float64

func (*SafeTransfer) GetChainName added in v1.66.2

func (m *SafeTransfer) GetChainName() string

func (*SafeTransfer) GetOperatorPrivateKey

func (m *SafeTransfer) GetOperatorPrivateKey() string

func (*SafeTransfer) GetOwnerPrivateKeys

func (m *SafeTransfer) GetOwnerPrivateKeys() []string

func (*SafeTransfer) GetTo

func (m *SafeTransfer) GetTo() string

func (*SafeTransfer) GetToken

func (m *SafeTransfer) GetToken() string

func (*SafeTransfer) ProtoMessage

func (*SafeTransfer) ProtoMessage()

func (*SafeTransfer) Reset

func (m *SafeTransfer) Reset()

func (*SafeTransfer) String

func (m *SafeTransfer) String() string

func (*SafeTransfer) XXX_DiscardUnknown added in v1.66.0

func (m *SafeTransfer) XXX_DiscardUnknown()

func (*SafeTransfer) XXX_Marshal added in v1.66.0

func (m *SafeTransfer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SafeTransfer) XXX_Merge added in v1.66.0

func (m *SafeTransfer) XXX_Merge(src proto.Message)

func (*SafeTransfer) XXX_Size added in v1.66.0

func (m *SafeTransfer) XXX_Size() int

func (*SafeTransfer) XXX_Unmarshal added in v1.66.0

func (m *SafeTransfer) XXX_Unmarshal(b []byte) error

type SetupMulSign

type SetupMulSign struct {
	OperatorPrivateKey   string   `protobuf:"bytes,1,opt,name=operatorPrivateKey,proto3" json:"operatorPrivateKey,omitempty"`
	Owners               []string `protobuf:"bytes,2,rep,name=owners,proto3" json:"owners,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SetupMulSign) Descriptor

func (*SetupMulSign) Descriptor() ([]byte, []int)

func (*SetupMulSign) GetOperatorPrivateKey

func (m *SetupMulSign) GetOperatorPrivateKey() string

func (*SetupMulSign) GetOwners

func (m *SetupMulSign) GetOwners() []string

func (*SetupMulSign) ProtoMessage

func (*SetupMulSign) ProtoMessage()

func (*SetupMulSign) Reset

func (m *SetupMulSign) Reset()

func (*SetupMulSign) String

func (m *SetupMulSign) String() string

func (*SetupMulSign) XXX_DiscardUnknown added in v1.66.0

func (m *SetupMulSign) XXX_DiscardUnknown()

func (*SetupMulSign) XXX_Marshal added in v1.66.0

func (m *SetupMulSign) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SetupMulSign) XXX_Merge added in v1.66.0

func (m *SetupMulSign) XXX_Merge(src proto.Message)

func (*SetupMulSign) XXX_Size added in v1.66.0

func (m *SetupMulSign) XXX_Size() int

func (*SetupMulSign) XXX_Unmarshal added in v1.66.0

func (m *SetupMulSign) XXX_Unmarshal(b []byte) error

type Symbol2EthChain added in v1.66.2

type Symbol2EthChain struct {
	Symbol2Name          map[string]string `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (*Symbol2EthChain) Descriptor added in v1.66.2

func (*Symbol2EthChain) Descriptor() ([]byte, []int)

func (*Symbol2EthChain) GetSymbol2Name added in v1.66.2

func (m *Symbol2EthChain) GetSymbol2Name() map[string]string

func (*Symbol2EthChain) ProtoMessage added in v1.66.2

func (*Symbol2EthChain) ProtoMessage()

func (*Symbol2EthChain) Reset added in v1.66.2

func (m *Symbol2EthChain) Reset()

func (*Symbol2EthChain) String added in v1.66.2

func (m *Symbol2EthChain) String() string

func (*Symbol2EthChain) XXX_DiscardUnknown added in v1.67.1

func (m *Symbol2EthChain) XXX_DiscardUnknown()

func (*Symbol2EthChain) XXX_Marshal added in v1.67.1

func (m *Symbol2EthChain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Symbol2EthChain) XXX_Merge added in v1.67.1

func (m *Symbol2EthChain) XXX_Merge(src proto.Message)

func (*Symbol2EthChain) XXX_Size added in v1.67.1

func (m *Symbol2EthChain) XXX_Size() int

func (*Symbol2EthChain) XXX_Unmarshal added in v1.67.1

func (m *Symbol2EthChain) XXX_Unmarshal(b []byte) error

type SyncTxConfig

type SyncTxConfig struct {
	Chain33Host          string   `protobuf:"bytes,1,opt,name=chain33host,proto3" json:"chain33host,omitempty"`
	PushHost             string   `protobuf:"bytes,2,opt,name=pushHost,proto3" json:"pushHost,omitempty"`
	PushName             string   `protobuf:"bytes,3,opt,name=pushName,proto3" json:"pushName,omitempty"`
	PushBind             string   `protobuf:"bytes,4,opt,name=pushBind,proto3" json:"pushBind,omitempty"`
	MaturityDegree       int32    `protobuf:"varint,5,opt,name=maturityDegree,proto3" json:"maturityDegree,omitempty"`
	FetchHeightPeriodMs  int64    `protobuf:"varint,9,opt,name=fetchHeightPeriodMs,proto3" json:"fetchHeightPeriodMs,omitempty"`
	StartSyncHeight      int64    `protobuf:"varint,10,opt,name=startSyncHeight,proto3" json:"startSyncHeight,omitempty"`
	StartSyncSequence    int64    `protobuf:"varint,11,opt,name=startSyncSequence,proto3" json:"startSyncSequence,omitempty"`
	StartSyncHash        string   `protobuf:"bytes,12,opt,name=startSyncHash,proto3" json:"startSyncHash,omitempty"`
	KeepAliveDuration    int64    `protobuf:"varint,13,opt,name=keepAliveDuration,proto3" json:"keepAliveDuration,omitempty"`
	Chain33RpcUrls       []string `protobuf:"bytes,14,rep,name=chain33RpcUrls,proto3" json:"chain33RpcUrls,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SyncTxConfig) Descriptor

func (*SyncTxConfig) Descriptor() ([]byte, []int)

func (*SyncTxConfig) GetChain33Host

func (m *SyncTxConfig) GetChain33Host() string

func (*SyncTxConfig) GetChain33RpcUrls added in v1.67.2

func (m *SyncTxConfig) GetChain33RpcUrls() []string

func (*SyncTxConfig) GetFetchHeightPeriodMs

func (m *SyncTxConfig) GetFetchHeightPeriodMs() int64

func (*SyncTxConfig) GetKeepAliveDuration added in v1.67.0

func (m *SyncTxConfig) GetKeepAliveDuration() int64

func (*SyncTxConfig) GetMaturityDegree

func (m *SyncTxConfig) GetMaturityDegree() int32

func (*SyncTxConfig) GetPushBind

func (m *SyncTxConfig) GetPushBind() string

func (*SyncTxConfig) GetPushHost

func (m *SyncTxConfig) GetPushHost() string

func (*SyncTxConfig) GetPushName

func (m *SyncTxConfig) GetPushName() string

func (*SyncTxConfig) GetStartSyncHash

func (m *SyncTxConfig) GetStartSyncHash() string

func (*SyncTxConfig) GetStartSyncHeight

func (m *SyncTxConfig) GetStartSyncHeight() int64

func (*SyncTxConfig) GetStartSyncSequence

func (m *SyncTxConfig) GetStartSyncSequence() int64

func (*SyncTxConfig) ProtoMessage

func (*SyncTxConfig) ProtoMessage()

func (*SyncTxConfig) Reset

func (m *SyncTxConfig) Reset()

func (*SyncTxConfig) String

func (m *SyncTxConfig) String() string

func (*SyncTxConfig) XXX_DiscardUnknown added in v1.66.0

func (m *SyncTxConfig) XXX_DiscardUnknown()

func (*SyncTxConfig) XXX_Marshal added in v1.66.0

func (m *SyncTxConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncTxConfig) XXX_Merge added in v1.66.0

func (m *SyncTxConfig) XXX_Merge(src proto.Message)

func (*SyncTxConfig) XXX_Size added in v1.66.0

func (m *SyncTxConfig) XXX_Size() int

func (*SyncTxConfig) XXX_Unmarshal added in v1.66.0

func (m *SyncTxConfig) XXX_Unmarshal(b []byte) error

type SyncTxReceiptConfig

type SyncTxReceiptConfig struct {
	Chain33Host          string   `protobuf:"bytes,1,opt,name=chain33host,proto3" json:"chain33host,omitempty"`
	PushHost             string   `protobuf:"bytes,2,opt,name=pushHost,proto3" json:"pushHost,omitempty"`
	PushName             string   `protobuf:"bytes,3,opt,name=pushName,proto3" json:"pushName,omitempty"`
	PushBind             string   `protobuf:"bytes,4,opt,name=pushBind,proto3" json:"pushBind,omitempty"`
	StartSyncHeight      int64    `protobuf:"varint,5,opt,name=startSyncHeight,proto3" json:"startSyncHeight,omitempty"`
	StartSyncSequence    int64    `protobuf:"varint,6,opt,name=startSyncSequence,proto3" json:"startSyncSequence,omitempty"`
	StartSyncHash        string   `protobuf:"bytes,7,opt,name=startSyncHash,proto3" json:"startSyncHash,omitempty"`
	Contracts            []string `protobuf:"bytes,8,rep,name=contracts,proto3" json:"contracts,omitempty"`
	KeepAliveDuration    int64    `protobuf:"varint,9,opt,name=keepAliveDuration,proto3" json:"keepAliveDuration,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*SyncTxReceiptConfig) Descriptor

func (*SyncTxReceiptConfig) Descriptor() ([]byte, []int)

func (*SyncTxReceiptConfig) GetChain33Host

func (m *SyncTxReceiptConfig) GetChain33Host() string

func (*SyncTxReceiptConfig) GetContracts

func (m *SyncTxReceiptConfig) GetContracts() []string

func (*SyncTxReceiptConfig) GetKeepAliveDuration added in v1.67.0

func (m *SyncTxReceiptConfig) GetKeepAliveDuration() int64

func (*SyncTxReceiptConfig) GetPushBind

func (m *SyncTxReceiptConfig) GetPushBind() string

func (*SyncTxReceiptConfig) GetPushHost

func (m *SyncTxReceiptConfig) GetPushHost() string

func (*SyncTxReceiptConfig) GetPushName

func (m *SyncTxReceiptConfig) GetPushName() string

func (*SyncTxReceiptConfig) GetStartSyncHash

func (m *SyncTxReceiptConfig) GetStartSyncHash() string

func (*SyncTxReceiptConfig) GetStartSyncHeight

func (m *SyncTxReceiptConfig) GetStartSyncHeight() int64

func (*SyncTxReceiptConfig) GetStartSyncSequence

func (m *SyncTxReceiptConfig) GetStartSyncSequence() int64

func (*SyncTxReceiptConfig) ProtoMessage

func (*SyncTxReceiptConfig) ProtoMessage()

func (*SyncTxReceiptConfig) Reset

func (m *SyncTxReceiptConfig) Reset()

func (*SyncTxReceiptConfig) String

func (m *SyncTxReceiptConfig) String() string

func (*SyncTxReceiptConfig) XXX_DiscardUnknown added in v1.66.0

func (m *SyncTxReceiptConfig) XXX_DiscardUnknown()

func (*SyncTxReceiptConfig) XXX_Marshal added in v1.66.0

func (m *SyncTxReceiptConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SyncTxReceiptConfig) XXX_Merge added in v1.66.0

func (m *SyncTxReceiptConfig) XXX_Merge(src proto.Message)

func (*SyncTxReceiptConfig) XXX_Size added in v1.66.0

func (m *SyncTxReceiptConfig) XXX_Size() int

func (*SyncTxReceiptConfig) XXX_Unmarshal added in v1.66.0

func (m *SyncTxReceiptConfig) XXX_Unmarshal(b []byte) error

type TokenAddress

type TokenAddress struct {
	Address              string   `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
	Symbol               string   `protobuf:"bytes,2,opt,name=symbol,proto3" json:"symbol,omitempty"`
	ChainName            string   `protobuf:"bytes,3,opt,name=chainName,proto3" json:"chainName,omitempty"`
	Decimal              int32    `protobuf:"varint,4,opt,name=decimal,proto3" json:"decimal,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TokenAddress) Descriptor

func (*TokenAddress) Descriptor() ([]byte, []int)

func (*TokenAddress) GetAddress

func (m *TokenAddress) GetAddress() string

func (*TokenAddress) GetChainName

func (m *TokenAddress) GetChainName() string

func (*TokenAddress) GetDecimal added in v1.66.0

func (m *TokenAddress) GetDecimal() int32

func (*TokenAddress) GetSymbol

func (m *TokenAddress) GetSymbol() string

func (*TokenAddress) ProtoMessage

func (*TokenAddress) ProtoMessage()

func (*TokenAddress) Reset

func (m *TokenAddress) Reset()

func (*TokenAddress) String

func (m *TokenAddress) String() string

func (*TokenAddress) XXX_DiscardUnknown added in v1.66.0

func (m *TokenAddress) XXX_DiscardUnknown()

func (*TokenAddress) XXX_Marshal added in v1.66.0

func (m *TokenAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenAddress) XXX_Merge added in v1.66.0

func (m *TokenAddress) XXX_Merge(src proto.Message)

func (*TokenAddress) XXX_Size added in v1.66.0

func (m *TokenAddress) XXX_Size() int

func (*TokenAddress) XXX_Unmarshal added in v1.66.0

func (m *TokenAddress) XXX_Unmarshal(b []byte) error

type TokenAddressArray

type TokenAddressArray struct {
	TokenAddress         []*TokenAddress `protobuf:"bytes,1,rep,name=tokenAddress,proto3" json:"tokenAddress,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*TokenAddressArray) Descriptor

func (*TokenAddressArray) Descriptor() ([]byte, []int)

func (*TokenAddressArray) GetTokenAddress

func (m *TokenAddressArray) GetTokenAddress() []*TokenAddress

func (*TokenAddressArray) ProtoMessage

func (*TokenAddressArray) ProtoMessage()

func (*TokenAddressArray) Reset

func (m *TokenAddressArray) Reset()

func (*TokenAddressArray) String

func (m *TokenAddressArray) String() string

func (*TokenAddressArray) XXX_DiscardUnknown added in v1.66.0

func (m *TokenAddressArray) XXX_DiscardUnknown()

func (*TokenAddressArray) XXX_Marshal added in v1.66.0

func (m *TokenAddressArray) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenAddressArray) XXX_Merge added in v1.66.0

func (m *TokenAddressArray) XXX_Merge(src proto.Message)

func (*TokenAddressArray) XXX_Size added in v1.66.0

func (m *TokenAddressArray) XXX_Size() int

func (*TokenAddressArray) XXX_Unmarshal added in v1.66.0

func (m *TokenAddressArray) XXX_Unmarshal(b []byte) error

type TokenStaticsRequest

type TokenStaticsRequest struct {
	Symbol               string   `protobuf:"bytes,1,opt,name=symbol,proto3" json:"symbol,omitempty"`
	From                 int32    `protobuf:"varint,2,opt,name=from,proto3" json:"from,omitempty"`
	Operation            int32    `protobuf:"varint,3,opt,name=operation,proto3" json:"operation,omitempty"`
	Status               int32    `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
	TxIndex              int64    `protobuf:"varint,5,opt,name=txIndex,proto3" json:"txIndex,omitempty"`
	Count                int32    `protobuf:"varint,6,opt,name=count,proto3" json:"count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TokenStaticsRequest) Descriptor

func (*TokenStaticsRequest) Descriptor() ([]byte, []int)

func (*TokenStaticsRequest) GetCount

func (m *TokenStaticsRequest) GetCount() int32

func (*TokenStaticsRequest) GetFrom

func (m *TokenStaticsRequest) GetFrom() int32

func (*TokenStaticsRequest) GetOperation

func (m *TokenStaticsRequest) GetOperation() int32

func (*TokenStaticsRequest) GetStatus

func (m *TokenStaticsRequest) GetStatus() int32

func (*TokenStaticsRequest) GetSymbol

func (m *TokenStaticsRequest) GetSymbol() string

func (*TokenStaticsRequest) GetTxIndex

func (m *TokenStaticsRequest) GetTxIndex() int64

func (*TokenStaticsRequest) ProtoMessage

func (*TokenStaticsRequest) ProtoMessage()

func (*TokenStaticsRequest) Reset

func (m *TokenStaticsRequest) Reset()

func (*TokenStaticsRequest) String

func (m *TokenStaticsRequest) String() string

func (*TokenStaticsRequest) XXX_DiscardUnknown added in v1.66.0

func (m *TokenStaticsRequest) XXX_DiscardUnknown()

func (*TokenStaticsRequest) XXX_Marshal added in v1.66.0

func (m *TokenStaticsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenStaticsRequest) XXX_Merge added in v1.66.0

func (m *TokenStaticsRequest) XXX_Merge(src proto.Message)

func (*TokenStaticsRequest) XXX_Size added in v1.66.0

func (m *TokenStaticsRequest) XXX_Size() int

func (*TokenStaticsRequest) XXX_Unmarshal added in v1.66.0

func (m *TokenStaticsRequest) XXX_Unmarshal(b []byte) error

type TokenStaticsResponse

type TokenStaticsResponse struct {
	E2Cstatics           []*Ethereum2Chain33Statics  `protobuf:"bytes,1,rep,name=e2Cstatics,proto3" json:"e2Cstatics,omitempty"`
	C2Estatics           []*Chain33ToEthereumStatics `protobuf:"bytes,2,rep,name=c2Estatics,proto3" json:"c2Estatics,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*TokenStaticsResponse) Descriptor

func (*TokenStaticsResponse) Descriptor() ([]byte, []int)

func (*TokenStaticsResponse) GetC2Estatics

func (m *TokenStaticsResponse) GetC2Estatics() []*Chain33ToEthereumStatics

func (*TokenStaticsResponse) GetE2Cstatics

func (m *TokenStaticsResponse) GetE2Cstatics() []*Ethereum2Chain33Statics

func (*TokenStaticsResponse) ProtoMessage

func (*TokenStaticsResponse) ProtoMessage()

func (*TokenStaticsResponse) Reset

func (m *TokenStaticsResponse) Reset()

func (*TokenStaticsResponse) String

func (m *TokenStaticsResponse) String() string

func (*TokenStaticsResponse) XXX_DiscardUnknown added in v1.66.0

func (m *TokenStaticsResponse) XXX_DiscardUnknown()

func (*TokenStaticsResponse) XXX_Marshal added in v1.66.0

func (m *TokenStaticsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TokenStaticsResponse) XXX_Merge added in v1.66.0

func (m *TokenStaticsResponse) XXX_Merge(src proto.Message)

func (*TokenStaticsResponse) XXX_Size added in v1.66.0

func (m *TokenStaticsResponse) XXX_Size() int

func (*TokenStaticsResponse) XXX_Unmarshal added in v1.66.0

func (m *TokenStaticsResponse) XXX_Unmarshal(b []byte) error

type TransferToken

type TransferToken struct {
	TokenAddr            string   `protobuf:"bytes,1,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	FromKey              string   `protobuf:"bytes,2,opt,name=fromKey,proto3" json:"fromKey,omitempty"`
	ToAddr               string   `protobuf:"bytes,3,opt,name=toAddr,proto3" json:"toAddr,omitempty"`
	Amount               string   `protobuf:"bytes,4,opt,name=amount,proto3" json:"amount,omitempty"`
	ChainName            string   `protobuf:"bytes,5,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TransferToken) Descriptor

func (*TransferToken) Descriptor() ([]byte, []int)

func (*TransferToken) GetAmount

func (m *TransferToken) GetAmount() string

func (*TransferToken) GetChainName added in v1.66.2

func (m *TransferToken) GetChainName() string

func (*TransferToken) GetFromKey

func (m *TransferToken) GetFromKey() string

func (*TransferToken) GetToAddr

func (m *TransferToken) GetToAddr() string

func (*TransferToken) GetTokenAddr

func (m *TransferToken) GetTokenAddr() string

func (*TransferToken) ProtoMessage

func (*TransferToken) ProtoMessage()

func (*TransferToken) Reset

func (m *TransferToken) Reset()

func (*TransferToken) String

func (m *TransferToken) String() string

func (*TransferToken) XXX_DiscardUnknown added in v1.66.0

func (m *TransferToken) XXX_DiscardUnknown()

func (*TransferToken) XXX_Marshal added in v1.66.0

func (m *TransferToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransferToken) XXX_Merge added in v1.66.0

func (m *TransferToken) XXX_Merge(src proto.Message)

func (*TransferToken) XXX_Size added in v1.66.0

func (m *TransferToken) XXX_Size() int

func (*TransferToken) XXX_Unmarshal added in v1.66.0

func (m *TransferToken) XXX_Unmarshal(b []byte) error

type TxReceiptReq added in v1.66.2

type TxReceiptReq struct {
	TxHash               string   `protobuf:"bytes,1,opt,name=txHash,proto3" json:"txHash,omitempty"`
	ChainName            string   `protobuf:"bytes,2,opt,name=chainName,proto3" json:"chainName,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TxReceiptReq) Descriptor added in v1.66.2

func (*TxReceiptReq) Descriptor() ([]byte, []int)

func (*TxReceiptReq) GetChainName added in v1.66.2

func (m *TxReceiptReq) GetChainName() string

func (*TxReceiptReq) GetTxHash added in v1.66.2

func (m *TxReceiptReq) GetTxHash() string

func (*TxReceiptReq) ProtoMessage added in v1.66.2

func (*TxReceiptReq) ProtoMessage()

func (*TxReceiptReq) Reset added in v1.66.2

func (m *TxReceiptReq) Reset()

func (*TxReceiptReq) String added in v1.66.2

func (m *TxReceiptReq) String() string

func (*TxReceiptReq) XXX_DiscardUnknown added in v1.67.1

func (m *TxReceiptReq) XXX_DiscardUnknown()

func (*TxReceiptReq) XXX_Marshal added in v1.67.1

func (m *TxReceiptReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TxReceiptReq) XXX_Merge added in v1.67.1

func (m *TxReceiptReq) XXX_Merge(src proto.Message)

func (*TxReceiptReq) XXX_Size added in v1.67.1

func (m *TxReceiptReq) XXX_Size() int

func (*TxReceiptReq) XXX_Unmarshal added in v1.67.1

func (m *TxReceiptReq) XXX_Unmarshal(b []byte) error

type TxRelayAck added in v1.67.0

type TxRelayAck struct {
	TxHash               string   `protobuf:"bytes,1,opt,name=txHash,proto3" json:"txHash,omitempty"`
	FdIndex              int64    `protobuf:"varint,2,opt,name=fdIndex,proto3" json:"fdIndex,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TxRelayAck) Descriptor added in v1.67.0

func (*TxRelayAck) Descriptor() ([]byte, []int)

func (*TxRelayAck) GetFdIndex added in v1.67.0

func (m *TxRelayAck) GetFdIndex() int64

func (*TxRelayAck) GetTxHash added in v1.67.0

func (m *TxRelayAck) GetTxHash() string

func (*TxRelayAck) ProtoMessage added in v1.67.0

func (*TxRelayAck) ProtoMessage()

func (*TxRelayAck) Reset added in v1.67.0

func (m *TxRelayAck) Reset()

func (*TxRelayAck) String added in v1.67.0

func (m *TxRelayAck) String() string

func (*TxRelayAck) XXX_DiscardUnknown added in v1.67.1

func (m *TxRelayAck) XXX_DiscardUnknown()

func (*TxRelayAck) XXX_Marshal added in v1.67.1

func (m *TxRelayAck) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TxRelayAck) XXX_Merge added in v1.67.1

func (m *TxRelayAck) XXX_Merge(src proto.Message)

func (*TxRelayAck) XXX_Size added in v1.67.1

func (m *TxRelayAck) XXX_Size() int

func (*TxRelayAck) XXX_Unmarshal added in v1.67.1

func (m *TxRelayAck) XXX_Unmarshal(b []byte) error

type TxRelayConfirm4Chain33 added in v1.67.0

type TxRelayConfirm4Chain33 struct {
	EventType            int32    `protobuf:"varint,1,opt,name=eventType,proto3" json:"eventType,omitempty"`
	Data                 []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	FdTimes              int32    `protobuf:"varint,3,opt,name=fdTimes,proto3" json:"fdTimes,omitempty"`
	FdIndex              int64    `protobuf:"varint,4,opt,name=fdIndex,proto3" json:"fdIndex,omitempty"`
	ToChainName          string   `protobuf:"bytes,5,opt,name=toChainName,proto3" json:"toChainName,omitempty"`
	TxHash               []byte   `protobuf:"bytes,6,opt,name=txHash,proto3" json:"txHash,omitempty"`
	Resend               bool     `protobuf:"varint,7,opt,name=resend,proto3" json:"resend,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TxRelayConfirm4Chain33) Descriptor added in v1.67.0

func (*TxRelayConfirm4Chain33) Descriptor() ([]byte, []int)

func (*TxRelayConfirm4Chain33) GetData added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetData() []byte

func (*TxRelayConfirm4Chain33) GetEventType added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetEventType() int32

func (*TxRelayConfirm4Chain33) GetFdIndex added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetFdIndex() int64

func (*TxRelayConfirm4Chain33) GetFdTimes added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetFdTimes() int32

func (*TxRelayConfirm4Chain33) GetResend added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetResend() bool

func (*TxRelayConfirm4Chain33) GetToChainName added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetToChainName() string

func (*TxRelayConfirm4Chain33) GetTxHash added in v1.67.0

func (m *TxRelayConfirm4Chain33) GetTxHash() []byte

func (*TxRelayConfirm4Chain33) ProtoMessage added in v1.67.0

func (*TxRelayConfirm4Chain33) ProtoMessage()

func (*TxRelayConfirm4Chain33) Reset added in v1.67.0

func (m *TxRelayConfirm4Chain33) Reset()

func (*TxRelayConfirm4Chain33) String added in v1.67.0

func (m *TxRelayConfirm4Chain33) String() string

func (*TxRelayConfirm4Chain33) XXX_DiscardUnknown added in v1.67.1

func (m *TxRelayConfirm4Chain33) XXX_DiscardUnknown()

func (*TxRelayConfirm4Chain33) XXX_Marshal added in v1.67.1

func (m *TxRelayConfirm4Chain33) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TxRelayConfirm4Chain33) XXX_Merge added in v1.67.1

func (m *TxRelayConfirm4Chain33) XXX_Merge(src proto.Message)

func (*TxRelayConfirm4Chain33) XXX_Size added in v1.67.1

func (m *TxRelayConfirm4Chain33) XXX_Size() int

func (*TxRelayConfirm4Chain33) XXX_Unmarshal added in v1.67.1

func (m *TxRelayConfirm4Chain33) XXX_Unmarshal(b []byte) error

type TxRelayConfirm4Ethereum added in v1.67.0

type TxRelayConfirm4Ethereum struct {
	EventType            int32    `protobuf:"varint,1,opt,name=eventType,proto3" json:"eventType,omitempty"`
	Data                 []byte   `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"`
	FdTimes              int32    `protobuf:"varint,3,opt,name=fdTimes,proto3" json:"fdTimes,omitempty"`
	FdIndex              int64    `protobuf:"varint,4,opt,name=fdIndex,proto3" json:"fdIndex,omitempty"`
	TxHash               string   `protobuf:"bytes,5,opt,name=txHash,proto3" json:"txHash,omitempty"`
	Resend               bool     `protobuf:"varint,6,opt,name=resend,proto3" json:"resend,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*TxRelayConfirm4Ethereum) Descriptor added in v1.67.0

func (*TxRelayConfirm4Ethereum) Descriptor() ([]byte, []int)

func (*TxRelayConfirm4Ethereum) GetData added in v1.67.0

func (m *TxRelayConfirm4Ethereum) GetData() []byte

func (*TxRelayConfirm4Ethereum) GetEventType added in v1.67.0

func (m *TxRelayConfirm4Ethereum) GetEventType() int32

func (*TxRelayConfirm4Ethereum) GetFdIndex added in v1.67.0

func (m *TxRelayConfirm4Ethereum) GetFdIndex() int64

func (*TxRelayConfirm4Ethereum) GetFdTimes added in v1.67.0

func (m *TxRelayConfirm4Ethereum) GetFdTimes() int32

func (*TxRelayConfirm4Ethereum) GetResend added in v1.67.0

func (m *TxRelayConfirm4Ethereum) GetResend() bool

func (*TxRelayConfirm4Ethereum) GetTxHash added in v1.67.0

func (m *TxRelayConfirm4Ethereum) GetTxHash() string

func (*TxRelayConfirm4Ethereum) ProtoMessage added in v1.67.0

func (*TxRelayConfirm4Ethereum) ProtoMessage()

func (*TxRelayConfirm4Ethereum) Reset added in v1.67.0

func (m *TxRelayConfirm4Ethereum) Reset()

func (*TxRelayConfirm4Ethereum) String added in v1.67.0

func (m *TxRelayConfirm4Ethereum) String() string

func (*TxRelayConfirm4Ethereum) XXX_DiscardUnknown added in v1.67.1

func (m *TxRelayConfirm4Ethereum) XXX_DiscardUnknown()

func (*TxRelayConfirm4Ethereum) XXX_Marshal added in v1.67.1

func (m *TxRelayConfirm4Ethereum) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TxRelayConfirm4Ethereum) XXX_Merge added in v1.67.1

func (m *TxRelayConfirm4Ethereum) XXX_Merge(src proto.Message)

func (*TxRelayConfirm4Ethereum) XXX_Size added in v1.67.1

func (m *TxRelayConfirm4Ethereum) XXX_Size() int

func (*TxRelayConfirm4Ethereum) XXX_Unmarshal added in v1.67.1

func (m *TxRelayConfirm4Ethereum) XXX_Unmarshal(b []byte) error

type Txhashes

type Txhashes struct {
	Txhash               []string `protobuf:"bytes,1,rep,name=txhash,proto3" json:"txhash,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Txhashes) Descriptor

func (*Txhashes) Descriptor() ([]byte, []int)

func (*Txhashes) GetTxhash

func (m *Txhashes) GetTxhash() []string

func (*Txhashes) ProtoMessage

func (*Txhashes) ProtoMessage()

func (*Txhashes) Reset

func (m *Txhashes) Reset()

func (*Txhashes) String

func (m *Txhashes) String() string

func (*Txhashes) XXX_DiscardUnknown added in v1.66.0

func (m *Txhashes) XXX_DiscardUnknown()

func (*Txhashes) XXX_Marshal added in v1.66.0

func (m *Txhashes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Txhashes) XXX_Merge added in v1.66.0

func (m *Txhashes) XXX_Merge(src proto.Message)

func (*Txhashes) XXX_Size added in v1.66.0

func (m *Txhashes) XXX_Size() int

func (*Txhashes) XXX_Unmarshal added in v1.66.0

func (m *Txhashes) XXX_Unmarshal(b []byte) error

type Uint64

type Uint64 struct {
	Data                 uint64   `protobuf:"varint,1,opt,name=data,proto3" json:"data,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Uint64) Descriptor

func (*Uint64) Descriptor() ([]byte, []int)

func (*Uint64) GetData

func (m *Uint64) GetData() uint64

func (*Uint64) ProtoMessage

func (*Uint64) ProtoMessage()

func (*Uint64) Reset

func (m *Uint64) Reset()

func (*Uint64) String

func (m *Uint64) String() string

func (*Uint64) XXX_DiscardUnknown added in v1.66.0

func (m *Uint64) XXX_DiscardUnknown()

func (*Uint64) XXX_Marshal added in v1.66.0

func (m *Uint64) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Uint64) XXX_Merge added in v1.66.0

func (m *Uint64) XXX_Merge(src proto.Message)

func (*Uint64) XXX_Size added in v1.66.0

func (m *Uint64) XXX_Size() int

func (*Uint64) XXX_Unmarshal added in v1.66.0

func (m *Uint64) XXX_Unmarshal(b []byte) error

type ValidatorAddr4EthRelayer

type ValidatorAddr4EthRelayer struct {
	EthereumValidator    string   `protobuf:"bytes,1,opt,name=ethereumValidator,proto3" json:"ethereumValidator,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ValidatorAddr4EthRelayer) Descriptor

func (*ValidatorAddr4EthRelayer) Descriptor() ([]byte, []int)

func (*ValidatorAddr4EthRelayer) GetEthereumValidator

func (m *ValidatorAddr4EthRelayer) GetEthereumValidator() string

func (*ValidatorAddr4EthRelayer) ProtoMessage

func (*ValidatorAddr4EthRelayer) ProtoMessage()

func (*ValidatorAddr4EthRelayer) Reset

func (m *ValidatorAddr4EthRelayer) Reset()

func (*ValidatorAddr4EthRelayer) String

func (m *ValidatorAddr4EthRelayer) String() string

func (*ValidatorAddr4EthRelayer) XXX_DiscardUnknown added in v1.66.0

func (m *ValidatorAddr4EthRelayer) XXX_DiscardUnknown()

func (*ValidatorAddr4EthRelayer) XXX_Marshal added in v1.66.0

func (m *ValidatorAddr4EthRelayer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ValidatorAddr4EthRelayer) XXX_Merge added in v1.66.0

func (m *ValidatorAddr4EthRelayer) XXX_Merge(src proto.Message)

func (*ValidatorAddr4EthRelayer) XXX_Size added in v1.66.0

func (m *ValidatorAddr4EthRelayer) XXX_Size() int

func (*ValidatorAddr4EthRelayer) XXX_Unmarshal added in v1.66.0

func (m *ValidatorAddr4EthRelayer) XXX_Unmarshal(b []byte) error

type WithdrawFromChain33 added in v1.66.0

type WithdrawFromChain33 struct {
	OwnerKey             string   `protobuf:"bytes,1,opt,name=ownerKey,proto3" json:"ownerKey,omitempty"`
	TokenAddr            string   `protobuf:"bytes,2,opt,name=tokenAddr,proto3" json:"tokenAddr,omitempty"`
	Amount               string   `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
	EthereumReceiver     string   `protobuf:"bytes,4,opt,name=ethereumReceiver,proto3" json:"ethereumReceiver,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WithdrawFromChain33) Descriptor added in v1.66.0

func (*WithdrawFromChain33) Descriptor() ([]byte, []int)

func (*WithdrawFromChain33) GetAmount added in v1.66.0

func (m *WithdrawFromChain33) GetAmount() string

func (*WithdrawFromChain33) GetEthereumReceiver added in v1.66.0

func (m *WithdrawFromChain33) GetEthereumReceiver() string

func (*WithdrawFromChain33) GetOwnerKey added in v1.66.0

func (m *WithdrawFromChain33) GetOwnerKey() string

func (*WithdrawFromChain33) GetTokenAddr added in v1.66.0

func (m *WithdrawFromChain33) GetTokenAddr() string

func (*WithdrawFromChain33) ProtoMessage added in v1.66.0

func (*WithdrawFromChain33) ProtoMessage()

func (*WithdrawFromChain33) Reset added in v1.66.0

func (m *WithdrawFromChain33) Reset()

func (*WithdrawFromChain33) String added in v1.66.0

func (m *WithdrawFromChain33) String() string

func (*WithdrawFromChain33) XXX_DiscardUnknown added in v1.66.0

func (m *WithdrawFromChain33) XXX_DiscardUnknown()

func (*WithdrawFromChain33) XXX_Marshal added in v1.66.0

func (m *WithdrawFromChain33) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WithdrawFromChain33) XXX_Merge added in v1.66.0

func (m *WithdrawFromChain33) XXX_Merge(src proto.Message)

func (*WithdrawFromChain33) XXX_Size added in v1.66.0

func (m *WithdrawFromChain33) XXX_Size() int

func (*WithdrawFromChain33) XXX_Unmarshal added in v1.66.0

func (m *WithdrawFromChain33) XXX_Unmarshal(b []byte) error

type WithdrawPara added in v1.66.0

type WithdrawPara struct {
	Fee                  string   `protobuf:"bytes,1,opt,name=fee,proto3" json:"fee,omitempty"`
	AmountPerDay         string   `protobuf:"bytes,2,opt,name=amountPerDay,proto3" json:"amountPerDay,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WithdrawPara) Descriptor added in v1.66.0

func (*WithdrawPara) Descriptor() ([]byte, []int)

func (*WithdrawPara) GetAmountPerDay added in v1.66.0

func (m *WithdrawPara) GetAmountPerDay() string

func (*WithdrawPara) GetFee added in v1.66.0

func (m *WithdrawPara) GetFee() string

func (*WithdrawPara) ProtoMessage added in v1.66.0

func (*WithdrawPara) ProtoMessage()

func (*WithdrawPara) Reset added in v1.66.0

func (m *WithdrawPara) Reset()

func (*WithdrawPara) String added in v1.66.0

func (m *WithdrawPara) String() string

func (*WithdrawPara) XXX_DiscardUnknown added in v1.66.0

func (m *WithdrawPara) XXX_DiscardUnknown()

func (*WithdrawPara) XXX_Marshal added in v1.66.0

func (m *WithdrawPara) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WithdrawPara) XXX_Merge added in v1.66.0

func (m *WithdrawPara) XXX_Merge(src proto.Message)

func (*WithdrawPara) XXX_Size added in v1.66.0

func (m *WithdrawPara) XXX_Size() int

func (*WithdrawPara) XXX_Unmarshal added in v1.66.0

func (m *WithdrawPara) XXX_Unmarshal(b []byte) error

type WithdrawSymbol2Para added in v1.66.0

type WithdrawSymbol2Para struct {
	Symbol2Para          map[string]*WithdrawPara `` /* 163-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

func (*WithdrawSymbol2Para) Descriptor added in v1.66.0

func (*WithdrawSymbol2Para) Descriptor() ([]byte, []int)

func (*WithdrawSymbol2Para) GetSymbol2Para added in v1.66.0

func (m *WithdrawSymbol2Para) GetSymbol2Para() map[string]*WithdrawPara

func (*WithdrawSymbol2Para) ProtoMessage added in v1.66.0

func (*WithdrawSymbol2Para) ProtoMessage()

func (*WithdrawSymbol2Para) Reset added in v1.66.0

func (m *WithdrawSymbol2Para) Reset()

func (*WithdrawSymbol2Para) String added in v1.66.0

func (m *WithdrawSymbol2Para) String() string

func (*WithdrawSymbol2Para) XXX_DiscardUnknown added in v1.66.0

func (m *WithdrawSymbol2Para) XXX_DiscardUnknown()

func (*WithdrawSymbol2Para) XXX_Marshal added in v1.66.0

func (m *WithdrawSymbol2Para) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WithdrawSymbol2Para) XXX_Merge added in v1.66.0

func (m *WithdrawSymbol2Para) XXX_Merge(src proto.Message)

func (*WithdrawSymbol2Para) XXX_Size added in v1.66.0

func (m *WithdrawSymbol2Para) XXX_Size() int

func (*WithdrawSymbol2Para) XXX_Unmarshal added in v1.66.0

func (m *WithdrawSymbol2Para) XXX_Unmarshal(b []byte) error

type WithdrawTx added in v1.66.0

type WithdrawTx struct {
	Chain33Sender        string   `protobuf:"bytes,1,opt,name=chain33Sender,proto3" json:"chain33Sender,omitempty"`
	EthereumReceiver     string   `protobuf:"bytes,2,opt,name=ethereumReceiver,proto3" json:"ethereumReceiver,omitempty"`
	Symbol               string   `protobuf:"bytes,4,opt,name=symbol,proto3" json:"symbol,omitempty"`
	Amount               string   `protobuf:"bytes,5,opt,name=amount,proto3" json:"amount,omitempty"`
	Nonce                int64    `protobuf:"varint,6,opt,name=nonce,proto3" json:"nonce,omitempty"`
	TxHashOnChain33      string   `protobuf:"bytes,7,opt,name=txHashOnChain33,proto3" json:"txHashOnChain33,omitempty"`
	TxHashOnEthereum     string   `protobuf:"bytes,8,opt,name=txHashOnEthereum,proto3" json:"txHashOnEthereum,omitempty"`
	Year                 int32    `protobuf:"varint,9,opt,name=year,proto3" json:"year,omitempty"`
	Month                int32    `protobuf:"varint,10,opt,name=month,proto3" json:"month,omitempty"`
	Day                  int32    `protobuf:"varint,11,opt,name=day,proto3" json:"day,omitempty"`
	Status               int32    `protobuf:"varint,12,opt,name=status,proto3" json:"status,omitempty"`
	StatusDescription    string   `protobuf:"bytes,13,opt,name=statusDescription,proto3" json:"statusDescription,omitempty"`
	ErrorDescription     string   `protobuf:"bytes,14,opt,name=errorDescription,proto3" json:"errorDescription,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*WithdrawTx) Descriptor added in v1.66.0

func (*WithdrawTx) Descriptor() ([]byte, []int)

func (*WithdrawTx) GetAmount added in v1.66.0

func (m *WithdrawTx) GetAmount() string

func (*WithdrawTx) GetChain33Sender added in v1.66.0

func (m *WithdrawTx) GetChain33Sender() string

func (*WithdrawTx) GetDay added in v1.66.0

func (m *WithdrawTx) GetDay() int32

func (*WithdrawTx) GetErrorDescription added in v1.66.0

func (m *WithdrawTx) GetErrorDescription() string

func (*WithdrawTx) GetEthereumReceiver added in v1.66.0

func (m *WithdrawTx) GetEthereumReceiver() string

func (*WithdrawTx) GetMonth added in v1.66.0

func (m *WithdrawTx) GetMonth() int32

func (*WithdrawTx) GetNonce added in v1.66.0

func (m *WithdrawTx) GetNonce() int64

func (*WithdrawTx) GetStatus added in v1.66.0

func (m *WithdrawTx) GetStatus() int32

func (*WithdrawTx) GetStatusDescription added in v1.66.0

func (m *WithdrawTx) GetStatusDescription() string

func (*WithdrawTx) GetSymbol added in v1.66.0

func (m *WithdrawTx) GetSymbol() string

func (*WithdrawTx) GetTxHashOnChain33 added in v1.66.0

func (m *WithdrawTx) GetTxHashOnChain33() string

func (*WithdrawTx) GetTxHashOnEthereum added in v1.66.0

func (m *WithdrawTx) GetTxHashOnEthereum() string

func (*WithdrawTx) GetYear added in v1.66.0

func (m *WithdrawTx) GetYear() int32

func (*WithdrawTx) ProtoMessage added in v1.66.0

func (*WithdrawTx) ProtoMessage()

func (*WithdrawTx) Reset added in v1.66.0

func (m *WithdrawTx) Reset()

func (*WithdrawTx) String added in v1.66.0

func (m *WithdrawTx) String() string

func (*WithdrawTx) XXX_DiscardUnknown added in v1.66.0

func (m *WithdrawTx) XXX_DiscardUnknown()

func (*WithdrawTx) XXX_Marshal added in v1.66.0

func (m *WithdrawTx) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*WithdrawTx) XXX_Merge added in v1.66.0

func (m *WithdrawTx) XXX_Merge(src proto.Message)

func (*WithdrawTx) XXX_Size added in v1.66.0

func (m *WithdrawTx) XXX_Size() int

func (*WithdrawTx) XXX_Unmarshal added in v1.66.0

func (m *WithdrawTx) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL