Skip to content

Commit 2397d94

Browse files
Willem Wyndhamwillemneal
Willem Wyndham
authored andcommitted
feat!: Redeploy smartdeploy on testnet
1 parent bd3d540 commit 2397d94

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

contract_id.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
CABJP36BKN2MOLGD7UCVZPJN42XTWEV7SKXCRXACHQOTAMYO26LQET5O
1+
CC2FLEJRHB2Q5JOAJNPFZU25ZAY6IFYXJL7UQ5GF36F3G5QZ4CQILUID
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
"CABJP36BKN2MOLGD7UCVZPJN42XTWEV7SKXCRXACHQOTAMYO26LQET5O"
1+
"CC2FLEJRHB2Q5JOAJNPFZU25ZAY6IFYXJL7UQ5GF36F3G5QZ4CQILUID"

examples/cross_contract/contract_c/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#![no_std]
22
use loam_sdk::soroban_sdk::{self, contract, contractimpl, Address, Env};
33

4-
smartdeploy_sdk::import_contract!(contract_a);
4+
loam_sdk::import_contract!(contract_a);
55

66
#[contract]
77
pub struct ContractB;
88

99
#[contractimpl]
1010
impl ContractB {
1111
pub fn add_with(env: Env, contract_id: Address, x: u32, y: u32) -> u32 {
12-
let client = contract_a::new(&env);
12+
let client = contract_a::Client::new(&env, &contract_id);
1313
let client_2 = contract_a::Client::new(&env, &contract_id);
1414
(client.add(&x, &y) + client_2.add(&x, &y)) >> 2
1515
}

hash.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2e1bba3cdb8d9c6028692459b3f2a48795b8d73cfd3ec6f9eb72a1423c19d727
1+
87fcb7fd60ee1fdfffc3705257a38cd8726924bd4c8ae077f4b27149f983fc07

0 commit comments

Comments
 (0)