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

feat(exploration): centralized cosmwasm<->gno bridge using atomic swaps #1478

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
182 changes: 99 additions & 83 deletions Cargo.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@
"eslint-plugin-react-hooks": "^4.6.0",
"expo-dev-client": "~3.3.12",
"expo-doctor": "^1.1.3",
"open": "^10.1.0",
"patch-package": "^7.0.2",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.0.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/components/navigation/getNormalModeScreens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@
import { WalletManagerScreen } from "@/screens/WalletManager/WalletManagerScreen";
import { WalletManagerWalletsScreen } from "@/screens/WalletManager/WalletsScreen";
import { AppMode } from "@/utils/types/app-mode";
import { AtomicBridgeScreen } from "@/screens/AtomicBridge/AtomicBridgeScreen"

Check failure on line 72 in packages/components/navigation/getNormalModeScreens.tsx

View workflow job for this annotation

GitHub Actions / check-js

`@/screens/AtomicBridge/AtomicBridgeScreen` import should occur before import of `@/screens/BurnCapital/BurnCapitalScreen`

Check failure on line 72 in packages/components/navigation/getNormalModeScreens.tsx

View workflow job for this annotation

GitHub Actions / check-js

Insert `;`
// __insert_screen_import_before_me__

export const getNormalModeScreens = ({
appMode,
Expand Down Expand Up @@ -550,6 +552,12 @@
component={RakkiScreen}
options={{ header: () => null, title: screenTitle("Rakki") }}
/>
<Nav.Screen
name="AtomicBridge"

Check failure on line 556 in packages/components/navigation/getNormalModeScreens.tsx

View workflow job for this annotation

GitHub Actions / check-js

Delete `····`
component={AtomicBridgeScreen}

Check failure on line 557 in packages/components/navigation/getNormalModeScreens.tsx

View workflow job for this annotation

GitHub Actions / check-js

Delete `····`
options={{ header: () => null, title: screenTitle("AtomicBridge") }}

Check failure on line 558 in packages/components/navigation/getNormalModeScreens.tsx

View workflow job for this annotation

GitHub Actions / check-js

Delete `····`
/>

Check failure on line 559 in packages/components/navigation/getNormalModeScreens.tsx

View workflow job for this annotation

GitHub Actions / check-js

Delete `····`
{/* __insert_screen_before_me__ */}
{getPlatformScreens(screenTitle)}
</>
);
Expand Down
166 changes: 166 additions & 0 deletions packages/contracts-clients/cw-atomic-swap/CwAtomicSwap.client.ts

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

91 changes: 91 additions & 0 deletions packages/contracts-clients/cw-atomic-swap/CwAtomicSwap.types.ts

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

2 changes: 2 additions & 0 deletions packages/contracts-clients/cw-atomic-swap/index.ts

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

Loading
Loading