@agoric/fast-usdc 0.1.1-dev-5349a2e.0.5349a2e → 0.1.1-dev-c5dea1c.0.c5dea1c

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/fast-usdc",
3
- "version": "0.1.1-dev-5349a2e.0.5349a2e",
3
+ "version": "0.1.1-dev-c5dea1c.0.c5dea1c",
4
4
  "description": "CLI and library for Fast USDC product",
5
5
  "type": "module",
6
6
  "files": [
@@ -29,13 +29,13 @@
29
29
  "ts-blank-space": "^0.6.2"
30
30
  },
31
31
  "dependencies": {
32
- "@agoric/client-utils": "0.1.1-dev-5349a2e.0.5349a2e",
33
- "@agoric/cosmic-proto": "0.4.1-dev-5349a2e.0.5349a2e",
34
- "@agoric/ertp": "0.16.3-dev-5349a2e.0.5349a2e",
35
- "@agoric/internal": "0.3.3-dev-5349a2e.0.5349a2e",
36
- "@agoric/notifier": "0.6.3-dev-5349a2e.0.5349a2e",
37
- "@agoric/orchestration": "0.1.1-dev-5349a2e.0.5349a2e",
38
- "@agoric/zoe": "0.26.3-dev-5349a2e.0.5349a2e",
32
+ "@agoric/client-utils": "0.1.1-dev-c5dea1c.0.c5dea1c",
33
+ "@agoric/cosmic-proto": "0.4.1-dev-c5dea1c.0.c5dea1c",
34
+ "@agoric/ertp": "0.16.3-dev-c5dea1c.0.c5dea1c",
35
+ "@agoric/internal": "0.3.3-dev-c5dea1c.0.c5dea1c",
36
+ "@agoric/notifier": "0.6.3-dev-c5dea1c.0.c5dea1c",
37
+ "@agoric/orchestration": "0.1.1-dev-c5dea1c.0.c5dea1c",
38
+ "@agoric/zoe": "0.26.3-dev-c5dea1c.0.c5dea1c",
39
39
  "@cosmjs/proto-signing": "^0.36.0",
40
40
  "@cosmjs/stargate": "^0.36.0",
41
41
  "@endo/base64": "^1.0.12",
@@ -81,5 +81,5 @@
81
81
  "engines": {
82
82
  "node": "^20.9 || ^22.11"
83
83
  },
84
- "gitHead": "5349a2e81641e2ffa2ab16840306d6a0a404a1dc"
84
+ "gitHead": "c5dea1c874d9ab8a0da0d559d66be9c7d611741f"
85
85
  }
package/src/cli/cli.d.ts CHANGED
@@ -7,7 +7,7 @@ import * as configLib from './config.js';
7
7
  import * as transferLib from './transfer.js';
8
8
  import { readFile as readAsync } from 'node:fs/promises';
9
9
  import { writeFile as writeAsync } from 'node:fs/promises';
10
- import { mkdirSync } from 'fs';
11
- import { existsSync } from 'fs';
10
+ import { mkdirSync } from 'node:fs';
11
+ import { existsSync } from 'node:fs';
12
12
  import { Command } from 'commander';
13
13
  //# sourceMappingURL=cli.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["cli.js"],"names":[],"mappings":"AA2BO;;;;yDA4EN;2BA1F0B,aAAa;6BACX,eAAe;sCAJrC,kBAAkB;wCAAlB,kBAAkB;0BAP2B,IAAI;2BAAJ,IAAI;wBADhC,WAAW"}
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["cli.js"],"names":[],"mappings":"AA2BO;;;;yDA4EN;2BA1F0B,aAAa;6BACX,eAAe;sCAJrC,kBAAkB;wCAAlB,kBAAkB;0BAP2B,SAAS;2BAAT,SAAS;wBADrC,WAAW"}
package/src/cli/cli.js CHANGED
@@ -1,10 +1,10 @@
1
1
  /* eslint-env node */
2
2
  /* global globalThis */
3
3
  import { Command } from 'commander';
4
- import { existsSync, mkdirSync, readFileSync } from 'fs';
5
- import { fileURLToPath } from 'url';
6
- import { dirname, resolve } from 'path';
7
- import { homedir } from 'os';
4
+ import { existsSync, mkdirSync, readFileSync } from 'node:fs';
5
+ import { fileURLToPath } from 'node:url';
6
+ import { dirname, resolve } from 'node:path';
7
+ import { homedir } from 'node:os';
8
8
  import {
9
9
  readFile as readAsync,
10
10
  writeFile as writeAsync,
@@ -1,4 +1,4 @@
1
- import { dirname } from 'path';
1
+ import { dirname } from 'node:path';
2
2
 
3
3
  /** @import { readFile as readAsync } from 'node:fs/promises' */
4
4
  /** @import { writeFile as writeAsync } from 'node:fs/promises' */