Skip to content

Commit

Permalink
remove unused stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jeesunikim committed Feb 13, 2025
1 parent f08e114 commit 36a4fac
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const SorobanOperation = ({
}) => {
const updatedOperation = {
...sorobanOperation,
operation_type: opType,
params: {
...sorobanOperation?.params,
[opParam]: opValue,
Expand Down
2 changes: 0 additions & 2 deletions src/components/FormElements/ContractMethodSelectPicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ export const ContractMethodSelectPicker = ({
const [funcSpec, setFuncSpec] = useState<JSONSchema7 | undefined>(undefined);

const onChange = (e: React.ChangeEvent<HTMLSelectElement>) => {
console.log("[onChange] e.target.value: ", e.target.value);

setSelectedValue(e.target.value);

if (e.target.value) {
Expand Down
5 changes: 0 additions & 5 deletions src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,6 @@ export type SponsorshipType =
// =============================================================================
export type SorobanOpType = "extend_footprint_ttl" | "invoke_contract_function";

export type InvokeContractObjectValue = {
contract_id: string;
contract_data: AnyObject;
};

// =============================================================================
// RPC
// =============================================================================
Expand Down

0 comments on commit 36a4fac

Please sign in to comment.