-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdeploy_contract.rs
More file actions
53 lines (47 loc) · 1.67 KB
/
deploy_contract.rs
File metadata and controls
53 lines (47 loc) · 1.67 KB
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
use std::sync::Arc;
use starknet_rust::{
accounts::{ExecutionEncoding, SingleOwnerAccount},
contract::ContractFactory,
core::{
chain_id,
types::{Felt, contract::legacy::LegacyContractClass},
},
macros::felt,
providers::{
Url,
jsonrpc::{HttpTransport, JsonRpcClient},
},
signers::{LocalWallet, SigningKey},
};
use starknet_rust_contract::UdcSelector;
#[tokio::main]
async fn main() {
// NOTE: you will need to declare this class first
let contract_artifact: LegacyContractClass =
serde_json::from_reader(std::fs::File::open("/path/to/contract/artifact.json").unwrap())
.unwrap();
let class_hash = contract_artifact.class_hash().unwrap();
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://starknet-sepolia.public.blastapi.io/rpc/v0_9").unwrap(),
));
let signer = LocalWallet::from(SigningKey::from_secret_scalar(
Felt::from_hex("YOUR_PRIVATE_KEY_IN_HEX_HERE").unwrap(),
));
let address = Felt::from_hex("YOUR_ACCOUNT_CONTRACT_ADDRESS_IN_HEX_HERE").unwrap();
let account = SingleOwnerAccount::new(
provider,
signer,
address,
chain_id::SEPOLIA,
ExecutionEncoding::New,
);
// Wrapping in `Arc` is meaningless here. It's just showcasing it could be done as
// `Arc<Account>` implements `Account` too.
let account = Arc::new(account);
let contract_factory = ContractFactory::new_with_udc(class_hash, account, UdcSelector::New);
contract_factory
.deploy_v3(vec![felt!("123456")], felt!("1122"), false)
.send()
.await
.expect("Unable to deploy contract");
}