github.com/InjectiveLabs/sdk-go@v1.53.0/chain/peggy/types/events.go (about) 1 package types 2 3 const ( 4 EventTypeObservation = "observation" 5 EventTypeOutgoingBatch = "outgoing_batch" 6 7 EventTypeMultisigUpdateRequest = "multisig_update_request" 8 EventTypeOutgoingBatchCanceled = "outgoing_batch_canceled" 9 EventTypeBridgeWithdrawalReceived = "withdrawal_received" 10 EventTypeBridgeDepositReceived = "deposit_received" 11 EventTypeBridgeWithdrawCanceled = "withdraw_canceled" 12 13 AttributeKeyAttestationID = "attestation_id" 14 AttributeKeyBatchConfirmKey = "batch_confirm_key" 15 AttributeKeyValsetConfirmKey = "valset_confirm_key" 16 AttributeKeyMultisigID = "multisig_id" 17 AttributeKeyOutgoingBatchID = "batch_id" 18 AttributeKeyOutgoingTXID = "outgoing_tx_id" 19 AttributeKeyAttestationType = "attestation_type" 20 AttributeKeyContract = "bridge_contract" 21 AttributeKeyNonce = "nonce" 22 AttributeKeyValsetNonce = "valset_nonce" 23 AttributeKeyBatchNonce = "batch_nonce" 24 AttributeKeyBridgeChainID = "bridge_chain_id" 25 AttributeKeySetOperatorAddr = "set_operator_address" 26 AttributeKeyBadEthSignature = "bad_eth_signature" 27 AttributeKeyBadEthSignatureSubject = "bad_eth_signature_subject" 28 )