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

Fix import following latest change in auto-utils #63

Merged
merged 1 commit into from
Jul 10, 2024
Merged
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
2 changes: 1 addition & 1 deletion examples/node/src/address.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { address } from '@autonomys/auto-consensus'
import { address } from '@autonomys/auto-utils'
import { setup } from './utils/setup'

export const addressFunction = async () => {
Expand Down
3 changes: 2 additions & 1 deletion examples/node/src/balance.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { address, balance } from '@autonomys/auto-consensus'
import { balance } from '@autonomys/auto-consensus'
import { address } from '@autonomys/auto-utils'
import { setup } from './utils/setup'

export const balanceFunction = async () => {
Expand Down
3 changes: 2 additions & 1 deletion examples/node/src/nominate-operator.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { address, balance, nominateOperator } from '@autonomys/auto-consensus'
import { balance, nominateOperator } from '@autonomys/auto-consensus'
import { address } from '@autonomys/auto-utils'
import { setup, signAndSend } from './utils'

export const nominateOperatorFunction = async () => {
Expand Down
3 changes: 2 additions & 1 deletion examples/node/src/register-operator.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { address, balance, registerOperator } from '@autonomys/auto-consensus'
import { balance, registerOperator } from '@autonomys/auto-consensus'
import { address } from '@autonomys/auto-utils'
import { setup, signAndSend } from './utils'

export const registerOperatorFunction = async () => {
Expand Down
3 changes: 2 additions & 1 deletion examples/node/src/transfer.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { address, balance, transfer } from '@autonomys/auto-consensus'
import { balance, transfer } from '@autonomys/auto-consensus'
import { address } from '@autonomys/auto-utils'
import { setup, signAndSend } from './utils'

export const transferFunction = async () => {
Expand Down
Loading