Skip to content

Commit

Permalink
update portal rooch dep version (rooch-network#1789)
Browse files Browse the repository at this point in the history
fix portal deploy failed
  • Loading branch information
wow-sven authored and geometryolife committed Jun 4, 2024
1 parent 05c5733 commit 401e1d1
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 74 deletions.
4 changes: 2 additions & 2 deletions infra/rooch-portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@roochnetwork/rooch-sdk": "0.1.4",
"@roochnetwork/rooch-sdk-kit": "0.1.4",
"@roochnetwork/rooch-sdk": "0.1.5",
"@roochnetwork/rooch-sdk-kit": "0.1.5",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-table": "^8.11.8",
"class-variance-authority": "^0.7.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import CustomPagination from '@/components/custom-pagination.tsx'
import { formatCoin } from '@/utils/format.ts'
import { useToast } from '@/components/ui/use-toast'
import { ToastAction } from '@/components/ui/toast'
import { validate } from '@roochnetwork/rooch-sdk/src/address'

export const AssetsCoin = () => {
const account = useCurrentAccount()
Expand Down Expand Up @@ -148,12 +147,6 @@ export const AssetsCoin = () => {
const handleRecipientChange = (event: React.ChangeEvent<HTMLTextAreaElement>) => {
const value = event.target.value
setRecipient(value)

if (!validate(value)) {
setError('Invalid address')
} else {
setError('')
}
}

const handleTransferCoin = async () => {
Expand Down
150 changes: 87 additions & 63 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion sdk/typescript/rooch-sdk-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@roochnetwork/rooch-sdk-kit",
"author": "Rooch.network <opensource@rooch.network>",
"version": "0.1.5",
"version": "0.1.6",
"description": "Rooch SDK Kit",
"license": "Apache-2.0",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/rooch-sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@roochnetwork/rooch-sdk",
"author": "Rooch.network <opensource@rooch.network>",
"version": "0.1.5",
"version": "0.1.6",
"description": "Rooch SDK",
"license": "Apache-2.0",
"engines": {
Expand Down

0 comments on commit 401e1d1

Please sign in to comment.