Skip to content

Commit 6a9aa6d

Browse files
authored
Change names (#141)
1 parent d342559 commit 6a9aa6d

32 files changed

+136
-115
lines changed

.github/workflows/build-demo.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Lint and Build All'
22
on:
33
pull_request:
4-
types: [opened, reopened, synchronize]
4+
types: [ opened, reopened, synchronize ]
55

66
jobs:
77
test:
@@ -17,4 +17,4 @@ jobs:
1717
- run: yarn elements:build
1818
- run: yarn build
1919
- run: yarn lint
20-
- run: yarn workspace @circle-libs/react-elements build-storybook
20+
- run: yarn workspace @chainsafe/circle-react-elements build-storybook

.github/workflows/publish-storybook-gh-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
node-version: 20
3030
cache: yarn
3131
- run: yarn install
32-
- run: yarn workspace @circle-libs/react-elements build-storybook
32+
- run: yarn workspace @chainsafe/circle-react-elements build-storybook
3333
- name: Setup Pages
3434
uses: actions/configure-pages@v5
3535
- name: Upload artifact

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
Monorepo that contains the following packages:
44

5-
- [`@circle-libs/circle-demo-webapp`](packages/circle-demo-webapp) - Demo application combining Circle React components and [Circle SDK](https://developers.circle.com/)
6-
- [`@circle-libs/react-elements`](packages/circle-react-elements) - React components compatible with Circle SDK
5+
- [`@circle-libs/circle-demo-webapp`](packages/circle-demo-webapp) - Demo application combining Circle React components
6+
and [Circle SDK](https://developers.circle.com/)
7+
- [`@chainsafe/circle-react-elements`](packages/circle-react-elements) - React components compatible with Circle SDK
78
- [`@circle-libs/sdk-setup`](packages/circle-sdk-setup) - CLI tool for Circle SDK setup
89

910
## Local Development

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "circle-elements-monorepo",
2+
"name": "@chainsafe/circle-elements-monorepo",
33
"version": "0.0.1",
4-
"description": "Circle Wallet Elements - UI components and tools compatible with Circle SDK",
4+
"description": "ChainSafe React Elements powered by Circle Web3 Services - UI components and tools compatible with Circle SDK",
55
"homepage": "https://github.com/ChainSafe/web3-circle-libs#readme",
66
"bugs": {
77
"url": "https://github.com/ChainSafe/web3-circle-libs/issues"
@@ -18,9 +18,9 @@
1818
"scripts": {
1919
"demo:dev": "yarn workspace circle-demo-webapp dev",
2020
"demo:build": "yarn elements:build && yarn workspace circle-demo-webapp build",
21-
"elements:build": "yarn workspace @circle-libs/react-elements build",
22-
"elements:watch": "yarn workspace @circle-libs/react-elements watch",
23-
"elements:storybook": "yarn workspace @circle-libs/react-elements storybook",
21+
"elements:build": "yarn workspace @chainsafe/circle-react-elements build",
22+
"elements:watch": "yarn workspace @chainsafe/circle-react-elements watch",
23+
"elements:storybook": "yarn workspace @chainsafe/circle-react-elements storybook",
2424
"build": "yarn workspaces run build",
2525
"lint": "yarn workspaces run lint"
2626
},

packages/circle-demo-webapp/app/components/Sidebar/Sidebar.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ElementsWalletSet } from '@circle-libs/react-elements';
1+
import { ElementsWalletSet } from '@chainsafe/circle-react-elements';
22
import { Link, NavLink } from '@remix-run/react';
33
import { Database, LayoutDashboard } from 'lucide-react';
44
import React from 'react';

packages/circle-demo-webapp/app/hooks/useCreateWalletSet.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { ElementsWalletSet } from '@circle-libs/react-elements';
1+
import { ElementsWalletSet } from '@chainsafe/circle-react-elements';
22
import { useCallback, useState } from 'react';
33

44
import { callFetch } from '~/lib/utils';

packages/circle-demo-webapp/app/hooks/useGetTransaction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { ElementsTransactionWithToken } from '@chainsafe/circle-react-elements';
12
import { GetTransactionInput } from '@circle-fin/developer-controlled-wallets';
2-
import { ElementsTransactionWithToken } from '@circle-libs/react-elements';
33
import { useCallback, useState } from 'react';
44

55
import { callGetFetch } from '~/lib/utils';

packages/circle-demo-webapp/app/hooks/useTransactions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { ElementsTransactionWithToken } from '@chainsafe/circle-react-elements';
12
import { ListTransactionsInput } from '@circle-fin/developer-controlled-wallets';
2-
import { ElementsTransactionWithToken } from '@circle-libs/react-elements';
33
import { useCallback, useState } from 'react';
44

55
import { callGetFetch } from '~/lib/utils';

packages/circle-demo-webapp/app/lib/memcache.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { ElementsWalletSet } from '@chainsafe/circle-react-elements';
12
import { Token } from '@circle-fin/developer-controlled-wallets';
2-
import { ElementsWalletSet } from '@circle-libs/react-elements';
33

44
import { sdk } from '~/lib/sdk';
55

packages/circle-demo-webapp/app/routes/_index.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function Page() {
77
<p className="text-muted-foreground">
88
This is a demonstration application showcasing Circle&apos;s
99
developer-controlled wallets using Circle SDK and ChainSafe&apos;s{' '}
10-
@circle-libs/react-elements library.
10+
@chainsafe/circle-react-elements library.
1111
</p>
1212
</div>
1313

@@ -19,7 +19,7 @@ export default function Page() {
1919
</p>
2020
<ul className="list-disc list-inside space-y-2 text-muted-foreground ml-4">
2121
<li>Circle SDK for wallet and transaction management</li>
22-
<li>@circle-libs/react-elements library for pre-built UI components</li>
22+
<li>@chainsafe/circle-react-elements library for pre-built UI components</li>
2323
<li>Remix.js for the application framework</li>
2424
<li>Tailwind CSS for styling</li>
2525
</ul>
@@ -43,15 +43,15 @@ export default function Page() {
4343
href="https://github.com/ChainSafe/web3-circle-libs"
4444
className="text-primary hover:underline"
4545
>
46-
@circle-libs/react-elements GitHub Repository
46+
@chainsafe/circle-react-elements GitHub Repository
4747
</a>
4848
</li>
4949
<li>
5050
<a
5151
href="https://chainsafe.github.io/web3-circle-libs/"
5252
className="text-primary hover:underline"
5353
>
54-
@circle-libs/react-elements Documentation
54+
@chainsafe/circle-react-elements Documentation
5555
</a>
5656
</li>
5757
</ul>

packages/circle-demo-webapp/app/routes/api.getTransaction.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import { ElementsTransactionWithToken } from '@chainsafe/circle-react-elements';
12
import {
23
GetTransactionInput,
34
TransactionType,
45
} from '@circle-fin/developer-controlled-wallets';
5-
import { ElementsTransactionWithToken } from '@circle-libs/react-elements';
66
import { LoaderFunctionArgs } from '@remix-run/node';
77

88
import { cachedCoins } from '~/lib/memcache';

packages/circle-demo-webapp/app/routes/api.listTransactions.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { ElementsTransactionWithToken } from '@chainsafe/circle-react-elements';
12
import { ListTransactionsInput } from '@circle-fin/developer-controlled-wallets';
2-
import { ElementsTransactionWithToken } from '@circle-libs/react-elements';
33
import { LoaderFunctionArgs } from '@remix-run/node';
44

55
import { cachedCoins } from '~/lib/memcache';

packages/circle-demo-webapp/app/routes/transactions.$walletId/route.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { Transaction, TransactionDetails } from '@chainsafe/circle-react-elements';
12
import { ListTransactionsInput } from '@circle-fin/developer-controlled-wallets';
2-
import { TransactionDetails, Transaction } from '@circle-libs/react-elements';
33
import { useParams } from '@remix-run/react';
44
import { LoaderCircle } from 'lucide-react';
55
import { useEffect, useMemo, useState } from 'react';

packages/circle-demo-webapp/app/routes/wallet.$id/components/EditWalletDialog.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { Wallet } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
21
import {
32
EditWalletForm,
43
EditWalletFormInput,
54
ElementsSubmitHandler,
6-
} from '@circle-libs/react-elements';
5+
} from '@chainsafe/circle-react-elements';
6+
import { Wallet } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
77
import { FilePenLine } from 'lucide-react';
88
import { useState } from 'react';
99

packages/circle-demo-webapp/app/routes/wallet.$id/components/WalletReceiveDialog.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { WalletReceive } from '@chainsafe/circle-react-elements';
12
import { Wallet } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
2-
import { WalletReceive } from '@circle-libs/react-elements';
33
import { ArrowDown } from 'lucide-react';
44
import { useState } from 'react';
55

packages/circle-demo-webapp/app/routes/wallet.$id/components/WalletSendDialog.tsx

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
import {
2+
ElementsSubmitHandler,
3+
SendTransactionForm,
4+
SendTransactionFormInput,
5+
SuccessMessage,
6+
utils,
7+
WalletDetails,
8+
} from '@chainsafe/circle-react-elements';
19
import {
210
Balance,
311
CreateTransactionInput,
@@ -6,14 +14,6 @@ import {
614
Transaction,
715
Wallet,
816
} from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
9-
import {
10-
ElementsSubmitHandler,
11-
SendTransactionForm,
12-
SendTransactionFormInput,
13-
SuccessMessage,
14-
utils,
15-
WalletDetails,
16-
} from '@circle-libs/react-elements';
1717
import { ArrowUp, ArrowUpRight } from 'lucide-react';
1818
import { useState } from 'react';
1919

packages/circle-demo-webapp/app/routes/wallet.$id/route.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { CreateTransactionInput } from '@circle-fin/developer-controlled-wallets';
2-
import { Transaction as TransactionType } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
31
import {
42
formats,
53
Transaction,
64
WalletBalance,
75
WalletDetails,
8-
} from '@circle-libs/react-elements';
6+
} from '@chainsafe/circle-react-elements';
7+
import { CreateTransactionInput } from '@circle-fin/developer-controlled-wallets';
8+
import { Transaction as TransactionType } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
99
import { LoaderFunctionArgs } from '@remix-run/node';
1010
import { Link, useLoaderData, useParams, useRevalidator } from '@remix-run/react';
1111
import { ArrowUpRight } from 'lucide-react';

packages/circle-demo-webapp/app/routes/wallets.$id/components/EditWalletSetDialog.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
EditWalletSetFormInput,
44
ElementsSubmitHandler,
55
ElementsWalletSet,
6-
} from '@circle-libs/react-elements';
6+
} from '@chainsafe/circle-react-elements';
77
import { FilePenLine } from 'lucide-react';
88
import { useState } from 'react';
99

packages/circle-demo-webapp/app/routes/wallets.$id/components/NewWalletDialog.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { Wallet } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
21
import {
32
ElementsSubmitHandler,
43
NewWalletForm,
54
NewWalletFormInput,
65
SuccessMessage,
7-
} from '@circle-libs/react-elements';
6+
} from '@chainsafe/circle-react-elements';
7+
import { Wallet } from '@circle-fin/developer-controlled-wallets/dist/types/clients/developer-controlled-wallets';
88
import { Plus } from 'lucide-react';
99
import { useState } from 'react';
1010

packages/circle-demo-webapp/app/routes/wallets.$id/route.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
ElementsWalletSet,
44
formats,
55
WalletDetails,
6-
} from '@circle-libs/react-elements';
6+
} from '@chainsafe/circle-react-elements';
77
import { Link, useLoaderData, useParams, useRevalidator } from '@remix-run/react';
88
import { ArrowUpRight } from 'lucide-react';
99

packages/circle-demo-webapp/app/routes/wallets._index/components/NewWalletSetDialog.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
NewWalletSetForm,
55
NewWalletSetFormInput,
66
SuccessMessage,
7-
} from '@circle-libs/react-elements';
7+
} from '@chainsafe/circle-react-elements';
88
import { Plus } from 'lucide-react';
99
import { useState } from 'react';
1010

packages/circle-demo-webapp/app/routes/wallets._index/route.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { WalletSetDetails } from '@circle-libs/react-elements';
1+
import { WalletSetDetails } from '@chainsafe/circle-react-elements';
22
import { Link, useLoaderData, useRevalidator } from '@remix-run/react';
33
import { ArrowUpRight } from 'lucide-react';
44

Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
@import 'tailwindcss';
2-
@import '@circle-libs/react-elements/styles.css';
2+
@import '@chainsafe/circle-react-elements/styles.css';
33

44
@custom-variant dark (&:is(.dark *));
55

66
:root {
7-
--primary: hsl(255 82% 64%); /* Overwrite to match your theme. */
7+
--primary: hsl(255 82% 64%); /* Overwrite to match your theme. */
88
}
99

1010
.dark {
11-
--primary: hsl(255 82% 64%);
11+
--primary: hsl(255 82% 64%);
1212
}

packages/circle-demo-webapp/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "circle-demo-webapp",
2+
"name": "@chainsafe/circle-demo-webapp",
33
"version": "0.0.1",
44
"description": "Demo application combining Circle React components and Circle SDK",
55
"homepage": "https://github.com/ChainSafe/web3-circle-libs#readme",
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@circle-fin/developer-controlled-wallets": "^7.1.0",
29-
"@circle-libs/react-elements": "^0.1.0",
29+
"@chainsafe/circle-react-elements": "^0.1.0",
3030
"@radix-ui/react-dialog": "^1.1.2",
3131
"@radix-ui/react-slot": "^1.1.0",
3232
"@radix-ui/react-toast": "^1.2.4",

packages/circle-react-elements/.storybook/manager.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { create } from '@storybook/theming';
55
addons.setConfig({
66
theme: create({
77
base: 'light',
8-
brandTitle: 'Circle React Elements',
8+
brandTitle: 'ChainSafe React Elements powered by Circle Web3 Services',
99
brandImage: './circle-logo.svg',
1010
}),
1111
});
@@ -18,7 +18,7 @@ addons.register('theme-switcher', (api) => {
1818
channel.on('DARK_MODE', (isDark) => {
1919
const newTheme = create({
2020
base: isDark ? 'dark' : 'light',
21-
brandTitle: 'Circle React Elements',
21+
brandTitle: 'ChainSafe React Elements powered by Circle Web3 Services',
2222
brandImage: isDark ? './circle-logo-ondark.svg' : './circle-logo.svg',
2323
});
2424

0 commit comments

Comments
 (0)