flowchart TD
A[选择chain 的地址] --> B[调用gather接口发起归集]
B --> C{waasLite对商户发起两种类型的webhook事件回调}
C -->|gathering| D[归集的地址的webhook通知]
C --> |gather_order| E[归集订单的完成通知]
D --> F{检查归集状态?}
F --> |unconfirmed|D
F --> |completed| G[归集成功]
E --> |包含|H[归集成功的地址]
E --> |包含|I[归集失败跳过的地址]