sequenceDiagram
title Agoric user swaps via Zoe offer
box Red Agoric:
actor au as AgoricUser
participant sa as SwapAnything
end
box Purple Osmosis:
participant cs as CrosschainSwaps
end
The differences between the original and the new config.yaml are:
-
the image being used for osmosis chain
- the ORIGINAL use the osmosis 25.0.0 from starship registry
lopesbp/starship-osmosis:1.0.0
- the NEW uses an image built using the Dockerfile present on this gist with the
osmolabs/osmosis:25.0.1-alpine
base image:
lopesbp/starship-osmosis:1.0.0
- the ORIGINAL use the osmosis 25.0.0 from starship registry
-
log level for osmosis chain
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import '@endo/init'; | |
import { agops, executeOffer, makeAgd } from '@agoric/synthetic-chain'; | |
import { makeSmartWalletKit } from '@agoric/client-utils'; | |
import { | |
boardSlottingMarshaller, | |
makeBoardRemote, | |
} from '@agoric/internal/src/marshal.js'; | |
import { execFileSync } from 'child_process'; | |
export const makeGovernanceDriver = async (fetch, networkConfig) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ /Users/jorgelopes/Projects/Agoric/agoric-sdk/node_modules/.bin/agoric run packages/builders/scripts/vats/terminate-kread-instance.js | |
agoric: run: running /Users/jorgelopes/Projects/Agoric/agoric-sdk/packages/builders/scripts/vats/terminate-kread-instance.js | |
agoric: run: Deploy script will run with Node.js ESM | |
agoric: (TypeError#1) | |
TypeError#1: Failed to load module "./scripts/vats/terminate-kread-instance.js" in package "file:///Users/jorgelopes/Projects/Agoric/agoric-sdk/packages/builders/" (1 underlying failures: Cannot find external module "@agoric/deploy-script-support" in package file:///Users/jorgelopes/Projects/Agoric/agoric-sdk/packages/builders/ | |
at throwAggregateError (file:///Users/jorgelopes/Projects/Agoric/agoric-sdk/node_modules/ses/src/module-load.js:557:11) | |
at load (file:///Users/jorgelopes/Projects/Agoric/agoric-sdk/node_modules/ses/src/module-load.js:605:3) | |
at async digestFromMap (file:///Users/jorgelopes/Projects/Agoric/agoric-sdk/node_modules/@endo/compartment-mapper/src/archive-lit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jorgelopes@Jorges-MacBook-Pro a3p-integration % yarn test -m acceptance | |
WARN ignoring non-package in proposal directory: README.md | |
Testing acceptance | |
docker buildx bake --load test-acceptance | |
[+] Building 1.6s (62/62) FINISHED docker:desktop-linux | |
=> [internal] load local bake definitions 0.0s | |
=> => reading docker-bake.json 232B / 232B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { E } from '@endo/far'; | |
import { deeplyFulfilled } from '@endo/marshal'; | |
/** | |
* @param {BootstrapPowers & { | |
* consume: { | |
* economicCommitteeCreatorFacet: any; | |
* }; | |
* }} powers | |
* @param {object} options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2024-11-20T16:44:29.299Z SwingSet: vat: v1: evaluateBundleCap { manifestBundleRef: { bundleID: 'b1-df5452180466cebad460e201b1e5c360f896e30f5e758da1240436d2ed47ec1f12e525f728c9cbea2d814e8f998333292b5bb49f1b52adaa2b5adab95916158b' }, manifestGetterName: 'getManifestForUpgradeVaultFactory', vatAdminSvc: Promise [Promise] {} } | |
2024-11-20T16:44:29.362Z SwingSet: vat: v1: execute { manifestGetterName: 'getManifestForUpgradeVaultFactory', bundleExports: [ 'getManifestForUpgradeVaultFactory', 'upgradeVaultFactory' ] } | |
2024-11-20T16:44:29.377Z SwingSet: vat: v1: installation VaultFactory: new Promise | |
2024-11-20T16:44:29.379Z SwingSet: vat: v1: installation VaultFactory settled; remaining: [] | |
2024-11-20T16:44:29.483Z SwingSet: vat: v1: coreProposal: upgradeVaultFactory | |
2024-11-20T16:44:29.483Z SwingSet: vat: v1: LOG: upgrading VaultFactory | |
2024-11-20T16:44:30.022Z SwingSet: vat: v1: LOG: initialPoserInvitation Object [Alleged: Zoe Invitation payment] {} | |
2024-11-20T16:44:30.022Z SwingSet: vat: v1: LOG: adminFacet Obje |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global fetch setTimeout */ | |
import test from 'ava'; | |
import '@endo/init'; | |
import { | |
GOV1ADDR, | |
waitForBlock, | |
} from '@agoric/synthetic-chain'; | |
import { execFileSync } from 'child_process'; | |
import { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import test from 'ava'; | |
import '@endo/init'; | |
import assert from 'assert'; | |
import { agoric, smallCapsContext } from '@agoric/synthetic-chain'; | |
const zip = (xs, ys) => xs.map((x, i) => [x, ys[i]]); | |
const fromSmallCapsEntries = txt => { | |
const { body, slots } = JSON.parse(txt); | |
const theEntries = zip(JSON.parse(body.slice(1)), slots).map( | |
([[name, ref], boardID]) => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "print-to-file", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"type": "module", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", |
NewerOlder