-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 10394-board
- Loading branch information
Showing
382 changed files
with
21,831 additions
and
3,680 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# also ignored in packages/cosmic-proto/.eslintignore, but IDE's pick up the root config | ||
packages/cosmic-proto/dist | ||
packages/cosmic-proto/node_modules/ | ||
packages/cosmic-proto/coverage/ | ||
packages/cosmic-proto/dist/ | ||
packages/cosmic-proto/proto/ | ||
packages/cosmic-proto/src/codegen/ |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
agoric-sdk/ |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
#!/bin/sh | ||
#!/bin/bash | ||
set -ueo pipefail | ||
|
||
# Convenience script to debug the current proposal being worked on. | ||
|
||
scripts/build-submission.sh proposals/z:acceptance testing/start-valueVow.js start-valueVow | ||
scripts/build-submission.sh proposals/z:acceptance testing/restart-valueVow.js restart-valueVow | ||
( | ||
cd 'proposals/z:acceptance' | ||
../../scripts/build-submission.sh testing/start-valueVow.js start-valueVow | ||
../../scripts/build-submission.sh testing/restart-valueVow.js restart-valueVow | ||
) | ||
|
||
yarn test -m acceptance --debug |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,14 +8,17 @@ | |
"build:sdk": "make -C ../packages/deployment docker-build-sdk", | ||
"build:submissions": "scripts/build-all-submissions.sh", | ||
"build:synthetic-chain": "yarn synthetic-chain build", | ||
"lint": "../node_modules/.bin/eslint proposals", | ||
"lint-fix": "yarn lint:eslint --fix", | ||
"lint": "../node_modules/.bin/run-s --continue-on-error 'lint:*'", | ||
"lint:types": "find proposals -maxdepth 2 -name package.json -type f -exec ../node_modules/.bin/tsc -p '{}'/.. ';'", | ||
"lint:eslint": "../node_modules/.bin/eslint .", | ||
"test": "yarn synthetic-chain test", | ||
"doctor": "yarn synthetic-chain doctor" | ||
}, | ||
"dependencies": { | ||
"@agoric/synthetic-chain": "^0.4.0", | ||
"@agoric/synthetic-chain": "^0.4.3", | ||
"@types/better-sqlite3": "^7.6.11" | ||
}, | ||
"packageManager": "[email protected].1", | ||
"packageManager": "[email protected].3", | ||
"license": "Apache-2.0" | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// @ts-check | ||
/* global globalThis */ | ||
import test from 'ava'; | ||
import '@endo/init/legacy.js'; // axios compat | ||
import { makeVstorageKit } from '@agoric/client-utils'; | ||
|
||
const io = { fetch: globalThis.fetch }; | ||
const networkConfig = { | ||
rpcAddrs: ['http://0.0.0.0:26657'], | ||
chainName: 'agoriclocal', | ||
}; | ||
|
||
test('fastUsdc is in agoricNames.instance', async t => { | ||
const { agoricNames } = await makeVstorageKit(io, networkConfig); | ||
|
||
t.log('agoricNames.instance keys', Object.keys(agoricNames.instance)); | ||
t.truthy(agoricNames.instance.fastUsdc); | ||
}); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"agoricProposal": { | ||
"source": "subdir", | ||
"$UNTIL": "write-chain-info to agoricNames until #10445 and chainHub setup", | ||
"sdk-generate": [ | ||
"orchestration/write-chain-info.js", | ||
"fast-usdc/init-fast-usdc.js submission --net A3P_INTEGRATION" | ||
], | ||
"type": "/agoric.swingset.CoreEvalProposal" | ||
}, | ||
"type": "module", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@agoric/client-utils": "dev", | ||
"@agoric/synthetic-chain": "^0.4.3", | ||
"@endo/init": "^1.1.7", | ||
"ava": "^5.3.1" | ||
}, | ||
"ava": { | ||
"concurrency": 1, | ||
"timeout": "2m", | ||
"files": [ | ||
"!submission" | ||
] | ||
}, | ||
"scripts": { | ||
"agops": "yarn --cwd /usr/src/agoric-sdk/ --silent agops" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.