Skip to content

Commit f340542

Browse files
committed
update dependencies
1 parent 9546a6e commit f340542

File tree

98 files changed

+2656
-3177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+2656
-3177
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,5 @@ yarn-error.log*
3333
# typescript
3434
*.tsbuildinfo
3535
next-env.d.ts
36+
37+
certificates

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### [0.16.0](https://github.com/xdevguild/buildo.dev/releases/tag/v0.16.0) (2025-03-08)
2+
- update dependencies
3+
- adjust code
4+
- add self signed SSL support for development server
5+
16
### [0.15.1](https://github.com/xdevguild/buildo.dev/releases/tag/v0.15.1) (2024-11-10)
27
- remove `@multiversx/sdk-wallet`
38
- replace `SignableMessage` with `Message`

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Please check the [About](https://www.buildo.dev/about) section to read more abou
2727

2828
### Development
2929

30+
It will run with self signed SSL. It enables encrypted HTTPS connections but is not inherently trusted by browsers or systems, requiring manual trust configuration. Some MultiversX signing providers require HTTPS even for localhost.
31+
3032
`npx buildo-begins@latest init` - from the list, choose Buildo.dev dapp.
3133

3234
Or you can do this manually:

app/(operations)/components/operations-ui/operation-info-box.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export const OperationInfoBox = memo(
8282
<a
8383
href={`${explorerAddress}/transactions/${txResult.hash}`}
8484
target="_blank"
85-
className="ml-2 break-all font-semibold underline"
85+
className="ml-2 font-semibold break-all underline"
8686
>
8787
{txResult.hash}
8888
</a>

app/(operations)/components/operations-ui/operations-checkbox-group.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const OperationsCheckboxGroup = ({
4444
render={({ field }) => {
4545
return (
4646
<FormItem key={property.name}>
47-
<div className="flex flex-row items-start space-x-3 space-y-0">
47+
<div className="flex flex-row items-start space-y-0 space-x-3">
4848
<FormControl>
4949
<Checkbox
5050
checked={

app/(operations)/components/operations-ui/operations-menu-items.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const OperationsMenuItems = ({
2525
>
2626
{Object.keys(operationsMenuConfig).map((item) => (
2727
<AccordionItem value={item} className="border-0" key={item}>
28-
<AccordionTrigger className="py-1 text-sm capitalize text-foreground">
28+
<AccordionTrigger className="text-foreground py-1 text-sm capitalize">
2929
{item.replaceAll('-', ' ')}
3030
</AccordionTrigger>
3131
<AccordionContent className="p-1 pr-[2px]">

app/(operations)/components/operations-ui/operations-radio-group.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const OperationsRadioGroup = ({
4242
>
4343
{items.map((role) => (
4444
<FormItem key={role.name}>
45-
<div className="flex flex-row items-start space-x-3 space-y-0">
45+
<div className="flex flex-row items-start space-y-0 space-x-3">
4646
<FormControl>
4747
<RadioGroupItem value={role.name} />
4848
</FormControl>

app/(operations)/components/operations-ui/operations-submit-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const OperationsSubmitButton = ({
5252
<Authenticated
5353
fallback={
5454
<>
55-
<span className="text-xs font-bold text-destructive">
55+
<span className="text-destructive text-xs font-bold">
5656
Please connect your wallet first!
5757
</span>
5858
<ButtonComponent formId={formId} disabled label={label} />

app/(operations)/fungible-tokens/change-properties/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ const ChangePropertiesPage: NextPage = () => {
1414
return (
1515
<div>
1616
<div className="mb-6 flex flex-col">
17-
<h1 className="mb-3 scroll-m-20 text-2xl font-semibold leading-none tracking-tight">
17+
<h1 className="mb-3 scroll-m-20 text-2xl leading-none font-semibold tracking-tight">
1818
Change properties of a fungible ESDT
1919
</h1>
20-
<p className="text-sm text-muted-foreground">
20+
<p className="text-muted-foreground text-sm">
2121
The manager of an ESDT token may individually change any of the
2222
properties of the token, or multiple properties at once. The token
2323
should have the canUpgrade property set to true.

app/(operations)/fungible-tokens/freeze-toggle/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ const FreezeTogglePage: NextPage = () => {
1515
return (
1616
<div>
1717
<div className="mb-6 flex flex-col">
18-
<h1 className="mb-3 scroll-m-20 text-2xl font-semibold leading-none tracking-tight">
18+
<h1 className="mb-3 scroll-m-20 text-2xl leading-none font-semibold tracking-tight">
1919
Freeze/Unfreeze fungible ESDT balance in a specific account
2020
</h1>
21-
<p className="text-sm text-muted-foreground">
21+
<p className="text-muted-foreground text-sm">
2222
The manager of an ESDT token may freeze the tokens held by a specific
2323
Account. As a consequence, no tokens may be transferred to or from the
2424
frozen Account. Freezing and unfreezing the tokens of an Account are

0 commit comments

Comments
 (0)