03:18:49 hello 12:16:02 Is there a way to get_transfer of an address based on label? 12:16:50 Or what's the idiomatic way of detecting payment of an account's sub address? 12:21:47 https://docs.getmonero.org/rpc-library/wallet-rpc/#incoming_transfers ? 12:22:10 https://docs.getmonero.org/rpc-library/wallet-rpc/#get_balance ? 12:22:43 I don't see a label input in both of these methods. 12:23:40 Use the subaddress index 12:24:34 Currently, I am following this flow: create_address (with label) -> query with get_address (get subaddress index from label) -> do periodic get_transfers from the index. 12:24:46 Yeah. 12:25:08 Just wondering if this is a reasonable way. 12:25:56 Currently, I am following this flow: create\_address a subaddress (with label) -> query with get\_address (get subaddress index from label) -> do periodic get\_transfers from the index. 12:26:46 You can use also use tx-notify 14:40:34 fineopal: you can track payments with payment_id, it's basically what you are looking for in terms of "get transfer by label" but it creates `integrated address` and it's an old way to receive payments, more modern approach is to use subaddresses and track them by major and minor indices (account_index and subaddress_index) 18:30:26 Yeah, I settled on using subaddress indices. Thanks.