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

Add zap toggle develop #4372

Draft
wants to merge 11 commits into
base: develop
Choose a base branch
from
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ambient-ts-app",
"version": "2.12.11",
"version": "2.12.13",
"private": true,
"type": "module",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/ambient-utils/constants/networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const supportedNetworks: { [x: string]: NetworkIF } =
export const vaultSupportedNetworkIds = [
'0x1', // ethereum mainnet
'0x82750', // scroll mainnet
// '0x783', // swell mainnet
'0x783', // swell mainnet
];
export const vaultSupportedNetworks = getNetworks(vaultSupportedNetworkIds);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
display: flex;
flex-direction: column;
gap: 16px;
min-height: 348px;
min-height: 420px;
position: relative;
width: 398px;
}

.content {
Expand Down Expand Up @@ -135,6 +136,16 @@
align-items: center;
justify-content: space-between;
}
.zapContainer{
background: var(--dark2);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 8px;
border-radius: 4px;
color: var(--text2)
}

.gas_row {
display: flex;
Expand Down
Loading
Loading