MCPcopy Create free account

hub / github.com/KI5FPL/tronj / functions

Functions626 in github.com/KI5FPL/tronj

↓ 162 callersMethodencodeNumeric
(NumericType numericType)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:86
↓ 132 callersMethoddecodeNumeric
(String input, Class<T> type)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:125
↓ 62 callersMethodgetValue
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Type.java:24
↓ 55 callersMethodasByte
(int m, int n)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:245
↓ 25 callersMethodinstantiateType
(String solidityType, Object value)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:64
↓ 23 callersMethodtoString
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Address.java:67
↓ 21 callersMethodencode
(Type parameter)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:54
↓ 18 callersMethodhexStringToByteArray
(String input)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:200
↓ 18 callersMethodtoHexString
(byte[] input, int offset, int length, boolean withPrefix)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:229
↓ 17 callersMethodgetTypeName
(TypeReference<T> typeReference)
abi/src/main/java/com/github/ki5fpl/tronj/abi/Utils.java:36
↓ 16 callersMethodgetOutputParameters
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Function.java:42
↓ 15 callersMethoddecode
Decode ABI encoded return values from smart contract function call. @param rawInput ABI encoded input @param outputParameters list of return types as
abi/src/main/java/com/github/ki5fpl/tronj/abi/FunctionReturnDecoder.java:48
↓ 15 callersMethodencode
(final Function function)
abi/src/main/java/com/github/ki5fpl/tronj/abi/FunctionEncoder.java:45
↓ 14 callersMethodtoByteArray
(NumericType numericType)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:109
↓ 13 callersMethodbuild
(String input, List<TypeReference<Type>> outputParameters)
abi/src/main/java/com/github/ki5fpl/tronj/abi/DefaultFunctionReturnDecoder.java:77
↓ 13 callersMethodequals
(Object o)
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Bool.java:41
↓ 13 callersMethodgetType
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeReference.java:72
↓ 13 callersMethodtoString
()
utils/src/main/java/com/github/ki5fpl/tronj/utils/Convert.java:53
↓ 12 callersMethoddecode
( String input, int offset, TypeReference<T> typeReference)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:80
↓ 11 callersMethoddecodeQuantity
(String value)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:41
↓ 11 callersMethodgetEncoded
()
utils/src/main/java/com/github/ki5fpl/tronj/crypto/SECP256K1.java:440
↓ 11 callersMethodisEmpty
(String s)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:55
↓ 10 callersMethodencodeDynamicArray
(DynamicArray<T> value)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:213
↓ 10 callersMethodisIntegerValue
(BigDecimal value)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:249
↓ 10 callersMethodparseAddress
(String address)
client/src/main/java/com/github/ki5fpl/tronj/client/TronClient.java:82
↓ 9 callersMethodconvert
(BigInteger m, BigInteger n)
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/FixedPointType.java:50
↓ 9 callersMethodsha3
Keccak-256 hash function. @param hexInput hex encoded input data with optional 0x prefix @return hash value as hex encoded string
utils/src/main/java/com/github/ki5fpl/tronj/crypto/Hash.java:55
↓ 8 callersMethodcleanHexPrefix
(String input)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:87
↓ 8 callersMethodgetName
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Event.java:32
↓ 8 callersMethodtoHexStringNoPrefix
(BigInteger value)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:131
↓ 7 callersMethodcreate
(Class<T> cls)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeReference.java:98
↓ 7 callersMethodencodeDynamicBytes
(DynamicBytes dynamicBytes)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:148
↓ 7 callersMethodgetClassType
Workaround to ensure type does not come back as T due to erasure, this enables you to create a TypeReference via {@link Class Class&lt;T&gt;}. @retur
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeReference.java:87
↓ 7 callersMethodgetType
Returns the web3j data type for the given type, without using primitive types. @param type A Solidity type. @return The web3j Java class to represent
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/AbiTypes.java:135
↓ 7 callersMethodof
(String hexPrivateKey)
client/src/main/java/com/github/ki5fpl/tronj/key/KeyPair.java:21
↓ 7 callersMethodtoBigInt
(byte[] value, int offset, int length)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:110
↓ 7 callersMethodtoBytesPadded
(BigInteger value, int length)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:177
↓ 6 callersMethodbytes32PaddedLength
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Type.java:20
↓ 6 callersMethoddecodeBytes
(String input, Class<T> type)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:279
↓ 6 callersMethoddecodeDynamicBytes
(String input, int offset)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:304
↓ 6 callersMethoddecodeIndexedValue
Decodes an indexed parameter associated with an event. Indexed parameters are individually encoded, unlike non-indexed parameters which are encoded as
abi/src/main/java/com/github/ki5fpl/tronj/abi/FunctionReturnDecoder.java:74
↓ 6 callersMethoddecodeStaticArray
Static array length cannot be passed as a type.
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:324
↓ 6 callersMethodencodeBytes
(BytesType bytesType)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:132
↓ 6 callersMethodencodeQuantity
(BigInteger value)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:33
↓ 6 callersMethodequals
(final Object other)
utils/src/main/java/com/github/ki5fpl/tronj/crypto/SECP256K1.java:507
↓ 6 callersMethodgetComponentType
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Array.java:70
↓ 6 callersMethodgetSimpleTypeName
(Class<?> type)
abi/src/main/java/com/github/ki5fpl/tronj/abi/Utils.java:53
↓ 6 callersMethodgetTypeAsString
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Type.java:26
↓ 6 callersMethodtrimLeadingZeroes
(byte[] bytes)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Bytes.java:32
↓ 5 callersMethodbytesToBase58
(byte[] data)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Base58Check.java:24
↓ 5 callersMethodcapitaliseFirstLetter
(String string)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:31
↓ 5 callersMethoddecodeDynamicArray
( String input, int offset, TypeReference<T> typeReference)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:437
↓ 5 callersMethoddecodeUintAsInt
(String rawInput, int offset)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:267
↓ 5 callersMethodgetPublicKey
()
utils/src/main/java/com/github/ki5fpl/tronj/crypto/SECP256K1.java:521
↓ 5 callersMethodjoin
(List<String> src, String delimiter)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:27
↓ 5 callersMethodlowercaseFirstLetter
(String string)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:39
↓ 5 callersMethodtoHexStringNoPrefixZeroPadded
(BigInteger value, int size)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:151
↓ 4 callersMethodarrayOfUints
(int length)
abi/src/test/java/com/github/ki5fpl/tronj/abi/datatypes/StaticArrayTest.java:66
↓ 4 callersMethodbroadcastTransaction
(Transaction signedTxn)
client/src/main/java/com/github/ki5fpl/tronj/client/TronClient.java:129
↓ 4 callersMethodcompareTo
(TypeReference<T> o)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeReference.java:66
↓ 4 callersMethodcontainsHexPrefix
(String input)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:103
↓ 4 callersMethodencodeConstructor
(final List<Type> parameters)
abi/src/main/java/com/github/ki5fpl/tronj/abi/FunctionEncoder.java:49
↓ 4 callersMethodgetEncodedBytes
()
utils/src/main/java/com/github/ki5fpl/tronj/crypto/SECP256K1.java:445
↓ 4 callersMethodgetPrivateKey
()
utils/src/main/java/com/github/ki5fpl/tronj/crypto/SECP256K1.java:517
↓ 4 callersMethodgetTypeAString
(Class<? extends Type> type)
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/AbiTypes.java:372
↓ 4 callersMethodofNile
()
client/src/main/java/com/github/ki5fpl/tronj/client/TronClient.java:44
↓ 4 callersMethodprependHexPrefix
(String input)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:95
↓ 4 callersMethodtoHexStringWithPrefixSafe
(BigInteger value)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:143
↓ 4 callersMethodzeros
(int n)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:47
↓ 3 callersMethodbase58ToBytes
(String s)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Base58Check.java:64
↓ 3 callersMethodbuildEventSignature
(String methodSignature)
abi/src/main/java/com/github/ki5fpl/tronj/abi/EventEncoder.java:51
↓ 3 callersMethodbuildMethodSignature
( final String methodName, final List<Type> parameters)
abi/src/main/java/com/github/ki5fpl/tronj/abi/FunctionEncoder.java:76
↓ 3 callersMethodcreate
(final PrivateKey privateKey)
utils/src/main/java/com/github/ki5fpl/tronj/crypto/SECP256K1.java:481
↓ 3 callersMethoddecodeAddress
(String input)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:121
↓ 3 callersMethoddecodeBool
(String rawInput, int offset)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:272
↓ 3 callersMethoddecodeStaticStruct
( final String input, final int offset, final TypeReference<T> typeReference)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:341
↓ 3 callersMethodencodeAddress
(Address address)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:82
↓ 3 callersMethodencodeArrayValues
(Array<T> value)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:164
↓ 3 callersMethodencodeBool
(Bool value)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:124
↓ 3 callersMethodencodeString
(Utf8String string)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:159
↓ 3 callersMethodfromString
(String name)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Convert.java:58
↓ 3 callersMethodgetInputParameters
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Function.java:38
↓ 3 callersMethodgetParameterizedTypeFromArray
(TypeReference typeReference)
abi/src/main/java/com/github/ki5fpl/tronj/abi/Utils.java:93
↓ 3 callersMethodgetParameters
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/datatypes/Event.java:36
↓ 3 callersMethodgetRawType
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeReference.java:190
↓ 3 callersMethodgetSize
()
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeReference.java:141
↓ 3 callersMethodhash
Generates a digest for the given {@code input}. @param input The input to digest @param algorithm The hash algorithm to use @return The hash value fo
utils/src/main/java/com/github/ki5fpl/tronj/crypto/Hash.java:40
↓ 3 callersMethodisDynamic
(Type parameter)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeEncoder.java:48
↓ 3 callersMethodisDynamic
(Class<T> parameter)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:585
↓ 3 callersMethodrepeat
(char value, int n)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:51
↓ 3 callersMethodsign
(Transaction txn)
client/src/main/java/com/github/ki5fpl/tronj/key/KeyPair.java:65
↓ 3 callersMethodsignTransaction
(TransactionExtention txnExt, KeyPair kp)
client/src/main/java/com/github/ki5fpl/tronj/client/TronClient.java:121
↓ 3 callersMethodtoCsv
(List<String> src)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Strings.java:22
↓ 3 callersMethodtoHexStringWithPrefixZeroPadded
(BigInteger value, int size)
utils/src/main/java/com/github/ki5fpl/tronj/utils/Numeric.java:139
↓ 3 callersMethodtransactionIdOf
(Transaction txn)
client/src/main/java/com/github/ki5fpl/tronj/client/TronClient.java:110
↓ 3 callersMethodtypeMap
( List<List<T>> input, Class<E> outerDestType, Class<R> innerType)
abi/src/main/java/com/github/ki5fpl/tronj/abi/Utils.java:115
↓ 2 callersMethodaddMemoToTransaction
(Transaction txn, String memo)
client/src/main/java/com/github/ki5fpl/tronj/client/TronClient.java:141
↓ 2 callersMethodasBigInteger
(Object arg)
abi/src/main/java/com/github/ki5fpl/tronj/abi/TypeDecoder.java:591
↓ 2 callersMethodbuildMethodId
(final String methodSignature)
abi/src/main/java/com/github/ki5fpl/tronj/abi/FunctionEncoder.java:89
↓ 2 callersMethodbuildMethodSignature
( String methodName, List<TypeReference<T>> parameters)
abi/src/main/java/com/github/ki5fpl/tronj/abi/EventEncoder.java:38
next →1–100 of 626, ranked by callers