Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop/improve performance #403

Open
wants to merge 51 commits into
base: sprout
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
e4a90f6
combine agreement planning and specification dnas
LeosPrograms Mar 25, 2024
787c9f7
combine dnas
LeosPrograms Apr 2, 2024
beb2300
update crates and packages
LeosPrograms Apr 3, 2024
0a50225
alter code to conform to hc 0.3 standards
LeosPrograms Apr 3, 2024
2e7f6c7
modify modules for publication
LeosPrograms Apr 3, 2024
d5758ec
adapt modules for 0_3
LeosPrograms Apr 5, 2024
7c5fef0
change EntryTypes to EntryDefinitions
LeosPrograms Apr 5, 2024
69fe1f4
un-rename entry_types function back to entry_defs
LeosPrograms Apr 5, 2024
9806abd
merge combine-dnas branch
LeosPrograms Apr 5, 2024
3b55579
combine dnas
LeosPrograms Apr 8, 2024
9a29d7a
fix bug with dna.yaml file regarding fulfillments
LeosPrograms Apr 15, 2024
782260c
change connection logic to work in the weave
LeosPrograms Apr 23, 2024
16af57d
update tryorama
LeosPrograms Apr 30, 2024
4a2b28c
undo index change
LeosPrograms Apr 30, 2024
bef9d26
combine indexing zomes
LeosPrograms May 13, 2024
5181e99
fix connection logic for non-weave connections
LeosPrograms May 15, 2024
a92c481
update nix flake
LeosPrograms May 15, 2024
5aa3571
update tryorama and client versions
LeosPrograms May 15, 2024
b4c81a7
update module version
LeosPrograms May 15, 2024
64e14df
clean up logs
LeosPrograms May 15, 2024
7002c87
add autoconnect origin for tryorama
LeosPrograms May 15, 2024
88c29d1
add test for a large plan
LeosPrograms May 15, 2024
bafd3ff
upgrade graphql version
LeosPrograms Jun 10, 2024
f48612c
update single tests
LeosPrograms Jun 10, 2024
960a3d9
remove debug from proposed_intent
LeosPrograms Jun 10, 2024
9f6e3b3
remove debug from rea_process
LeosPrograms Jun 10, 2024
f029266
remove get_link_fields from agent
LeosPrograms Jun 10, 2024
4ed65b4
add proposed intent search input type
LeosPrograms Jun 10, 2024
590484f
update proposed intent to find intents independently instead of throu…
LeosPrograms Jun 10, 2024
5945232
update proposal to find proposed intents independently instead of thr…
LeosPrograms Jun 10, 2024
727a1eb
update vf-graphql-holochain version
LeosPrograms Jun 10, 2024
6db441b
don't index by time
LeosPrograms Jun 10, 2024
fc2a63c
remove semantic index reading
LeosPrograms Jun 10, 2024
e612eae
remove unecessary console log on connection
LeosPrograms Jun 18, 2024
e25564f
change remote call from economic resource to resource specification t…
LeosPrograms Jun 18, 2024
468c6b7
change increment and decrement for resource pickup and dropoff
LeosPrograms Jul 16, 2024
5542f66
update tests
LeosPrograms Jul 16, 2024
fe8ffd4
delete dead code
LeosPrograms Jul 16, 2024
a988598
update pnpm lock
LeosPrograms Jul 16, 2024
7dc7364
replace role with cell_id in zome call
LeosPrograms Jul 16, 2024
de4f4aa
update version to 0.4.7
LeosPrograms Jul 16, 2024
154fe68
add image to process specifications
LeosPrograms Jul 19, 2024
c0d2f13
add stage to commitment
LeosPrograms Jul 19, 2024
862148c
update vf-graphql to 0.9.0-alpha.11 via forked npm package
LeosPrograms Jul 19, 2024
61f3d0d
fix fulfillment main query
LeosPrograms Jul 19, 2024
f0cbeeb
increment package versions
LeosPrograms Jul 19, 2024
cdd4904
upgrade package version
LeosPrograms Jul 23, 2024
26a2f7f
remove console clutter
LeosPrograms Jul 23, 2024
e48509f
add stage as processSpecificationId to commitment
LeosPrograms Jul 23, 2024
d7700f8
handle empty economicEvent inputOf and outputOf
LeosPrograms Jul 23, 2024
fb026dd
remove commented code
LeosPrograms Jul 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
delete dead code
LeosPrograms committed Jul 16, 2024
commit fe8ffd4d7b99a5ad0e20d038a1a5db4f574e1e28
13 changes: 0 additions & 13 deletions modules/vf-graphql-holochain/connection.ts
Original file line number Diff line number Diff line change
@@ -388,19 +388,6 @@ const zomeFunction = <InputType, OutputType>(socketURI: string, cell_id: CellId,
}
}

// const zomeFunction = <InputType, OutputType>(socketURI: string, cell_id: CellId, zome_name: string, fn_name: string, skipEncodeDecode?: boolean): BoundZomeFn<InputType, Promise<OutputType>> => async (args): Promise<OutputType> => {
// const { callZome } = await getConnection(socketURI)
// const res = await callZome({
// cell_id,
// zome_name,
// fn_name,
// provenance: cell_id[1],
// payload: skipEncodeDecode ? args : encodeFields(args),
// }, 60000)
// if (!skipEncodeDecode) decodeFields(res)
// return res
// }

/**
* External API for accessing zome methods, passing them through an optional intermediary DNA ID mapping
*