org.web3j.abi.datatypes.Bool Java Examples
The following examples show how to use
org.web3j.abi.datatypes.Bool.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TypeDecoderTest.java From etherscan-explorer with GNU General Public License v3.0 | 6 votes |
@Test public void testBoolDecodeGivenOffset() { // Decode second parameter as Bool assertThat(TypeDecoder.decode( "0000000000000000000000000000000000000000000000007fffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000007fffffffffffffff", 64, Bool.class), is(new Bool(false))); assertThat(TypeDecoder.decode( "0000000000000000000000000000000000000000000000007fffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000001" + "0000000000000000000000000000000000000000000000007fffffffffffffff", 64, Bool.class), is(new Bool(true))); }
Example #2
Source File: SolidityFunctionWrapperTest.java From etherscan-explorer with GNU General Public License v3.0 | 6 votes |
@Test public void testGetNativeType() { assertThat(getNativeType(TypeName.get(Address.class)), equalTo(TypeName.get(String.class))); assertThat(getNativeType(TypeName.get(Uint256.class)), equalTo(TypeName.get(BigInteger.class))); assertThat(getNativeType(TypeName.get(Int256.class)), equalTo(TypeName.get(BigInteger.class))); assertThat(getNativeType(TypeName.get(Utf8String.class)), equalTo(TypeName.get(String.class))); assertThat(getNativeType(TypeName.get(Bool.class)), equalTo(TypeName.get(Boolean.class))); assertThat(getNativeType(TypeName.get(Bytes32.class)), equalTo(TypeName.get(byte[].class))); assertThat(getNativeType(TypeName.get(DynamicBytes.class)), equalTo(TypeName.get(byte[].class))); }
Example #3
Source File: SolidityFunctionWrapperTest.java From client-sdk-java with Apache License 2.0 | 6 votes |
@Test public void testGetNativeType() { assertThat(getNativeType(TypeName.get(Address.class)), equalTo(TypeName.get(String.class))); assertThat(getNativeType(TypeName.get(Uint256.class)), equalTo(TypeName.get(BigInteger.class))); assertThat(getNativeType(TypeName.get(Int256.class)), equalTo(TypeName.get(BigInteger.class))); assertThat(getNativeType(TypeName.get(Utf8String.class)), equalTo(TypeName.get(String.class))); assertThat(getNativeType(TypeName.get(Bool.class)), equalTo(TypeName.get(Boolean.class))); assertThat(getNativeType(TypeName.get(Bytes32.class)), equalTo(TypeName.get(byte[].class))); assertThat(getNativeType(TypeName.get(DynamicBytes.class)), equalTo(TypeName.get(byte[].class))); }
Example #4
Source File: AbiTypesMapperGenerator.java From client-sdk-java with Apache License 2.0 | 6 votes |
private MethodSpec.Builder addTypes(MethodSpec.Builder builder, String packageName) { builder = addStatement(builder, packageName, Address.TYPE_NAME, Address.class.getSimpleName()); builder = addStatement(builder, packageName, Bool.TYPE_NAME, Bool.class.getSimpleName()); builder = addStatement(builder, packageName, Utf8String.TYPE_NAME, Utf8String.class.getSimpleName()); builder = addStatement(builder, packageName, DynamicBytes.TYPE_NAME, DynamicBytes.class.getSimpleName()); // TODO: Fixed array & dynamic array support return builder; }
Example #5
Source File: AbiTypesMapperGenerator.java From etherscan-explorer with GNU General Public License v3.0 | 6 votes |
private MethodSpec.Builder addTypes(MethodSpec.Builder builder, String packageName) { builder = addStatement(builder, packageName, Address.TYPE_NAME, Address.class.getSimpleName()); builder = addStatement(builder, packageName, Bool.TYPE_NAME, Bool.class.getSimpleName()); builder = addStatement(builder, packageName, Utf8String.TYPE_NAME, Utf8String.class.getSimpleName()); builder = addStatement(builder, packageName, DynamicBytes.TYPE_NAME, DynamicBytes.class.getSimpleName()); // TODO: Fixed array & dynamic array support return builder; }
Example #6
Source File: FunctionEncoderTest.java From client-sdk-java with Apache License 2.0 | 6 votes |
@Test public void testFunctionMDynamicArrayEncode1() { Function function = new Function( "sam", Arrays.asList( new DynamicBytes("dave".getBytes()), new Bool(true), new DynamicArray<>( new Uint(BigInteger.ONE), new Uint(BigInteger.valueOf(2)), new Uint(BigInteger.valueOf(3)))), Collections.<TypeReference<?>>emptyList() ); assertThat(FunctionEncoder.encode(function), is("0xa5643bf2" + "0000000000000000000000000000000000000000000000000000000000000060" + "0000000000000000000000000000000000000000000000000000000000000001" + "00000000000000000000000000000000000000000000000000000000000000a0" + "0000000000000000000000000000000000000000000000000000000000000004" + "6461766500000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000003" + "0000000000000000000000000000000000000000000000000000000000000001" + "0000000000000000000000000000000000000000000000000000000000000002" + "0000000000000000000000000000000000000000000000000000000000000003")); }
Example #7
Source File: FunctionEncoderTest.java From etherscan-explorer with GNU General Public License v3.0 | 6 votes |
@Test public void testFunctionMDynamicArrayEncode1() { Function function = new Function( "sam", Arrays.asList( new DynamicBytes("dave".getBytes()), new Bool(true), new DynamicArray<>( new Uint(BigInteger.ONE), new Uint(BigInteger.valueOf(2)), new Uint(BigInteger.valueOf(3)))), Collections.<TypeReference<?>>emptyList() ); assertThat(FunctionEncoder.encode(function), is("0xa5643bf2" + "0000000000000000000000000000000000000000000000000000000000000060" + "0000000000000000000000000000000000000000000000000000000000000001" + "00000000000000000000000000000000000000000000000000000000000000a0" + "0000000000000000000000000000000000000000000000000000000000000004" + "6461766500000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000000000000000000003" + "0000000000000000000000000000000000000000000000000000000000000001" + "0000000000000000000000000000000000000000000000000000000000000002" + "0000000000000000000000000000000000000000000000000000000000000003")); }
Example #8
Source File: UtilsTest.java From client-sdk-java with Apache License 2.0 | 6 votes |
@Test public void testGetTypeName() throws ClassNotFoundException { assertThat(Utils.getTypeName(new TypeReference<Uint>(){}), is("uint256")); assertThat(Utils.getTypeName(new TypeReference<Int>(){}), is("int256")); assertThat(Utils.getTypeName(new TypeReference<Ufixed>(){}), is("ufixed256")); assertThat(Utils.getTypeName(new TypeReference<Fixed>(){}), is("fixed256")); assertThat(Utils.getTypeName(new TypeReference<Uint64>(){}), is("uint64")); assertThat(Utils.getTypeName(new TypeReference<Int64>(){}), is("int64")); assertThat(Utils.getTypeName(new TypeReference<Bool>(){}), is("bool")); assertThat(Utils.getTypeName(new TypeReference<Utf8String>(){}), is("string")); assertThat(Utils.getTypeName(new TypeReference<DynamicBytes>(){}), is("bytes")); assertThat(Utils.getTypeName( new TypeReference.StaticArrayTypeReference<StaticArray<Uint>>(5){}), is("uint256[5]")); assertThat(Utils.getTypeName( new TypeReference<DynamicArray<Uint>>(){}), is("uint256[]")); }
Example #9
Source File: TypeDecoderTest.java From client-sdk-java with Apache License 2.0 | 6 votes |
@Test public void testBoolDecodeGivenOffset() { // Decode second parameter as Bool assertThat(TypeDecoder.decode( "0000000000000000000000000000000000000000000000007fffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000007fffffffffffffff", 64, Bool.class), is(new Bool(false))); assertThat(TypeDecoder.decode( "0000000000000000000000000000000000000000000000007fffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000001" + "0000000000000000000000000000000000000000000000007fffffffffffffff", 64, Bool.class), is(new Bool(true))); }
Example #10
Source File: TypeDecoder.java From web3j with Apache License 2.0 | 6 votes |
@SuppressWarnings("unchecked") static <T extends Type> T decode(String input, int offset, Class<T> type) { if (NumericType.class.isAssignableFrom(type)) { return (T) decodeNumeric(input.substring(offset), (Class<NumericType>) type); } else if (Address.class.isAssignableFrom(type)) { return (T) decodeAddress(input.substring(offset)); } else if (Bool.class.isAssignableFrom(type)) { return (T) decodeBool(input, offset); } else if (Bytes.class.isAssignableFrom(type)) { return (T) decodeBytes(input, offset, (Class<Bytes>) type); } else if (DynamicBytes.class.isAssignableFrom(type)) { return (T) decodeDynamicBytes(input, offset); } else if (Utf8String.class.isAssignableFrom(type)) { return (T) decodeUtf8String(input, offset); } else if (Array.class.isAssignableFrom(type)) { throw new UnsupportedOperationException( "Array types must be wrapped in a TypeReference"); } else { throw new UnsupportedOperationException("Type cannot be encoded: " + type.getClass()); } }
Example #11
Source File: TypeEncoder.java From etherscan-explorer with GNU General Public License v3.0 | 6 votes |
@SuppressWarnings("unchecked") public static String encode(Type parameter) { if (parameter instanceof NumericType) { return encodeNumeric(((NumericType) parameter)); } else if (parameter instanceof Address) { return encodeAddress((Address) parameter); } else if (parameter instanceof Bool) { return encodeBool((Bool) parameter); } else if (parameter instanceof Bytes) { return encodeBytes((Bytes) parameter); } else if (parameter instanceof DynamicBytes) { return encodeDynamicBytes((DynamicBytes) parameter); } else if (parameter instanceof Utf8String) { return encodeString((Utf8String) parameter); } else if (parameter instanceof StaticArray) { return encodeArrayValues((StaticArray) parameter); } else if (parameter instanceof DynamicArray) { return encodeDynamicArray((DynamicArray) parameter); } else { throw new UnsupportedOperationException( "Type cannot be encoded: " + parameter.getClass()); } }
Example #12
Source File: TypeEncoder.java From client-sdk-java with Apache License 2.0 | 6 votes |
@SuppressWarnings("unchecked") public static String encode(Type parameter) { if (parameter instanceof NumericType) { return encodeNumeric(((NumericType) parameter)); } else if (parameter instanceof Address) { return encodeAddress((Address) parameter); } else if (parameter instanceof Bool) { return encodeBool((Bool) parameter); } else if (parameter instanceof Bytes) { return encodeBytes((Bytes) parameter); } else if (parameter instanceof DynamicBytes) { return encodeDynamicBytes((DynamicBytes) parameter); } else if (parameter instanceof Utf8String) { return encodeString((Utf8String) parameter); } else if (parameter instanceof StaticArray) { return encodeArrayValues((StaticArray) parameter); } else if (parameter instanceof DynamicArray) { return encodeDynamicArray((DynamicArray) parameter); } else { throw new UnsupportedOperationException( "Type cannot be encoded: " + parameter.getClass()); } }
Example #13
Source File: TypeDecoderTest.java From web3j with Apache License 2.0 | 6 votes |
@Test public void testBoolDecode() throws Exception { assertEquals( TypeDecoder.decodeBool( "0000000000000000000000000000000000000000000000000000000000000000", 0), (new Bool(false))); assertEquals( TypeDecoder.decodeBool( "0000000000000000000000000000000000000000000000000000000000000001", 0), (new Bool(true))); assertEquals(TypeDecoder.instantiateType("bool", true), (new Bool(true))); assertEquals(TypeDecoder.instantiateType("bool", 1), (new Bool(true))); assertEquals(TypeDecoder.instantiateType("bool", false), (new Bool(false))); assertEquals(TypeDecoder.instantiateType("bool", 0), (new Bool(false))); }
Example #14
Source File: TypeDecoderTest.java From web3j with Apache License 2.0 | 6 votes |
@Test public void testBoolDecodeGivenOffset() { // Decode second parameter as Bool assertEquals( TypeDecoder.decode( "0000000000000000000000000000000000000000000000007fffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000000" + "0000000000000000000000000000000000000000000000007fffffffffffffff", 64, Bool.class), (new Bool(false))); assertEquals( TypeDecoder.decode( "0000000000000000000000000000000000000000000000007fffffffffffffff" + "0000000000000000000000000000000000000000000000000000000000000001" + "0000000000000000000000000000000000000000000000007fffffffffffffff", 64, Bool.class), (new Bool(true))); }
Example #15
Source File: UtilsTest.java From web3j with Apache License 2.0 | 6 votes |
@Test public void testGetTypeName() { assertEquals(Utils.getTypeName(new TypeReference<Uint>() {}), ("uint256")); assertEquals(Utils.getTypeName(new TypeReference<Int>() {}), ("int256")); assertEquals(Utils.getTypeName(new TypeReference<Ufixed>() {}), ("ufixed256")); assertEquals(Utils.getTypeName(new TypeReference<Fixed>() {}), ("fixed256")); assertEquals(Utils.getTypeName(new TypeReference<Uint64>() {}), ("uint64")); assertEquals(Utils.getTypeName(new TypeReference<Int64>() {}), ("int64")); assertEquals(Utils.getTypeName(new TypeReference<Bool>() {}), ("bool")); assertEquals(Utils.getTypeName(new TypeReference<Utf8String>() {}), ("string")); assertEquals(Utils.getTypeName(new TypeReference<DynamicBytes>() {}), ("bytes")); assertEquals( Utils.getTypeName( new TypeReference.StaticArrayTypeReference<StaticArray<Uint>>(5) {}), ("uint256[5]")); assertEquals(Utils.getTypeName(new TypeReference<DynamicArray<Uint>>() {}), ("uint256[]")); }
Example #16
Source File: UtilsTest.java From etherscan-explorer with GNU General Public License v3.0 | 6 votes |
@Test public void testGetTypeName() throws ClassNotFoundException { assertThat(Utils.getTypeName(new TypeReference<Uint>(){}), is("uint256")); assertThat(Utils.getTypeName(new TypeReference<Int>(){}), is("int256")); assertThat(Utils.getTypeName(new TypeReference<Ufixed>(){}), is("ufixed256")); assertThat(Utils.getTypeName(new TypeReference<Fixed>(){}), is("fixed256")); assertThat(Utils.getTypeName(new TypeReference<Uint64>(){}), is("uint64")); assertThat(Utils.getTypeName(new TypeReference<Int64>(){}), is("int64")); assertThat(Utils.getTypeName(new TypeReference<Bool>(){}), is("bool")); assertThat(Utils.getTypeName(new TypeReference<Utf8String>(){}), is("string")); assertThat(Utils.getTypeName(new TypeReference<DynamicBytes>(){}), is("bytes")); assertThat(Utils.getTypeName( new TypeReference.StaticArrayTypeReference<StaticArray<Uint>>(5){}), is("uint256[5]")); assertThat(Utils.getTypeName( new TypeReference<DynamicArray<Uint>>(){}), is("uint256[]")); }
Example #17
Source File: Ballot.java From web3j with Apache License 2.0 | 6 votes |
public RemoteCall<Tuple4<BigInteger, Boolean, String, BigInteger>> voters(String param0) { final Function function = new Function(FUNC_VOTERS, Arrays.<Type>asList(new org.web3j.abi.datatypes.Address(param0)), Arrays.<TypeReference<?>>asList(new TypeReference<Uint256>() {}, new TypeReference<Bool>() {}, new TypeReference<Address>() {}, new TypeReference<Uint256>() {})); return new RemoteCall<Tuple4<BigInteger, Boolean, String, BigInteger>>( new Callable<Tuple4<BigInteger, Boolean, String, BigInteger>>() { @Override public Tuple4<BigInteger, Boolean, String, BigInteger> call() throws Exception { List<Type> results = executeCallMultipleValueReturn(function); return new Tuple4<BigInteger, Boolean, String, BigInteger>( (BigInteger) results.get(0).getValue(), (Boolean) results.get(1).getValue(), (String) results.get(2).getValue(), (BigInteger) results.get(3).getValue()); } }); }
Example #18
Source File: TokenRepository.java From alpha-wallet-android with MIT License | 5 votes |
private static Function redeemed(BigInteger tokenId) throws NumberFormatException { return new Function( "redeemed", Collections.singletonList(new Uint256(tokenId)), Collections.singletonList(new TypeReference<Bool>() {})); }
Example #19
Source File: TokenRepository.java From trust-wallet-android-source with GNU General Public License v3.0 | 5 votes |
public static byte[] createTokenTransferData(String to, BigInteger tokenAmount) { List<Type> params = Arrays.<Type>asList(new Address(to), new Uint256(tokenAmount)); List<TypeReference<?>> returnTypes = Arrays.<TypeReference<?>>asList(new TypeReference<Bool>() { }); Function function = new Function("transfer", params, returnTypes); String encodedFunction = FunctionEncoder.encode(function); return Numeric.hexStringToByteArray(Numeric.cleanHexPrefix(encodedFunction)); }
Example #20
Source File: TokenRepository.java From alpha-wallet-android with MIT License | 5 votes |
public static byte[] createTokenTransferData(String to, BigInteger tokenAmount) { List<Type> params = Arrays.asList(new Address(to), new Uint256(tokenAmount)); List<TypeReference<?>> returnTypes = Collections.singletonList(new TypeReference<Bool>() {}); Function function = new Function("transfer", params, returnTypes); String encodedFunction = FunctionEncoder.encode(function); return Numeric.hexStringToByteArray(Numeric.cleanHexPrefix(encodedFunction)); }
Example #21
Source File: ERC721.java From web3j with Apache License 2.0 | 5 votes |
public RemoteCall<TransactionReceipt> setApprovalForAll(String _operator, Boolean _approved) { final Function function = new Function( FUNC_SETAPPROVALFORALL, Arrays.<Type>asList(new org.web3j.abi.datatypes.Address(_operator), new org.web3j.abi.datatypes.Bool(_approved)), Collections.<TypeReference<?>>emptyList()); return executeRemoteCallTransaction(function); }
Example #22
Source File: OnChainPrivacyGroupManagementInterface.java From besu with Apache License 2.0 | 5 votes |
public RemoteFunctionCall<Boolean> canExecute() { final Function function = new Function( FUNC_CANEXECUTE, Arrays.<Type>asList(), Arrays.<TypeReference<?>>asList(new TypeReference<Bool>() {})); return executeRemoteCallSingleValueReturn(function, Boolean.class); }
Example #23
Source File: TypeEncoder.java From web3j with Apache License 2.0 | 5 votes |
static String encodeBool(Bool value) { byte[] rawValue = new byte[MAX_BYTE_LENGTH]; if (value.getValue()) { rawValue[rawValue.length - 1] = 1; } return Numeric.toHexStringNoPrefix(rawValue); }
Example #24
Source File: TypeEncoderTest.java From web3j with Apache License 2.0 | 5 votes |
@Test public void testBoolEncode() { assertEquals( TypeEncoder.encodeBool(new Bool(false)), ("0000000000000000000000000000000000000000000000000000000000000000")); assertEquals( TypeEncoder.encodeBool(new Bool(true)), ("0000000000000000000000000000000000000000000000000000000000000001")); }
Example #25
Source File: SolidityFunctionWrapperTest.java From web3j with Apache License 2.0 | 5 votes |
@Test public void testGetNativeType() { assertEquals(getNativeType(TypeName.get(Address.class)), (TypeName.get(String.class))); assertEquals(getNativeType(TypeName.get(Uint256.class)), (TypeName.get(BigInteger.class))); assertEquals(getNativeType(TypeName.get(Int256.class)), (TypeName.get(BigInteger.class))); assertEquals(getNativeType(TypeName.get(Utf8String.class)), (TypeName.get(String.class))); assertEquals(getNativeType(TypeName.get(Bool.class)), (TypeName.get(Boolean.class))); assertEquals(getNativeType(TypeName.get(Bytes32.class)), (TypeName.get(byte[].class))); assertEquals(getNativeType(TypeName.get(DynamicBytes.class)), (TypeName.get(byte[].class))); }
Example #26
Source File: BlindAuction.java From web3j with Apache License 2.0 | 5 votes |
public RemoteCall<TransactionReceipt> reveal(List<BigInteger> _values, List<Boolean> _fake, List<byte[]> _secret) { final Function function = new Function( FUNC_REVEAL, Arrays.<Type>asList(new org.web3j.abi.datatypes.DynamicArray<org.web3j.abi.datatypes.generated.Uint256>( org.web3j.abi.datatypes.generated.Uint256.class, org.web3j.abi.Utils.typeMap(_values, org.web3j.abi.datatypes.generated.Uint256.class)), new org.web3j.abi.datatypes.DynamicArray<org.web3j.abi.datatypes.Bool>( org.web3j.abi.datatypes.Bool.class, org.web3j.abi.Utils.typeMap(_fake, org.web3j.abi.datatypes.Bool.class)), new org.web3j.abi.datatypes.DynamicArray<org.web3j.abi.datatypes.generated.Bytes32>( org.web3j.abi.datatypes.generated.Bytes32.class, org.web3j.abi.Utils.typeMap(_secret, org.web3j.abi.datatypes.generated.Bytes32.class))), Collections.<TypeReference<?>>emptyList()); return executeRemoteCallTransaction(function); }
Example #27
Source File: TypeEncoder.java From web3j with Apache License 2.0 | 5 votes |
@SuppressWarnings("unchecked") public static String encode(Type parameter) { if (parameter instanceof NumericType) { return encodeNumeric(((NumericType) parameter)); } else if (parameter instanceof Address) { return encodeAddress((Address) parameter); } else if (parameter instanceof Bool) { return encodeBool((Bool) parameter); } else if (parameter instanceof Bytes) { return encodeBytes((Bytes) parameter); } else if (parameter instanceof DynamicBytes) { return encodeDynamicBytes((DynamicBytes) parameter); } else if (parameter instanceof Utf8String) { return encodeString((Utf8String) parameter); } else if (parameter instanceof StaticArray) { return encodeArrayValues((StaticArray) parameter); } else if (parameter instanceof DynamicStruct) { return encodeDynamicStruct((DynamicStruct) parameter); } else if (parameter instanceof DynamicArray) { return encodeDynamicArray((DynamicArray) parameter); } else if (parameter instanceof PrimitiveType) { return encode(((PrimitiveType) parameter).toSolidityType()); } else { throw new UnsupportedOperationException( "Type cannot be encoded: " + parameter.getClass()); } }
Example #28
Source File: SolidityFunctionWrapper.java From etherscan-explorer with GNU General Public License v3.0 | 5 votes |
static TypeName getNativeType(TypeName typeName) { if (typeName instanceof ParameterizedTypeName) { return getNativeType((ParameterizedTypeName) typeName); } String simpleName = ((ClassName) typeName).simpleName(); if (simpleName.equals(Address.class.getSimpleName())) { return TypeName.get(String.class); } else if (simpleName.startsWith("Uint")) { return TypeName.get(BigInteger.class); } else if (simpleName.startsWith("Int")) { return TypeName.get(BigInteger.class); } else if (simpleName.equals(Utf8String.class.getSimpleName())) { return TypeName.get(String.class); } else if (simpleName.startsWith("Bytes")) { return TypeName.get(byte[].class); } else if (simpleName.equals(DynamicBytes.class.getSimpleName())) { return TypeName.get(byte[].class); } else if (simpleName.equals(Bool.class.getSimpleName())) { return TypeName.get(Boolean.class); // boolean cannot be a parameterized type } else { throw new UnsupportedOperationException( "Unsupported type: " + typeName + ", no native type mapping exists."); } }
Example #29
Source File: FunctionEncoderTest.java From etherscan-explorer with GNU General Public License v3.0 | 5 votes |
@Test public void testFunctionSimpleEncode() { Function function = new Function( "baz", Arrays.asList(new Uint32(BigInteger.valueOf(69)), new Bool(true)), Collections.<TypeReference<?>>emptyList() ); assertThat(FunctionEncoder.encode(function), is("0xcdcd77c0" + "0000000000000000000000000000000000000000000000000000000000000045" + "0000000000000000000000000000000000000000000000000000000000000001" )); }
Example #30
Source File: FunctionEncoderTest.java From etherscan-explorer with GNU General Public License v3.0 | 5 votes |
@Test public void testBuildMessageSignature() { assertThat( FunctionEncoder.buildMethodSignature( "baz", Arrays.asList( new Uint32(BigInteger.valueOf(69)), new Bool(true)) ), is("baz(uint32,bool)")); }