forked from xJonathanLEI/starknet-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
declare_cairo1_contract.rs
58 lines (48 loc) · 1.85 KB
/
declare_cairo1_contract.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
use std::sync::Arc;
use starknet::{
accounts::{Account, ExecutionEncoding, SingleOwnerAccount},
core::{
chain_id,
types::{contract::SierraClass, BlockId, BlockTag, FieldElement},
},
providers::{
jsonrpc::{HttpTransport, JsonRpcClient},
Url,
},
signers::{LocalWallet, SigningKey},
};
#[tokio::main]
async fn main() {
// Sierra class artifact. Output of the `starknet-compile` command
let contract_artifact: SierraClass =
serde_json::from_reader(std::fs::File::open("/path/to/contract/artifact.json").unwrap())
.unwrap();
// Class hash of the compiled CASM class from the `starknet-sierra-compile` command
let compiled_class_hash =
FieldElement::from_hex_be("COMPILED_CASM_CLASS_HASH_IN_HEX_HERE").unwrap();
let provider = JsonRpcClient::new(HttpTransport::new(
Url::parse("https://starknet-testnet.public.blastapi.io/rpc/v0_6").unwrap(),
));
let signer = LocalWallet::from(SigningKey::from_secret_scalar(
FieldElement::from_hex_be("YOUR_PRIVATE_KEY_IN_HEX_HERE").unwrap(),
));
let address = FieldElement::from_hex_be("YOUR_ACCOUNT_CONTRACT_ADDRESS_IN_HEX_HERE").unwrap();
let mut account = SingleOwnerAccount::new(
provider,
signer,
address,
chain_id::TESTNET,
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));
// We need to flatten the ABI into a string first
let flattened_class = contract_artifact.flatten().unwrap();
let result = account
.declare(Arc::new(flattened_class), compiled_class_hash)
.send()
.await
.unwrap();
dbg!(result);
}