forked from xJonathanLEI/starknet-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
transfer_with_ledger.rs
57 lines (51 loc) · 1.71 KB
/
transfer_with_ledger.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
use starknet::{
accounts::{Account, Call, ExecutionEncoding, SingleOwnerAccount},
core::{
chain_id,
types::{BlockId, BlockTag, Felt},
utils::get_selector_from_name,
},
macros::felt,
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Url,
},
signers::LedgerSigner,
};
#[tokio::main]
async fn main() {
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_7").unwrap(),
));
let signer = LedgerSigner::new(
"m/2645'/1195502025'/1470455285'/0'/0'/0"
.try_into()
.expect("unable to parse path"),
)
.await
.expect("failed to initialize Starknet Ledger app");
let address = Felt::from_hex("YOUR_ACCOUNT_CONTRACT_ADDRESS_IN_HEX_HERE").unwrap();
let eth_token_address =
Felt::from_hex("0x049d36570d4e46f48e99674bd3fcc84644ddd6b96f7c741b1562b82f9e004dc7")
.unwrap();
let mut account = SingleOwnerAccount::new(
provider,
signer,
address,
chain_id::SEPOLIA,
ExecutionEncoding::New,
);
// `SingleOwnerAccount` defaults to checking nonce and estimating fees against the latest
// block. Optionally change the target block to pending with the following line:
account.set_block_id(BlockId::Tag(BlockTag::Pending));
let result = account
.execute_v1(vec![Call {
to: eth_token_address,
selector: get_selector_from_name("transfer").unwrap(),
calldata: vec![felt!("0x1234"), felt!("100"), Felt::ZERO],
}])
.send()
.await
.unwrap();
println!("Transaction hash: {:#064x}", result.transaction_hash);
}