3 个版本
0.1.2 | 2023年2月1日 |
---|---|
0.1.1 | 2023年1月31日 |
0.1.0 | 2023年1月31日 |
#31 在 #flows
8KB
141 行代码
这是一个用于将 Block Native 集成到您的 test.flows.network 流函数中的库。
示例用法
use blocknative_flows::listen_to_address;
use slack_flows::send_message_to_channel;
#[no_mangle]
pub fn run() {
let address = "0xC8a8f0C656D21bd619FB06904626255af19663ff";
listen_to_address(address, |bnm| {
send_message_to_channel("ham-5b68442", "general", bnm.hash);
});
}
在 run()
中,listen_to_address
将为地址 0xC8a8f0C656D21bd619FB06904626255af19663ff
创建一个监听器。
send_message_to_channel
来自 slack-flows
完整文档请见 这里。
依赖项
~1.2–2MB
~45K SLoC