Skip to content

Commit 5dba920

Browse files
authored
feat: add stamp extend command (#567)
1 parent 04c7733 commit 5dba920

38 files changed

+175
-94
lines changed

package-lock.json

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
"typescript": "^4.8.4"
6363
},
6464
"dependencies": {
65-
"@upcoming/bee-js": "^0.16.0",
66-
"cafe-utility": "^27.14.0",
65+
"@ethersphere/bee-js": "^9.0.1",
66+
"cafe-utility": "^27.14.2",
6767
"chalk": "^2.4.2",
6868
"cli-progress": "^3.11.2",
6969
"ethereumjs-wallet": "^1.0.2",

src/command/addresses.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ChequebookAddressResponse, NodeAddresses } from '@upcoming/bee-js'
1+
import { ChequebookAddressResponse, NodeAddresses } from '@ethersphere/bee-js'
22
import { Optional } from 'cafe-utility'
33
import chalk from 'chalk'
44
import { LeafCommand } from 'furious-commander'

src/command/cheque/cashout.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BZZ } from '@upcoming/bee-js'
1+
import { BZZ } from '@ethersphere/bee-js'
22
import chalk from 'chalk'
33
import { LeafCommand, Option } from 'furious-commander'
44
import { createKeyValue } from '../../utils/text'

src/command/cheque/cheque-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { BZZ } from '@upcoming/bee-js'
1+
import { BZZ } from '@ethersphere/bee-js'
22
import { getFieldOrNull } from '../../utils'
33
import { createKeyValue } from '../../utils/text'
44
import { RootCommand } from '../root-command'

src/command/download.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MantarayNode } from '@upcoming/bee-js'
1+
import { MantarayNode } from '@ethersphere/bee-js'
22
import fs from 'fs'
33
import { Aggregation, LeafCommand } from 'furious-commander'
44
import { BzzAddress, makeBzzAddress } from '../utils/bzz-address'

src/command/feed/feed-command.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Reference, Topic } from '@upcoming/bee-js'
1+
import { Reference, Topic } from '@ethersphere/bee-js'
22
import Wallet from 'ethereumjs-wallet'
33
import { Option } from 'furious-commander'
44
import { exit } from 'process'

src/command/feed/print.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { MerkleTree, Topic } from '@upcoming/bee-js'
1+
import { MerkleTree, Topic } from '@ethersphere/bee-js'
22
import { Binary } from 'cafe-utility'
33
import Wallet from 'ethereumjs-wallet'
44
import { LeafCommand, Option } from 'furious-commander'

src/command/feed/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Reference } from '@upcoming/bee-js'
1+
import { Reference } from '@ethersphere/bee-js'
22
import { LeafCommand, Option } from 'furious-commander'
33
import { pickStamp } from '../../service/stamp'
44
import { stampProperties } from '../../utils/option'

src/command/feed/upload.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Reference } from '@upcoming/bee-js'
1+
import { Reference } from '@ethersphere/bee-js'
22
import { Aggregation, LeafCommand, Option } from 'furious-commander'
33
import { pickStamp } from '../../service/stamp'
44
import { stampProperties } from '../../utils/option'

0 commit comments

Comments
 (0)