SYMBOL INDEX (159 symbols across 7 files) FILE: src/main/java/io/blk/erc20/Application.java class Application (line 25) | @EnableSwagger2 method main (line 29) | public static void main(String[] args) { method quorum (line 38) | @Bean method lenderApi (line 54) | @Bean method apiInfo (line 65) | private ApiInfo apiInfo() { FILE: src/main/java/io/blk/erc20/ContractService.java class ContractService (line 28) | @Service method ContractService (line 35) | @Autowired method getConfig (line 41) | public NodeConfiguration getConfig() { method deploy (line 45) | public String deploy( method name (line 61) | public String name(String contractAddress) throws Exception { method approve (line 70) | public TransactionResponse approve( method totalSupply (line 82) | public String totalSupply(String contractAddress) throws Exception { method transferFrom (line 91) | public TransactionResponse transferFrom( method decimals (line 103) | public String decimals(String contractAddress) throws Exception { method version (line 112) | public String version(String contractAddress) throws Exception { method balanceOf (line 121) | public String balanceOf(String contractAddress, String ownerAddress) t... method symbol (line 130) | public String symbol(String contractAddress) throws Exception { method transfer (line 139) | public TransactionResponse transfer( method approveAndCall (line 151) | public TransactionResponse approveAndCall( method allowance (line 167) | public String allowance(String contractAddress, String ownerAddress, S... method load (line 178) | private HumanStandardToken load(String contractAddress, List p... method load (line 185) | private HumanStandardToken load(String contractAddress) { method processApprovalEventResponse (line 192) | private TransactionResponse method processTransferEventsResponse (line 203) | private TransactionResponse method processEventResponse (line 214) | private TransactionResponse processEventResponse( class TransferEventResponse (line 226) | @Getter method TransferEventResponse (line 233) | public TransferEventResponse() { } method TransferEventResponse (line 235) | public TransferEventResponse( method getFrom (line 242) | public String getFrom() { method setFrom (line 246) | public void setFrom(String from) { method getTo (line 250) | public String getTo() { method setTo (line 254) | public void setTo(String to) { method getValue (line 258) | public long getValue() { method setValue (line 262) | public void setValue(long value) { class ApprovalEventResponse (line 267) | @Getter method ApprovalEventResponse (line 274) | public ApprovalEventResponse() { } method ApprovalEventResponse (line 276) | public ApprovalEventResponse( method getOwner (line 283) | public String getOwner() { method setOwner (line 287) | public void setOwner(String owner) { method getSpender (line 291) | public String getSpender() { method setSpender (line 295) | public void setSpender(String spender) { method getValue (line 299) | public long getValue() { method setValue (line 303) | public void setValue(long value) { FILE: src/main/java/io/blk/erc20/Controller.java class Controller (line 26) | @Api("ERC-20 token standard API") method Controller (line 32) | @Autowired method config (line 37) | @ApiOperation("Application configuration") method deploy (line 44) | @ApiOperation( method name (line 65) | @ApiOperation("Get token name") method approve (line 71) | @ApiOperation( method totalSupply (line 91) | @ApiOperation("Get total supply of tokens") method transferFrom (line 97) | @ApiOperation( method decimals (line 118) | @ApiOperation("Get decimal precision of tokens") method version (line 124) | @ApiOperation("Get contract version") method balanceOf (line 130) | @ApiOperation("Get token balance for address") method symbol (line 139) | @ApiOperation("Get token symbol") method transfer (line 145) | @ApiOperation( method approveAndCall (line 165) | @ApiOperation( method allowance (line 187) | @ApiOperation("Get quantity of tokens you can transfer on another toke... method extractPrivateFor (line 197) | private static @Nullable List extractPrivateFor(HttpServletReq... class ContractSpecification (line 206) | @Data method ContractSpecification (line 213) | ContractSpecification() { method ContractSpecification (line 216) | ContractSpecification(BigInteger initialAmount, String tokenName, Bi... method getDecimalUnits (line 223) | public BigInteger getDecimalUnits() { method getInitialAmount (line 227) | public BigInteger getInitialAmount() { method getTokenName (line 231) | public String getTokenName() { method getTokenSymbol (line 235) | public String getTokenSymbol() { class ApproveRequest (line 240) | @Data method ApproveRequest (line 245) | ApproveRequest() {} method ApproveRequest (line 247) | ApproveRequest(String spender, BigInteger value) { method getSpender (line 252) | public String getSpender() { method getValue (line 256) | public BigInteger getValue() { class TransferFromRequest (line 261) | @Data method TransferFromRequest (line 267) | TransferFromRequest() {} method TransferFromRequest (line 269) | TransferFromRequest(String from, String to, BigInteger value) { method getFrom (line 276) | public String getFrom() { method getValue (line 280) | BigInteger getValue() { method getTo (line 284) | public String getTo() { class TransferRequest (line 289) | @Data method TransferRequest (line 294) | TransferRequest(String to, BigInteger value) { method TransferRequest (line 299) | TransferRequest() {} method getTo (line 301) | public String getTo() { method getValue (line 305) | public BigInteger getValue() { class ApproveAndCallRequest (line 310) | @Data method ApproveAndCallRequest (line 316) | ApproveAndCallRequest() {} method ApproveAndCallRequest (line 318) | ApproveAndCallRequest(String spender, BigInteger value, String extra... method getSpender (line 324) | String getSpender() { method getValue (line 328) | BigInteger getValue() { method getExtraData (line 332) | String getExtraData() { class AllowanceRequest (line 337) | @Data method AllowanceRequest (line 342) | AllowanceRequest() {} method AllowanceRequest (line 344) | AllowanceRequest(String ownerAddress, String spenderAddress) { method getOwnerAddress (line 349) | public String getOwnerAddress() { method setOwnerAddress (line 353) | public void setOwnerAddress(String ownerAddress) { method getSpenderAddress (line 357) | public String getSpenderAddress() { method setSpenderAddress (line 361) | public void setSpenderAddress(String spenderAddress) { FILE: src/main/java/io/blk/erc20/NodeConfiguration.java class NodeConfiguration (line 10) | @Data method getNodeEndpoint (line 18) | public String getNodeEndpoint() { method setNodeEndpoint (line 22) | public void setNodeEndpoint(String nodeEndpoint) { method getFromAddress (line 26) | public String getFromAddress() { method setFromAddress (line 30) | public void setFromAddress(String fromAddress) { FILE: src/main/java/io/blk/erc20/TransactionResponse.java class TransactionResponse (line 9) | @Getter method TransactionResponse (line 16) | TransactionResponse() { } method TransactionResponse (line 18) | public TransactionResponse(String transactionHash) { method TransactionResponse (line 22) | public TransactionResponse(String transactionHash, T event) { method getTransactionHash (line 27) | public String getTransactionHash() { method setTransactionHash (line 31) | public void setTransactionHash(String transactionHash) { method getEvent (line 35) | public T getEvent() { method setEvent (line 39) | public void setEvent(T event) { FILE: src/main/java/io/blk/erc20/generated/HumanStandardToken.java class HumanStandardToken (line 39) | public class HumanStandardToken extends Contract { method HumanStandardToken (line 72) | @Deprecated method HumanStandardToken (line 77) | protected HumanStandardToken(String contractAddress, Web3j web3j, Cred... method HumanStandardToken (line 81) | @Deprecated method HumanStandardToken (line 86) | protected HumanStandardToken(String contractAddress, Web3j web3j, Tran... method name (line 90) | public RemoteCall name() { method approve (line 97) | public RemoteCall approve(String _spender, BigInte... method totalSupply (line 106) | public RemoteCall totalSupply() { method transferFrom (line 113) | public RemoteCall transferFrom(String _from, Strin... method decimals (line 123) | public RemoteCall decimals() { method version (line 130) | public RemoteCall version() { method balanceOf (line 137) | public RemoteCall balanceOf(String _owner) { method symbol (line 144) | public RemoteCall symbol() { method transfer (line 151) | public RemoteCall transfer(String _to, BigInteger ... method approveAndCall (line 160) | public RemoteCall approveAndCall(String _spender, ... method allowance (line 170) | public RemoteCall allowance(String _owner, String _spender) { method getTransferEvents (line 178) | public List getTransferEvents(TransactionReceip... method transferEventFlowable (line 192) | public Flowable transferEventFlowable(EthFilter... method transferEventFlowable (line 207) | public Flowable transferEventFlowable(DefaultBl... method getApprovalEvents (line 213) | public List getApprovalEvents(TransactionReceip... method approvalEventFlowable (line 227) | public Flowable approvalEventFlowable(EthFilter... method approvalEventFlowable (line 242) | public Flowable approvalEventFlowable(DefaultBl... method load (line 248) | @Deprecated method load (line 253) | @Deprecated method load (line 258) | public static HumanStandardToken load(String contractAddress, Web3j we... method load (line 262) | public static HumanStandardToken load(String contractAddress, Web3j we... method deploy (line 266) | public static RemoteCall deploy(Web3j web3j, Crede... method deploy (line 274) | public static RemoteCall deploy(Web3j web3j, Trans... method deploy (line 282) | @Deprecated method deploy (line 291) | @Deprecated class TransferEventResponse (line 300) | public static class TransferEventResponse { class ApprovalEventResponse (line 310) | public static class ApprovalEventResponse { FILE: src/test/java/io/blk/erc20/ControllerIT.java class ControllerIT (line 26) | @RunWith(SpringJUnit4ClassRunner.class) method testConfig (line 43) | @Test method testLifeCycle (line 51) | @Ignore method deploy (line 101) | private String deploy( method verifyName (line 114) | private void verifyName(String contractAddress, String name) { method verifyTotalSupply (line 122) | private void verifyTotalSupply(String contractAddress, BigInteger tota... method verifyDecimals (line 130) | private void verifyDecimals(String contractAddress, BigInteger decimal... method verifyVersion (line 138) | private void verifyVersion(String contractAddress, String version) { method verifyBalanceOf (line 146) | private void verifyBalanceOf(String contractAddress, String ownerAddre... method verifySymbol (line 155) | private void verifySymbol(String contractAddress, String symbol) { method verifyAllowance (line 163) | private void verifyAllowance( method verifyTransferFromTxFailure (line 181) | private void verifyTransferFromTxFailure( method verifyApproveTx (line 191) | private void verifyApproveTx( method verifyTransferTx (line 201) | private void verifyTransferTx( method buildEntity (line 211) | private HttpEntity buildEntity(T body) { method verifyHttpStatus (line 220) | private void verifyHttpStatus(ResponseEntity responseEntity) { method verifyPostResponse (line 224) | private void verifyPostResponse(ResponseEntity re... method verifyPostResponseFailure (line 229) | private void verifyPostResponseFailure(ResponseEntity