Skip to content

Commit

Permalink
Built + proxy regen
Browse files Browse the repository at this point in the history
Signed-off-by: Andrei Baltariu <[email protected]>
  • Loading branch information
andreiblt1304 committed Dec 10, 2024
1 parent fc75117 commit 60d19a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 22 deletions.
16 changes: 0 additions & 16 deletions common/proxies/src/sovereign_forge_proxy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,22 +173,6 @@ where
.original_result()
}

pub fn set_address<
Arg0: ProxyArg<ManagedAddress<Env::Api>>,
Arg1: ProxyArg<ManagedAddress<Env::Api>>,
>(
self,
esdt_safe_address: Arg0,
header_verifier_address: Arg1,
) -> TxTypedCall<Env, From, To, NotPayable, Gas, ()> {
self.wrapped_tx
.payment(NotPayable)
.raw_call("setAddress")
.argument(&esdt_safe_address)
.argument(&header_verifier_address)
.original_result()
}

pub fn chain_factories<
Arg0: ProxyArg<u32>,
>(
Expand Down
5 changes: 2 additions & 3 deletions sovereign-forge/wasm-sovereign-forge-full/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

// Init: 1
// Upgrade: 1
// Endpoints: 11
// Endpoints: 10
// Async Callback (empty): 1
// Total number of exported functions: 14
// Total number of exported functions: 13

#![no_std]

Expand All @@ -26,7 +26,6 @@ multiversx_sc_wasm_adapter::endpoints! {
deployPhaseOne => deploy_phase_one
deployPhaseTwo => deploy_phase_two
deployPhaseThree => deploy_phase_three
setAddress => set_address
getChainFactoryAddress => chain_factories
getTokenHandlerAddress => token_handlers
getDeployCost => deploy_cost
Expand Down
5 changes: 2 additions & 3 deletions sovereign-forge/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

// Init: 1
// Upgrade: 1
// Endpoints: 11
// Endpoints: 10
// Async Callback (empty): 1
// Total number of exported functions: 14
// Total number of exported functions: 13

#![no_std]

Expand All @@ -26,7 +26,6 @@ multiversx_sc_wasm_adapter::endpoints! {
deployPhaseOne => deploy_phase_one
deployPhaseTwo => deploy_phase_two
deployPhaseThree => deploy_phase_three
setAddress => set_address
getChainFactoryAddress => chain_factories
getTokenHandlerAddress => token_handlers
getDeployCost => deploy_cost
Expand Down

0 comments on commit 60d19a3

Please sign in to comment.