Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/tendermint/tendermint
/ functions
Functions
9,600 in github.com/tendermint/tendermint
⨍
Functions
9,600
◇
Types & classes
1,209
Method
BroadcastTxAsync
----------------------------------------------------------------------------- NOTE: tx should be signed, but this is only checked at the app level (no
internal/rpc/core/mempool.go:23
Method
BroadcastTxAsync
(ctx context.Context, tx types.Tx)
light/rpc/client.go:208
Method
BroadcastTxAsync
( ctx context.Context, tx types.Tx, )
rpc/client/http/http.go:259
Method
BroadcastTxAsync
BroadcastTxAsync provides a mock function with given fields: _a0, _a1
rpc/client/mocks/client.go:231
Method
BroadcastTxAsync
(ctx context.Context, tx types.Tx)
rpc/client/local/local.go:99
Method
BroadcastTxAsync
(ctx context.Context, tx types.Tx)
rpc/client/mock/abci.go:63
Method
BroadcastTxAsync
(ctx context.Context, tx types.Tx)
rpc/client/mock/client.go:102
Method
BroadcastTxCommit
BroadcastTxCommit returns with the responses from CheckTx and DeliverTx. More: https://docs.tendermint.com/master/rpc/#/Tx/broadcast_tx_commit
internal/rpc/core/mempool.go:70
Method
BroadcastTxCommit
(ctx context.Context, tx types.Tx)
light/rpc/client.go:204
Method
BroadcastTxCommit
( ctx context.Context, tx types.Tx, )
rpc/client/http/http.go:247
Method
BroadcastTxCommit
BroadcastTxCommit provides a mock function with given fields: _a0, _a1
rpc/client/mocks/client.go:254
Method
BroadcastTxCommit
(ctx context.Context, tx types.Tx)
rpc/client/local/local.go:95
Method
BroadcastTxCommit
(ctx context.Context, tx types.Tx)
rpc/client/mock/client.go:98
Method
BroadcastTxSync
BroadcastTxSync returns with the response from CheckTx. Does not wait for DeliverTx result. More: https://docs.tendermint.com/master/rpc/#/Tx/broadcas
internal/rpc/core/mempool.go:35
Method
BroadcastTxSync
(ctx context.Context, tx types.Tx)
light/rpc/client.go:212
Method
BroadcastTxSync
( ctx context.Context, tx types.Tx, )
rpc/client/http/http.go:266
Method
BroadcastTxSync
BroadcastTxSync provides a mock function with given fields: _a0, _a1
rpc/client/mocks/client.go:277
Method
BroadcastTxSync
(ctx context.Context, tx types.Tx)
rpc/client/local/local.go:103
Method
BroadcastTxSync
(ctx context.Context, tx types.Tx)
rpc/client/mock/abci.go:78
Method
BroadcastTxSync
(ctx context.Context, tx types.Tx)
rpc/client/mock/client.go:106
Method
Bytes
Bytes computes the unique encoding of a validator with a given voting power. These are the bytes that gets hashed in consensus. It excludes address as
types/validator.go:116
Method
Bytes
Bytes converts the node ID to its binary byte representation.
types/node_id.go:44
Method
Bytes
()
crypto/crypto.go:31
Method
Bytes
Bytes returns the privkey byte format.
crypto/ed25519/ed25519.go:67
Method
Bytes
Bytes returns the PubKey byte format.
crypto/ed25519/ed25519.go:163
Method
Bytes
Bytes marshalls the private key using amino encoding.
crypto/secp256k1/secp256k1.go:39
Method
Bytes
Bytes returns the pubkey marshaled with amino encoding.
crypto/secp256k1/secp256k1.go:157
Method
Bytes
Bytes returns the PubKey byte format.
crypto/sr25519/pubkey.go:35
Method
Bytes
()
internal/p2p/conn/secret_connection_test.go:51
Method
Bytes
()
internal/p2p/conn/evil_secret_connection_test.go:33
Method
Bytes
Bytes fulfills various interfaces in light-client, etc...
libs/bytes/bytes.go:69
Method
Call
Call issues a POST form HTTP request.
rpc/jsonrpc/client/http_uri_client.go:54
Method
Call
Call calls the given method with the params and returns a result.
rpc/jsonrpc/client/http_json_client.go:111
Method
Call
Call issues a POST HTTP request. Requests are JSON encoded. Content-Type: application/json.
rpc/jsonrpc/client/http_json_client.go:184
Method
Call
Call enqueues a request to call the given RPC method with the specified parameters, in the same way that the `Client.Call` function would.
rpc/jsonrpc/client/http_json_client.go:350
Method
Canceled
Canceled returns a channel that's closed when the subscription is terminated and supposed to be used in a select statement.
libs/pubsub/subscription.go:55
Method
Cause
()
internal/consensus/wal.go:346
Method
ChainID
()
types/vote_set.go:98
Method
ChainID
ChainID provides a mock function with given fields:
light/rpc/mocks/light_client.go:21
Method
ChainID
()
config/config.go:273
Method
Chan
Chan returns a channel on which timeouts are sent.
internal/consensus/ticker.go:66
Method
Chan
()
internal/consensus/common_test.go:921
Method
Channels
()
libs/async/async.go:41
Method
CheckEvidence
(evList types.EvidenceList)
internal/state/services.go:61
Method
CheckEvidence
CheckEvidence provides a mock function with given fields: _a0
internal/state/mocks/evidence_pool.go:31
Function
CheckTx
(client abciclient.Client, txBytes []byte, codeExp uint32, dataExp []byte)
abci/tests/server/client.go:73
Method
CheckTx
(req types.RequestCheckTx)
abci/example/kvstore/kvstore.go:120
Method
CheckTx
(req types.RequestCheckTx)
abci/example/kvstore/persistent_kvstore.go:83
Method
CheckTx
(r types.RequestCheckTx)
abci/client/socket_client_test.go:165
Method
CheckTx
(ctx context.Context, in *RequestCheckTx, opts ...grpc.CallOption)
abci/types/types.pb.go:3207
Method
CheckTx
(context.Context, *RequestCheckTx)
abci/types/types.pb.go:3303
Method
CheckTx
(ctx context.Context, req *RequestCheckTx)
abci/types/types.pb.go:3331
Method
CheckTx
(req RequestCheckTx)
abci/types/application.go:53
Method
CheckTx
(ctx context.Context, req *RequestCheckTx)
abci/types/application.go:122
Method
CheckTx
CheckTx adds the given transaction to the mempool if it fits and passes the application's ABCI CheckTx method. CheckTx reports an error without addin
internal/mempool/v1/mempool.go:177
Method
CheckTx
(req abci.RequestCheckTx)
internal/mempool/v1/mempool_test.go:40
Method
CheckTx
(_ context.Context, _ types.Tx, _ func(*abci.Response), _ mempool.TxInfo)
internal/mempool/mock/mempool.go:20
Method
CheckTx
(req abci.RequestCheckTx)
internal/state/helpers_test.go:296
Method
CheckTx
CheckTx checks the transaction without executing it. The transaction won't be added to the mempool either. More: https://docs.tendermint.com/master/rp
internal/rpc/core/mempool.go:171
Method
CheckTx
(req abci.RequestCheckTx)
internal/consensus/mempool_test.go:249
Method
CheckTx
(_ context.Context, _ types.Tx, _ func(*abci.Response), _ mempool.TxInfo)
internal/consensus/replay_stubs.go:24
Method
CheckTx
(ctx context.Context, tx types.Tx)
light/rpc/client.go:224
Method
CheckTx
(ctx context.Context, tx types.Tx)
rpc/client/http/http.go:311
Method
CheckTx
CheckTx provides a mock function with given fields: _a0, _a1
rpc/client/mocks/client.go:300
Method
CheckTx
(ctx context.Context, tx types.Tx)
rpc/client/local/local.go:115
Method
CheckTx
(ctx context.Context, tx types.Tx)
rpc/client/mock/client.go:110
Method
CheckTxAsync
(ctx context.Context, req types.RequestCheckTx)
abci/client/local_client.go:89
Method
CheckTxAsync
(ctx context.Context, req types.RequestCheckTx)
abci/client/socket_client.go:233
Method
CheckTxAsync
CheckTxAsync provides a mock function with given fields: _a0, _a1
abci/client/mocks/client.go:115
Method
CheckTxAsync
(ctx context.Context, req types.RequestCheckTx)
internal/proxy/app_conn.go:150
Method
CheckTxAsync
CheckTxAsync provides a mock function with given fields: _a0, _a1
internal/proxy/mocks/app_conn_mempool.go:21
Method
CheckTxSync
( ctx context.Context, req types.RequestCheckTx, )
abci/client/local_client.go:235
Method
CheckTxSync
( ctx context.Context, params types.RequestCheckTx, )
abci/client/grpc_client.go:396
Method
CheckTxSync
( ctx context.Context, req types.RequestCheckTx, )
abci/client/socket_client.go:337
Method
CheckTxSync
CheckTxSync provides a mock function with given fields: _a0, _a1
abci/client/mocks/client.go:138
Method
CheckTxSync
(ctx context.Context, req types.RequestCheckTx)
internal/proxy/app_conn.go:155
Method
CheckTxSync
CheckTxSync provides a mock function with given fields: _a0, _a1
internal/proxy/mocks/app_conn_mempool.go:44
Method
Choose
(r *rand.Rand)
test/e2e/generator/random.go:64
Method
Choose
(r *rand.Rand)
test/e2e/generator/random.go:77
Method
Choose
(r *rand.Rand)
test/e2e/generator/random.go:97
Method
ChunkProcessAvgTime
()
internal/statesync/reactor.go:1097
Method
ChunkProcessAvgTime
ChunkProcessAvgTime provides a mock function with given fields:
internal/statesync/mocks/Metricer.go:45
Method
Cleanup
(func())
abci/client/mocks/client.go:807
Method
Cleanup
(func())
internal/state/mocks/block_store.go:214
Method
Clear
()
libs/cmap/cmap.go:66
Method
Clear
Clear empties out the request batch.
rpc/jsonrpc/client/http_json_client.go:324
Method
Close
Close closes the underlying connection
privval/signer_client.go:37
Method
Close
()
privval/retry_signer_client.go:29
Method
Close
Close closes the underlying net.Conn.
privval/signer_endpoint.go:28
Method
Close
Implements net.Conn
privval/secret_connection.go:280
Method
Close
Close closes the underlying connection
privval/grpc/client.go:44
Method
Close
()
test/fuzz/p2p/secretconnection/read_write.go:62
Method
Close
Close shuts down the dispatcher and cancels any pending calls awaiting responses. Peers awaiting responses that have not arrived are delivered a nil b
internal/statesync/dispatcher.go:141
Method
Close
Close closes the chunk queue, cleaning up all temporary files.
internal/statesync/chunks.go:134
Method
Close
()
internal/state/store.go:669
Method
Close
Close provides a mock function with given fields:
internal/state/mocks/store.go:33
Method
Close
()
internal/store/store.go:575
Method
Close
()
internal/p2p/switch_test.go:768
Method
Close
Close implements Transport.
internal/p2p/transport_memory.go:196
Method
Close
()
internal/p2p/conn/secret_connection_test.go:38
← previous
next →
4,401–4,500 of 9,600, ranked by callers