forked from iotaledger/iota.rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplit_outputs_single_address.rs
96 lines (84 loc) · 3.16 KB
/
split_outputs_single_address.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
//! cargo run --example split_outputs_single_address --release
use iota_client::{
bee_message::prelude::{Essence, Output, Payload, UtxoInput},
Client, Result, Seed,
};
extern crate dotenv;
use dotenv::dotenv;
use std::env;
/// In this example we will create 100 outputs on a single address
/// You need to have >=100 Mi on the first address before you run it
#[tokio::main]
async fn main() -> Result<()> {
// Create a client instance
let iota = Client::builder()
.with_node("https://api.lb-0.testnet.chrysalis2.com") // Insert your node URL here
.unwrap()
.finish()
.await
.unwrap();
// This example uses dotenv, which is not safe for use in production
dotenv().ok();
let seed = Seed::from_bytes(&hex::decode(env::var("NONSECURE_USE_OF_DEVELOPMENT_SEED_2").unwrap()).unwrap());
// Split funds to own addresses
let addresses = iota
.get_addresses(&seed)
// We start from index 1 so we can send remaining balance to the address with index 0
.with_range(1..101)
.finish()
.await
.unwrap();
let mut message_builder = iota.message().with_seed(&seed);
for address in addresses {
message_builder = message_builder.with_output(&address, 1_000_000).unwrap();
}
let message = message_builder.finish().await.unwrap();
println!(
"First transaction sent: https://explorer.iota.org/testnet/message/{}",
message.id().0
);
let _ = iota.retry_until_included(&message.id().0, None, None).await.unwrap();
// At this point we have 100 Mi on 100 addresses and we will just send it to the final address
// We use the outputs directly so we don't double spend them
let mut initial_outputs = Vec::new();
if let Some(Payload::Transaction(tx)) = message.payload() {
let Essence::Regular(essence) = tx.essence();
for (index, output) in essence.outputs().iter().enumerate() {
// Only include 1 Mi outputs, otherwise it fails for the remainder address
if let Output::SignatureLockedSingle(output) = output {
if output.amount() == 1_000_000 {
initial_outputs.push(UtxoInput::new(tx.id(), index as u16).unwrap());
}
}
}
}
let mut sent_messages = Vec::new();
for (index, output) in initial_outputs.into_iter().enumerate() {
let message_id = iota
.message()
.with_seed(&seed)
.with_input(output)
.with_input_range(1..101)
.with_output(
"atoi1qzt0nhsf38nh6rs4p6zs5knqp6psgha9wsv74uajqgjmwc75ugupx3y7x0r",
1_000_000,
)
.unwrap()
.finish()
.await
.unwrap()
.id()
.0;
println!(
"Transaction {} sent: https://explorer.iota.org/testnet/message/{}",
index, message_id
);
sent_messages.push(message_id);
}
for message_id in sent_messages {
let _ = iota.retry_until_included(&message_id, None, None).await?;
}
Ok(())
}