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

Bump Orchestration package Dep to u18 #97

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
29 changes: 15 additions & 14 deletions contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
"@agoric/eslint-config": "^0.4.1-u17.1",
"@agoric/inter-protocol": "^0.17.0-u17.1",
"@agoric/smart-wallet": "^0.5.4-u17.1",
"@agoric/store": "^0.9.3-u17.1",
"@agoric/time": "^0.3.3-u17.1",
"@agoric/vat-data": "^0.5.3-u17.1",
"@agoric/time": "^0.3.3-u18.0",
"@agoric/vow": "^0.2.0-u17.1",
"@agoric/zone": "^0.3.0-u17.1",
"@cosmjs/proto-signing": "^0.32.3",
Expand Down Expand Up @@ -63,22 +61,25 @@
"tsimp": "^2.0.10",
"type-coverage": "^2.26.3",
"typescript": "^5.3.3",
"typescript-eslint": "^7.18.0"
"typescript-eslint": "^7.18.0",
"yarn-deduplicate": "^6.0.2"
},
"dependencies": {
"@agoric/ertp": "^0.16.3-u17.1",
"@agoric/ertp": "^0.16.3-u18.0",
"@agoric/governance": "^0.10.4-u17.1",
"@agoric/internal": "^0.4.0-u17.1",
"@agoric/orchestration": "patch:@agoric/orchestration@npm%3A0.2.0-upgrade-17-dev-ec448b0.0#~/.yarn/patches/@agoric-orchestration-npm-0.2.0-upgrade-17-dev-ec448b0.0-f94046c01d.patch",
"@agoric/store": "^0.9.3-u17.1",
"@agoric/vats": "^0.16.0-u17.1",
"@agoric/zoe": "^0.26.3-u17.1",
"@agoric/internal": "^0.4.0-u18.0",
"@agoric/orchestration": "0.2.0-u18.0",
"@agoric/store": "^0.9.3-u18.0",
"@agoric/time": "^0.3.3-u18.0",
"@agoric/vat-data": "^0.5.3-u18.0",
"@agoric/vats": "^0.16.0-u18.0",
"@agoric/zoe": "^0.26.3-u18.0",
"@endo/bundle-source": "^3.4.0",
"@endo/errors": "^1.2.4",
"@endo/far": "^1.1.4",
"@endo/errors": "^1.2.7",
"@endo/far": "^1.1.8",
"@endo/init": "^1.1.3",
"@endo/marshal": "^1.5.2",
"@endo/patterns": "^1.4.2"
"@endo/marshal": "^1.6.1",
"@endo/patterns": "^1.4.6"
},
"ava": {
"extensions": {
Expand Down
2 changes: 1 addition & 1 deletion contract/scripts/init-orca.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export default async (homeP, endowments) => {
counterparty: {
client_id: connInfo.counterparty.client_id,
connection_id: connInfo.counterparty.connection_id,
prefix: { key_prefix: 'arbitrary - not used?' },
// prefix: { key_prefix: 'arbitrary - not used?' },
},
id: myConn,
state: connInfo.state,
Expand Down
11 changes: 4 additions & 7 deletions contract/src/orca.flows.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,10 @@ export const makeCreateAndFund = async (
await localTransfer(seat, localAccount, give);
trace('after transfer');

await localAccount.transfer(
{
denom: 'ubld',
value: amt.value / 2n,
},
remoteAddress,
);
await localAccount.transfer(remoteAddress, {
denom: 'ubld',
value: amt.value / 2n,
});
seat.exit();
const remoteChainBalance = await remoteAccount.getBalance('uosmo');
console.log('remoteChainBalance', remoteChainBalance);
Expand Down
6 changes: 3 additions & 3 deletions contract/src/orca.proposal.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ const c1 = harden({
counterparty: harden({
client_id: 'client-0',
connection_id: 'connection-0',
prefix: {
key_prefix: 'key-prefix-0',
},
// prefix: {
// key_prefix: 'key-prefix-0',
// },
}),
transferChannel: harden({
portId: 'transfer',
Expand Down
9 changes: 9 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"compilerOptions": {
"noUnusedLocals": false
},
"include": [
"node_modules/@agoric/ertp/src/types.ts"
]
}

2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"test:e2e": "exit 0"
},
"dependencies": {
"@agoric/react-components": "0.2.1-dev-e6f79e0.0",
"@agoric/react-components": "0.3.0",
"buffer": "^6.0.3",
"chain-registry": "1.28.0",
"cosmos-kit": "^2.8.5",
Expand Down
Loading
Loading