Skip to content

Commit

Permalink
Update transfer_proxy_ownership.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
diyahir committed Jan 21, 2025
1 parent 16d0752 commit 6856958
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy-scripts/src/transfer_proxy_ownership.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use crate::utils::utils::{is_testnet, load_core_contracts, setup_wallet};
use dotenv::dotenv;
use fuels::types::Identity;
use fuels::types::{Address, Identity};
use test_utils::interfaces::proxy::{proxy_abi, Proxy, State};

pub async fn transfer_proxy_ownership(new_owner: &str) {
dotenv().ok();

let wallet = setup_wallet().await;
let address = wallet.address();
let address: Address = wallet.address().into();
println!("🔑 Wallet address: {}", address);

let is_testnet = is_testnet(wallet.clone()).await;
Expand Down

0 comments on commit 6856958

Please sign in to comment.