Skip to content
Merged
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
16 changes: 15 additions & 1 deletion src/components/TransactionFlowFooter/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,22 @@

.TransactionFlowFooter {
display: flex;
width: 100%;
align-items: center;
position: sticky;
bottom: 0;
min-height: pxToRem(80px);
background: var(--sds-clr-gray-02);
border-top: 1px solid var(--sds-clr-gray-06);

&::after {
content: "";
position: absolute;
top: 100%;
left: 0;
right: 0;
height: pxToRem(32px);
background: inherit;
}

[data-position="left"] {
margin-right: auto;
Expand Down
180 changes: 90 additions & 90 deletions src/constants/networkLimits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,36 +85,36 @@ export const MAINNET_LIMITS: NetworkLimits = {
"persistent_rent_rate_denominator": "1215",
"temp_rent_rate_denominator": "2430",
"live_soroban_state_size_window": [
"1662357400",
"1662908660",
"1664066040",
"1665408176",
"1666482300",
"1667160272",
"1668125676",
"1669611900",
"1670595716",
"1671253448",
"1671224540",
"1671640320",
"1672615484",
"1673168304",
"1673517324",
"1673999952",
"1675179452",
"1675964748",
"1676378948",
"1676740724",
"1677608224",
"1678477204",
"1678761432",
"1678831344",
"1678959532",
"1680370950",
"1681224522",
"1681328794",
"1684189646",
"1684925126"
"1408737266",
"1409741718",
"1411123066",
Comment thread
jeesunikim marked this conversation as resolved.
"1412868302",
"1413972878",
"1414796094",
"1415973386",
"1417365950",
"1418487390",
"1419609014",
"1420653030",
"1421956398",
"1423370042",
"1424345190",
"1425138434",
"1426123522",
"1426880342",
"1428064626",
"1428917338",
"1429685582",
"1430692566",
"1431738582",
"1432966854",
"1433748758",
"1434441218",
"1435714910",
"1436987874",
"1438020698",
"1438702638",
"1439412886"
],
"state_target_size_bytes": "3000000000",
"rent_fee_1kb_state_size_low": "-17000",
Expand Down Expand Up @@ -154,36 +154,36 @@ export const TESTNET_LIMITS: NetworkLimits = {
"persistent_rent_rate_denominator": "1215",
"temp_rent_rate_denominator": "2430",
"live_soroban_state_size_window": [
"2612128338",
"2612124962",
"2614010725",
"2615046576",
"2617979495",
"2619021789",
"2624988587",
"2626560445",
"2628488342",
"2629694458",
"2629795657",
"2628916792",
"2630766035",
"2630793127",
"2630929834",
"2633184345",
"2634679206",
"2635001766",
"2636879853",
"2637065150",
"2637397198",
"2639640175",
"2643215560",
"2644585455",
"2644609003",
"2644984545",
"2645314618",
"2645708175",
"2649048183",
"2650581286"
"2643550277",
"2643633084",
"2644420575",
"2644812397",
"2644903217",
"2644937613",
"2645066737",
"2645354022",
"2645437402",
"2650632242",
"2652931151",
"2654210214",
"2654269914",
"2654915972",
"2656184357",
"2657140010",
"2650553400",
"2633430374",
"2629096330",
"2630108356",
"2630401452",
"2630513268",
"2632661984",
"2633422583",
"2634580290",
"2635752234",
"2635826514",
"2636232750",
"2636644040",
"2636595830"
],
"state_target_size_bytes": "3000000000",
"rent_fee_1kb_state_size_low": "-17000",
Expand Down Expand Up @@ -223,36 +223,36 @@ export const FUTURENET_LIMITS: NetworkLimits = {
"persistent_rent_rate_denominator": "1215",
"temp_rent_rate_denominator": "2430",
"live_soroban_state_size_window": [
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017",
"47293017"
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124",
"47686124"
],
"state_target_size_bytes": "3000000000",
"rent_fee_1kb_state_size_low": "-17000",
Expand Down
Loading