axelscore is almost ready!
1
apps/axelar/axelscore/AxelarMap.svg
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
13491
apps/axelar/axelscore/connections.ai
Normal file
15
apps/axelar/axelscore/fix_connections_names.R
Normal file
@ -0,0 +1,15 @@
|
||||
library(stringr)
|
||||
|
||||
all.files <- list.files("www")
|
||||
|
||||
to.fix <- all.files[which(substr(all.files, 1, 5) == "conne")]
|
||||
|
||||
for(i in to.fix) {
|
||||
|
||||
new.name <- str_replace(i, "connections_", "")
|
||||
file.rename(paste0("www/", i), paste0("www/", new.name))
|
||||
|
||||
}
|
||||
|
||||
cat(paste(str_replace(to.fix, "connections_", ""), collapse = "\n"))
|
||||
|
||||
59
apps/axelar/axelscore/global.R
Normal file
@ -0,0 +1,59 @@
|
||||
library(shiny)
|
||||
library(r2d3)
|
||||
library(data.table)
|
||||
library(dynamicWidget)
|
||||
library(shinyBS)
|
||||
|
||||
load("data.RData")
|
||||
|
||||
|
||||
# map.data <- fread("map_coordinates.csv")
|
||||
# map.connections <- fread("map_connections.csv")
|
||||
|
||||
library(googlesheets4)
|
||||
gs4_deauth()
|
||||
map.data <- as.data.table(read_sheet("https://docs.google.com/spreadsheets/d/1DAYDqM1h0HSX7Otqveb8DcXNfTN8sSa4JaDDW9_F-7A/edit#gid=0",
|
||||
sheet = "map_coordinates"))
|
||||
map.connections <- as.data.table(read_sheet("https://docs.google.com/spreadsheets/d/1DAYDqM1h0HSX7Otqveb8DcXNfTN8sSa4JaDDW9_F-7A/edit#gid=0",
|
||||
sheet = "connections"))
|
||||
|
||||
|
||||
if(FALSE) {
|
||||
network.data <- list(
|
||||
nodes = data.table(station = c("axelar",
|
||||
"moonbeam", "fantom", "binance",
|
||||
"avalanche",
|
||||
"ethereum", "polygon", "arbitrum", "optimism",
|
||||
"osmosis", "cosmoshub", "evmos", "stride", "injective",
|
||||
"aptos", "sui"),
|
||||
islands = c("axelar", rep('other', 3), 'avalanche', rep("evm", 4), rep("ibc", 5), rep("soontm", 2)),
|
||||
xprop = c(0.5, #axelar
|
||||
.18, .26, .139, # other
|
||||
.848, # avalanche
|
||||
.707, .888, .869, .733, #evm
|
||||
.215, .273, .212, .134, .122, # ibc
|
||||
.159, .111), # soontm
|
||||
yprop = c(0.5,
|
||||
.41, .23, .244,
|
||||
.206,
|
||||
.729, .692, .804, .836,
|
||||
.677, .756, .847, .794, .711,
|
||||
.485, .146
|
||||
),
|
||||
selected = "grey"),
|
||||
|
||||
edges = data.table(source_chain = c("axelar", "avalanche"),
|
||||
destination_chain = c("avalanche", "axelar"),
|
||||
x1 = c(.538, .556),
|
||||
y1 = c(.500, .523),
|
||||
x2 = c(.777, .794),
|
||||
y2 = c(.267, .290),
|
||||
selected = "no")
|
||||
)
|
||||
}
|
||||
|
||||
|
||||
|
||||
#r2d3::r2d3("makesubd3.js", data= jsonlite::toJSON(network.data))
|
||||
|
||||
|
||||
5644
apps/axelar/axelscore/logo_source.ai
Normal file
137
apps/axelar/axelscore/makemapd3.js
Normal file
@ -0,0 +1,137 @@
|
||||
|
||||
var cradius = Math.min(width, height)*0.025;
|
||||
|
||||
const imglnk = '';
|
||||
|
||||
var patterns = svg.selectAll(".patterns")
|
||||
.data(r2d3.data.nodes)
|
||||
.enter()
|
||||
.append("pattern")
|
||||
.attr("id", function(d, i) { return "pattern-" + i; })
|
||||
.attr("patternUnits", "objectBoundingBox")
|
||||
.attr("width", 10)
|
||||
.attr("height", 10);
|
||||
|
||||
patterns.append("image")
|
||||
.attr("xlink:href", function(d) { return imglnk.concat(d.station, ".svg"); })
|
||||
.attr("width", cradius*2)
|
||||
.attr("height", cradius*2)
|
||||
.attr("x", 0)
|
||||
.attr("y", 0);
|
||||
|
||||
/*
|
||||
var lines = r2d3.svg.selectAll('line')
|
||||
.data(r2d3.data.edges)
|
||||
.enter()
|
||||
.append('line')
|
||||
.attr('x1', d => d.x1 * width)
|
||||
.attr('y1', d => d.y1 * height)
|
||||
.attr('x2', d => d.x2 * width)
|
||||
.attr('y2', d => d.y2 * height)
|
||||
.attr('stroke', 'black')
|
||||
.attr('stroke-width', 12.0);
|
||||
*/
|
||||
|
||||
r2d3.svg.append('image')
|
||||
.attr('href', 'AxelarMap.svg')
|
||||
.attr('preserveAspectRatio', 'none')
|
||||
.attr('width', width)
|
||||
.attr('height', height);
|
||||
|
||||
|
||||
// bridges and squids
|
||||
var connections = r2d3.svg.selectAll(".connections")
|
||||
.data(r2d3.data.edges);
|
||||
|
||||
var connectionsEnter = connections.enter()
|
||||
.append("image")
|
||||
.attr("class", "connections")
|
||||
.attr("xlink:href", d => d.connection + '.svg')
|
||||
.attr("x", d => d.xprop * width)
|
||||
.attr("y", d => d.yprop * height)
|
||||
.attr("width", d => d.wprop * width)
|
||||
.attr("height", d => d.hprop * height);
|
||||
|
||||
connectionsEnter.attr("display", d => d.used === "yes" ? "inline" : "none");
|
||||
|
||||
var connectionsUpdate = connections
|
||||
.attr("xlink:href", d => d.connection + '.svg')
|
||||
.attr("x", d => d.xprop * width)
|
||||
.attr("y", d => d.yprop * height)
|
||||
.attr("width", d => d.wprop * width)
|
||||
.attr("height", d => d.hprop * height);
|
||||
|
||||
connectionsUpdate.attr("display", d => d.used === "yes" ? "inline" : "none");
|
||||
|
||||
connections.exit().remove();
|
||||
|
||||
var outlinecircles = r2d3.svg
|
||||
.selectAll('.outlinecircles')
|
||||
.data(r2d3.data.nodes)
|
||||
.enter()
|
||||
.append('circle')
|
||||
.attr('r', cradius*1.4)
|
||||
.attr('cx', function(d) { return d.xprop * width; })
|
||||
.attr('cy', function(d) { return d.yprop * height; })
|
||||
.attr("stroke", function(d) {return d.island_color;})
|
||||
.attr("fill", "transparent")
|
||||
.attr("stroke-width", d => d.selected === "yes" ? 1.5 : 0);
|
||||
|
||||
outlinecircles.exit().remove();
|
||||
|
||||
outlinecircles.transition()
|
||||
.duration(1)
|
||||
.attr("stroke-width", d => d.selected === "yes" ? 2 : 0);
|
||||
|
||||
|
||||
var highlightcircles = r2d3.svg
|
||||
.selectAll('.highlightcircles')
|
||||
.data(r2d3.data.nodes)
|
||||
.enter()
|
||||
.append('circle')
|
||||
.attr('r', cradius*1.2)
|
||||
.attr('cx', function(d) { return d.xprop * width; })
|
||||
.attr('cy', function(d) { return d.yprop * height; })
|
||||
.attr("fill", d => d.selected === "yes" ? d.island_color : "transparent");
|
||||
|
||||
|
||||
|
||||
|
||||
highlightcircles.exit().remove();
|
||||
|
||||
highlightcircles.transition()
|
||||
.duration(1)
|
||||
.attr("fill", d => d.selected === "yes" ? d.island_color : "transparent");
|
||||
//.style("filter", d => d.selected === "yes" ? "url(#glow)" : "");
|
||||
|
||||
|
||||
// now we get to the 'real' circles
|
||||
var circles = r2d3.svg
|
||||
.selectAll('.circles')
|
||||
.data(r2d3.data.nodes)
|
||||
.enter()
|
||||
.append('circle')
|
||||
.attr('r', cradius)
|
||||
.attr('cx', function(d) { return d.xprop * width; })
|
||||
.attr('cy', function(d) { return d.yprop * height; })
|
||||
.attr("fill", function(d, i) { return "url(#pattern-" + i + ")"; })
|
||||
.attr("station", function(d) { return d.station; })
|
||||
.on("mouseover", function(){
|
||||
Shiny.setInputValue(
|
||||
"station_clicked",
|
||||
d3.select(this).attr("station"),
|
||||
{priority: "event"}
|
||||
);
|
||||
})
|
||||
.on("mouseout", function() {
|
||||
Shiny.setInputValue(
|
||||
"station_clicked",
|
||||
"",
|
||||
{priority: "event"}
|
||||
);
|
||||
});
|
||||
|
||||
circles.exit().remove();
|
||||
|
||||
|
||||
//r2d3::r2d3("makesubd3.js", data= jsonlite::toJSON(network.data))
|
||||
11
apps/axelar/axelscore/map_connections.csv
Normal file
@ -0,0 +1,11 @@
|
||||
connection,xprop,yprop,wprop,hprop
|
||||
bridge_ava,0.59725,0.23825,0.18525,0.193
|
||||
bridge_evm,0.56475,0.56225,0.1165,0.1165
|
||||
bridge_ibc,0.30775,0.56525,0.12825,0.1285
|
||||
bridge_other,0.2865,0.29825,0.154,0.153
|
||||
squid_ava_evm,0.8,0.36,0.151,0.16
|
||||
squid_ava_ibc,0.37225,0.3245,0.472,0.448
|
||||
squid_evm_ibc,0.38125,0.76725,0.17175,0.066
|
||||
squid_evm_other,0.381,0.16625,0.42425,0.37975
|
||||
squid_ibc_other,0.202,0.29875,0.065,0.30875
|
||||
squid_ava_other,0.39,0.10875,0.27175,0.06125
|
||||
|
251
apps/axelar/axelscore/server.R
Normal file
@ -0,0 +1,251 @@
|
||||
function(input, output, session) {
|
||||
|
||||
# initialize network data, it has no selected column yet
|
||||
network.data <- reactiveValues(nodes = map.data, edges = map.connections)
|
||||
|
||||
# initialize the active address to be an empty string
|
||||
active.addy <- reactiveValues(addy = "")
|
||||
|
||||
# subset user data based on the active address
|
||||
thisUserData <- reactive({
|
||||
user.data[sender %in% active.addy$addy]
|
||||
})
|
||||
|
||||
# initialize the values & create the two settings links in the right column
|
||||
settings.links <- reactiveValues(random = "see a random address",
|
||||
everything = "fill out the whole map")
|
||||
|
||||
output$randomaddylink <- renderUI({
|
||||
actionLink(inputId = "randomaddy", label = settings.links$random)
|
||||
})
|
||||
|
||||
output$everythinglink <- renderUI({
|
||||
actionLink(inputId = "everything", label = settings.links$everything)
|
||||
})
|
||||
|
||||
# watch the random address link
|
||||
observeEvent(input$randomaddy, {
|
||||
|
||||
# case 1 - link has not been clicked, assign a random address
|
||||
if(settings.links$random == "see a random address") {
|
||||
|
||||
active.addy$addy <- sample(user.data$sender, round(runif(1, 1, 5)))
|
||||
|
||||
|
||||
settings.links$everything <- "fill out the whole map"
|
||||
settings.links$random <- "reset"
|
||||
|
||||
# case 2 do the reset
|
||||
} else {
|
||||
|
||||
active.addy$addy <- ""
|
||||
|
||||
settings.links$everything <- "fill out the whole map"
|
||||
settings.links$random <- "see a random address"
|
||||
|
||||
}
|
||||
|
||||
|
||||
})
|
||||
|
||||
# watch the fill out everything link
|
||||
observeEvent(input$everything, {
|
||||
# case 1 - link has not been clicked, assign special fake address to fill whole map
|
||||
if(settings.links$everything == "fill out the whole map") {
|
||||
|
||||
active.addy$addy <- "0000"
|
||||
|
||||
settings.links$everything <- "reset"
|
||||
settings.links$random <- "see a random address"
|
||||
|
||||
# case 2 do the reset
|
||||
} else {
|
||||
|
||||
active.addy$addy <- ""
|
||||
|
||||
settings.links$everything <- "fill out the whole map"
|
||||
settings.links$random <- "see a random address"
|
||||
|
||||
}
|
||||
|
||||
|
||||
})
|
||||
|
||||
updateNetworkData <- reactive({
|
||||
|
||||
# if fill out the whole map is active:
|
||||
if(active.addy$addy[1] == "0000") {
|
||||
|
||||
network.data$nodes[, selected := "yes"]
|
||||
network.data$edges[, used := "yes"]
|
||||
|
||||
} else {
|
||||
|
||||
visited.towns <- unique(c(thisUserData()$source_chain,
|
||||
thisUserData()$destination_chain))
|
||||
|
||||
used.connections <- unique(unlist(user.conns[active.addy$addy]))
|
||||
|
||||
network.data$nodes[, selected := ifelse(station %in% visited.towns, "yes", "no")]
|
||||
network.data$edges[, used := ifelse(connection %in% used.connections, "yes", "no")]
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
output$d3 <- renderD3({
|
||||
|
||||
tmp <- input$randomaddy
|
||||
updateNetworkData()
|
||||
|
||||
map.data <- reactiveValuesToList(network.data)
|
||||
|
||||
r2d3(
|
||||
data = jsonlite::toJSON(map.data),
|
||||
script = "makemapd3.js",
|
||||
options(r2d3.theme = list(
|
||||
background = "transparent"))
|
||||
)
|
||||
|
||||
})
|
||||
|
||||
|
||||
scoreSatellite <- reactive({
|
||||
max(c(min(which(sum(thisUserData()[method == "satellite"]$n_transfers) <= c(0, 1, 5, Inf))) - 1,
|
||||
min(which(sum(thisUserData()[method == "satellite"]$total_usd) <= c(0, 50, 200, Inf))) - 1))
|
||||
})
|
||||
|
||||
bonusSatellite <- reactive({
|
||||
if(sum(thisUserData()[method == "satellite"]$n_transfers) > 10 |
|
||||
sum(thisUserData()[method == "satellite"]$total_usd) > 999) {
|
||||
1
|
||||
} else {
|
||||
0
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
scoreSquid <- reactive({
|
||||
max(c(min(which(sum(thisUserData()[method == "squid"]$n_transfers) <= c(0, 2, 5, Inf))) - 1,
|
||||
min(which(sum(thisUserData()[method == "squid"]$total_usd) <= c(0, 50, 200, Inf))) - 1))
|
||||
})
|
||||
|
||||
bonusSquid <- reactive({
|
||||
if(sum(thisUserData()[method == "squid"]$n_transfers) > 10 |
|
||||
sum(thisUserData()[method == "squid"]$total_usd) > 999) {
|
||||
1
|
||||
} else {
|
||||
0
|
||||
}
|
||||
})
|
||||
|
||||
scoreUsage <- reactive({uniqueN(thisUserData()$method)})
|
||||
|
||||
|
||||
scorePassport <- reactive({
|
||||
uniqueN(c(thisUserData()$source_chain, thisUserData()$destination_chain)) +
|
||||
nrow(thisUserData()[source_chain %in% c("ethereum", "avalanche", "polygon", "arbitrum", "binance") &
|
||||
destination_chain == "osmo"]) +
|
||||
nrow(thisUserData()[destination_chain %in% c("ethereum", "avalanche", "polygon", "arbitrum", "binance") &
|
||||
source_chain == "osmo"])
|
||||
})
|
||||
|
||||
|
||||
totalScore <- reactive({scoreSatellite() + bonusSatellite() +
|
||||
scoreSquid() + bonusSquid() + scoreUsage() +
|
||||
scorePassport()})
|
||||
|
||||
getPersona <- reactive({
|
||||
"Cosmonaut"
|
||||
})
|
||||
|
||||
|
||||
output$usertotalscore <- renderText(totalScore())
|
||||
|
||||
output$satellitescore <- renderText(scoreSatellite())
|
||||
output$satellitebonus <- renderText(paste0("+", bonusSatellite()))
|
||||
output$squidscore <- renderText(scoreSquid())
|
||||
output$squidbonus <- renderText(paste0("+", bonusSquid()))
|
||||
output$usagescore <- renderText(scoreUsage())
|
||||
output$passportscore <- renderText(scorePassport())
|
||||
|
||||
|
||||
getUserPersona <- reactive({
|
||||
|
||||
chain.types <- unique(c(thisUserData()$source_chain_type, thisUserData()$destination_chain_type))
|
||||
|
||||
if( sum(c("ibc", "evm") %in% chain.types) == 2 ) {
|
||||
#"omnivore"
|
||||
|
||||
which.subpersona <- as.numeric(sum(thisUserData()$n_transfers) >= 5) + 1
|
||||
|
||||
data.table(persona = c("travelling omnivore", "powerful omnivore")[which.subpersona],
|
||||
icon1 = "globe",
|
||||
icon2 = c("plane", "crown")[which.subpersona])
|
||||
|
||||
} else if( sum("ibc" %in% chain.types) ) {
|
||||
"cosmonaut"
|
||||
|
||||
which.subpersona <- max(which(sum(thisUserData()$n_transfers) >= c(0, 2, 5)))
|
||||
|
||||
data.table(persona = c("junior cosmonaut", "wide-eyed cosmonaut", "powerful cosmonaut")[which.subpersona],
|
||||
icon1 = "moon",
|
||||
icon2 = c("child", "eye", "crown")[which.subpersona])
|
||||
|
||||
} else if( sum("eth" %in% chain.types) ) {
|
||||
"ethplorer"
|
||||
|
||||
which.subpersona <- max(which(sum(thisUserData()$n_transfers) >= c(0, 2, 5)))
|
||||
|
||||
data.table(persona = c("junior ethplorer", "wide-eyed ethplorer", "powerful ethplorer")[which.subpersona],
|
||||
icon1 = "map-signs",
|
||||
icon2 = c("child", "eye", "crown")[which.subpersona])
|
||||
|
||||
} else {
|
||||
data.table(persona = "User Persona", icon1 = "question-circle", icon2 = "question-circle")
|
||||
}
|
||||
})
|
||||
|
||||
output$persona <- renderText(getUserPersona()$persona)
|
||||
output$personaicon1 <- renderUI(icon(getUserPersona()$icon2))
|
||||
output$personaicon2 <- renderUI(icon(getUserPersona()$icon1))
|
||||
|
||||
|
||||
output$clickedstation <- renderText({
|
||||
|
||||
# Trip Summary...Avalanche...09 Visits...Last Visit: Jan 2 2009
|
||||
|
||||
if(!is.null(input$station_clicked)) {
|
||||
if(input$station_clicked == "") {
|
||||
"Trip Summary...hover to 👀"
|
||||
} else {
|
||||
|
||||
x <- input$station_clicked
|
||||
|
||||
paste0("Trip Summary...",
|
||||
paste(collapse = "", rep(".", 9 - nchar(x))), x,
|
||||
"...",
|
||||
sprintf("%02.f", nrow(thisUserData()[source_chain == input$station_clicked | destination_chain == input$station_clicked])),
|
||||
" Visits...Last Visit: ",
|
||||
format(max(thisUserData()$last_transfer), format = "%b %d %Y") )
|
||||
|
||||
|
||||
}
|
||||
} else {
|
||||
"Trip Summary...hover to 👀"
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
|
||||
output$mostvisitedchain <- renderText({
|
||||
paste0("Your Most Visited Chain: ",
|
||||
rbind(thisUserData()[, .N, by = list(chain = source_chain)],
|
||||
thisUserData()[, .N, by = list(chain = destination_chain)]) %>%
|
||||
.[, list(visits = sum(N)), by = chain] %>%
|
||||
.[order(-visits)] %>%
|
||||
.[1, chain]
|
||||
)
|
||||
})
|
||||
|
||||
|
||||
}
|
||||
170
apps/axelar/axelscore/ui.R
Normal file
@ -0,0 +1,170 @@
|
||||
|
||||
fluidPage(
|
||||
tags$head(
|
||||
tags$link(rel = "stylesheet", type = "text/css", href = "shiny.css"),
|
||||
#tags$script(src = "rudderstack.js"),
|
||||
tags$link(rel = "icon", href = "flipside.svg")
|
||||
),
|
||||
|
||||
fluidRow(class = "flex-container",
|
||||
column(1, div(class = "top-border"), id = "leftcol",
|
||||
div(class = "diagonal-lines"),
|
||||
br(),
|
||||
"Axelar Trends",
|
||||
br(),br(),
|
||||
paste0("#1 Destination: ", axelar.stats$no1_destination),
|
||||
br(),br(),
|
||||
paste0("#1 Source: ", axelar.stats$no1_source),
|
||||
br(),br(),
|
||||
paste0("Avg Xfer ", axelar.stats$avg_xfer_usd),
|
||||
hr(),
|
||||
"News U Can Use",
|
||||
br(),br(),
|
||||
a(href = "https://flipsidecrypto.xyz/hess/optimism-axelar-bridge-analysis-1gFzQ_",
|
||||
"Optimism + Axelar Bridge Analysis",
|
||||
onclick = "rudderstack.track('flowscored-click-github')",
|
||||
target = "_blank"),
|
||||
br(),
|
||||
a(href = "https://flipsidecrypto.xyz/panda-gXSkiX/axelar-arb-everywhere-jADwcy",
|
||||
"Axelar: ARB Everywhere",
|
||||
onclick = "rudderstack.track('flowscored-click-github')",
|
||||
target = "_blank"),
|
||||
br(),
|
||||
a(href = "https://flipsidecrypto.xyz/m-zamani-WmWD3E/squid-launch-analysis-I0O-nv",
|
||||
"Squid Launch Analysis",
|
||||
onclick = "rudderstack.track('flowscored-click-github')",
|
||||
target = "_blank"),
|
||||
div(class = "last-child-border")),
|
||||
column(10,
|
||||
fluidRow(class = "titlerow",
|
||||
column(2, div(class = "upperwords", "No. 1 Choice for Bridgemen and Boatsmen")),
|
||||
column(1, div(class = "upperwords", "ALL ARE SCORED")),
|
||||
column(6, class = "title", img(src = "logo.svg", height = '75px')),
|
||||
column(1, div(class = "upperwords", "COURTESY OF FLIPSIDE")),
|
||||
column(2, class = "upperwords",
|
||||
#div(id = "icons",
|
||||
div(
|
||||
div(a(id = 'fork',
|
||||
href = "https://github.com/FlipsideCrypto/user_metrics/tree/main/apps/flow/flowscored",
|
||||
#img(src = "github.svg", width = "30px"),
|
||||
"get code",
|
||||
onclick = "rudderstack.track('flowscored-click-github')",
|
||||
target = "_blank")),
|
||||
bsTooltip(id = "fork",
|
||||
title = "Fork this App",
|
||||
placement = "bottom", trigger = "hover"),
|
||||
icon('anchor'),
|
||||
div(a(id = "flippy",
|
||||
href = "https://flipsidecrypto.xyz/edit/queries/5278823a-aa1e-4677-910d-51a49cb7cda0",
|
||||
#img(src = "flipside.svg", width = "30px"),
|
||||
"fork queries",
|
||||
onclick = "rudderstack.track('flowscored-click-flipside')",
|
||||
target = "_blank")),
|
||||
bsTooltip(id = "flippy",
|
||||
title = "Get the Data",
|
||||
placement = "bottom", trigger = "hover")
|
||||
)
|
||||
)
|
||||
),
|
||||
fluidRow(id = "mainsection",
|
||||
column(8, class = "mapcol",
|
||||
div(id = "holdd3", d3Output("d3", height = "700px", width = "700px"),
|
||||
textOutput("clickedstation"))),
|
||||
|
||||
column(4,
|
||||
div(class = "connect", dynamic_buttonInput("my_wallet")),
|
||||
|
||||
hr(),
|
||||
div(class = "promo", "learn to use Axelar >>"),
|
||||
|
||||
hr(),
|
||||
|
||||
br(),
|
||||
div(class = "title", "YOUR SCORE + USER PERSONA"),
|
||||
|
||||
div(class = "scorecontainer",
|
||||
div(class = "leftbox",
|
||||
div(class = "score", textOutput("usertotalscore")),
|
||||
div(class = "scoretitle", "Total Score")
|
||||
)
|
||||
),
|
||||
|
||||
div(class = "scorecontainer",
|
||||
div(class = "leftbox",
|
||||
div(class = "score", textOutput("squidscore")),
|
||||
div(class = "scoretitle", "Squid Score")
|
||||
),
|
||||
div(class = "rightbox",
|
||||
div(class = "score", textOutput("squidbonus")),
|
||||
div(class = "scoretitle", "Squid Bonus")
|
||||
)
|
||||
),
|
||||
|
||||
div(class = "scorecontainer",
|
||||
div(class = "leftbox",
|
||||
div(class = "score", textOutput("satellitescore")),
|
||||
div(class = "scoretitle", "Satellite Score")
|
||||
),
|
||||
div(class = "rightbox",
|
||||
div(class = "score", textOutput("satellitebonus")),
|
||||
div(class = "scoretitle", "Satellite Bonus")
|
||||
)
|
||||
),
|
||||
|
||||
|
||||
|
||||
div(class = "scorecontainer",
|
||||
div(class = "leftbox",
|
||||
div(class = "score", textOutput("usagescore")),
|
||||
div(class = "scoretitle", "Usage Score")
|
||||
),
|
||||
div(class = "rightbox",
|
||||
div(class = "score", textOutput("passportscore")),
|
||||
div(class = "scoretitle", "Passport Bonus")
|
||||
)
|
||||
),
|
||||
div(class = "scorecontainer",
|
||||
div(class = "leftbox",
|
||||
div(class = "score", uiOutput("personaicon1"), uiOutput("personaicon2")),
|
||||
div(class = "scoretitle", textOutput("persona"))
|
||||
)),
|
||||
hr(),
|
||||
div(class = "promo", "click to see your special deal! >>")
|
||||
) # close right column 4
|
||||
) #close middle fluid row
|
||||
), # close middle column
|
||||
column(1, id ="rightcol",
|
||||
div(class = "diagonal-lines"),
|
||||
br(),
|
||||
uiOutput("randomaddylink"),
|
||||
hr(),
|
||||
uiOutput("everythinglink"),
|
||||
hr(),
|
||||
textOutput("mostvisitedchain"),
|
||||
hr(),
|
||||
"Where Next?",
|
||||
br(),br(),
|
||||
a(href = "https://flipsidecrypto.xyz",
|
||||
div(img(src = "flipside.svg", width = "28px"), HTML("<br>FLIPSIDE")),
|
||||
onclick = "rudderstack.track('flowscored-click-flipside')",
|
||||
target = "_blank"),
|
||||
br(),
|
||||
a(href = "https://axelar.network",
|
||||
div(img(src = "axelar.svg", width = "30px"), HTML("<br>AXELAR")),
|
||||
onclick = "rudderstack.track('flowscored-click-axelar')",
|
||||
target = "_blank"),
|
||||
br(),
|
||||
a(href = "https://www.squidrouter.com",
|
||||
div(img(src = "squid_logo.svg", width = "30px"), HTML("<br>SQUID")),
|
||||
onclick = "rudderstack.track('flowscored-click-squid')",
|
||||
target = "_blank"),
|
||||
br(),
|
||||
a(href = "https://satellite.money",
|
||||
div(img(src = "satellite_logo.svg", width = "30px"), HTML("<br>SATELLITE")),
|
||||
onclick = "rudderstack.track('flowscored-click-satellite')",
|
||||
target = "_blank"),
|
||||
br(),
|
||||
div(class = "last-child-border"))
|
||||
)
|
||||
)
|
||||
|
||||
249
apps/axelar/axelscore/update_data.R
Normal file
@ -0,0 +1,249 @@
|
||||
source("~/data_science/util/util_functions.R")
|
||||
|
||||
|
||||
|
||||
user.data <- QuerySnowflake("with satellite_token_address_coingecko_token_address_chain AS (
|
||||
SELECT COLUMN1 as AXL_TOKEN_ADDRESS, COLUMN2 AS CHAIN_TOKEN_ADDRESS, COLUMN3 as BLOCKCHAIN FROM (
|
||||
VALUES
|
||||
('uatom','ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2','cosmos'),
|
||||
('uaxl','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x6e4e624106cb12e168e6533f8ec7c82263358940','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x467719ad09025fcc6cf6f8311755809d45a5e5f3','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x44c784266cf024a60e8acf2427b9857ace194c5d','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x8b1f4432f943c465a973fedc6d7aa50fc96f1f65','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x1b7c03bc2c25b8b5989f4bc2872cf9342cec80ae','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x23ee2343b892b1bb63503a4fabc840e0e2c6810f','ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E', 'cosmos'),
|
||||
('0x80d18b1c9ab0c9b5d6a6d5173575417457d00a12','ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2','cosmos'),
|
||||
('0x33f8a5029264bcfb66e39157af3fea3e2a8a5067','ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2','cosmos'),
|
||||
('0x27292cf0016e5df1d8b37306b2a98588acbd6fca','ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2','cosmos'),
|
||||
('avalanche-uusdc','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0xddc9e2891fa11a4cc5c223145e8d14b44f3077c9','0x6b175474e89094c44da98b954eedeac495271d0f', 'ethereum'),
|
||||
('0xc5fa5669e326da8b2c35540257cd48811f40a36b','0x6b175474e89094c44da98b954eedeac495271d0f', 'ethereum'),
|
||||
('0x4914886dbb8aad7a7456d471eaab10b06d42348d','0x853d955acef822db058eb8505911ed77f175b99e','ethereum'),
|
||||
('0x53adc464b488be8c5d7269b9abbce8ba74195c3a','0x853d955acef822db058eb8505911ed77f175b99e','ethereum'),
|
||||
('frax-wei','0x853d955acef822db058eb8505911ed77f175b99e','ethereum'),
|
||||
('0x853d955acef822db058eb8505911ed77f175b99e','0x853d955acef822db058eb8505911ed77f175b99e','ethereum'),
|
||||
('0x750e4c4984a9e0f12978ea6742bc1c5d248f40ed','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0xfab550568c688d5d8a52c7d794cb93edc26ec0ec','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0x4268b8f0b87b6eae5d897996e6b845ddbd99adf3','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0xeb466342c4d449bc9f53a865d5cb90586f405215','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0xceed2671d8634e3ee65000edbbee66139b132fbf','0xdac17f958d2ee523a2206206994597c13d831ec7', 'ethereum'),
|
||||
('0xf976ba91b6bb3468c91e4f02e68b37bc64a57e66','0xdac17f958d2ee523a2206206994597c13d831ec7', 'ethereum'),
|
||||
('0x7f5373ae26c3e8ffc4c77b7255df7ec1a9af52a6','0xdac17f958d2ee523a2206206994597c13d831ec7', 'ethereum'),
|
||||
('0xdac17f958d2ee523a2206206994597c13d831ec7','0xdac17f958d2ee523a2206206994597c13d831ec7', 'ethereum'),
|
||||
('uusdt','0xdac17f958d2ee523a2206206994597c13d831ec7', 'ethereum'),
|
||||
('0x4fabb145d64652a948d72533023f6e7a623c7c53','0xe9e7cea3dedca5984780bafc599bd69add087d56', 'bsc'),
|
||||
('busd-wei','0xe9e7cea3dedca5984780bafc599bd69add087d56', 'bsc'),
|
||||
('dai-wei','0x6b175474e89094c44da98b954eedeac495271d0f', 'ethereum'),
|
||||
('polygon-uusdc','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('uusdc','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0x6b175474e89094c44da98b954eedeac495271d0f','0x6b175474e89094c44da98b954eedeac495271d0f', 'ethereum'),
|
||||
('0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0x2791bca1f2de4661ed88a30c99a7a9449aa84174', '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e','0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', 'ethereum'),
|
||||
('wavax-wei','0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', 'avalanche'),
|
||||
('0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7','0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7', 'avalanche'),
|
||||
('0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2','0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2','ethereum'),
|
||||
('weth-wei','0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2','ethereum'),
|
||||
('wbtc-satoshi','0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', 'ethereum'),
|
||||
('0x2260fac5e5542a773aa44fbcfedf7c193bc2c599','0x2260fac5e5542a773aa44fbcfedf7c193bc2c599', 'ethereum'),
|
||||
('dot-planck','0xffffffffffffffffffffffffffffffffffffffff','polkadot'),
|
||||
('wftm-wei','0x4e15361fd6b4bb609fa63c81a2be19d873717870','ethereum'),
|
||||
('link-wei','0x514910771af9ca656af840dff83e8264ecf986ca','ethereum'),
|
||||
('0x514910771af9ca656af840dff83e8264ecf986ca','0x514910771af9ca656af840dff83e8264ecf986ca','ethereum'),
|
||||
('mkr-wei','0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2','ethereum'),
|
||||
('wbnb-wei','0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c','bsc'),
|
||||
('0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c','0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c','bsc'),
|
||||
('wmatic-wei','0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270','polygon'),
|
||||
('0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270','0x0d500b1d8e8ef31e21c99d1db9a6444d3adf1270','polygon')
|
||||
)
|
||||
),
|
||||
|
||||
squid_hr_sender_og_dest_amount AS (
|
||||
SELECT 'squid' as method, DATE_TRUNC('hour', BLOCK_TIMESTAMP) as hr, tx_hash, sender,
|
||||
token_address as AXL_TOKEN_ADDRESS, token_symbol, amount, source_chain, destination_chain
|
||||
FROM axelar.core.ez_squid
|
||||
),
|
||||
|
||||
satellite_hr_sender_og_dest_amount AS (
|
||||
SELECT 'satellite' as method, DATE_TRUNC('hour', BLOCK_TIMESTAMP) as hr, tx_hash, sender,
|
||||
token_address as AXL_TOKEN_ADDRESS, token_symbol, amount, source_chain, destination_chain
|
||||
FROM axelar.core.ez_satellite
|
||||
),
|
||||
|
||||
all_sends AS
|
||||
(
|
||||
SELECT * FROM squid_hr_sender_og_dest_amount
|
||||
UNION (SELECT * FROM satellite_hr_sender_og_dest_amount)
|
||||
),
|
||||
|
||||
all_sends_labeled_id AS (
|
||||
SELECT * FROM all_sends
|
||||
INNER JOIN satellite_token_address_coingecko_token_address_chain USING (AXL_TOKEN_ADDRESS)
|
||||
),
|
||||
|
||||
-- Infill missing hour prices with most recent non-missing hour price
|
||||
all_sends_priced AS (
|
||||
SELECT *,
|
||||
coalesce(price, lag(price) IGNORE NULLS over (partition by CHAIN_TOKEN_ADDRESS, BLOCKCHAIN order by HR)) as imputed_price
|
||||
FROM all_sends_labeled_id
|
||||
LEFT JOIN (
|
||||
SELECT TOKEN_ADDRESS as CHAIN_TOKEN_ADDRESS,
|
||||
DATE_TRUNC('hour', HOUR) as hr, BLOCKCHAIN,
|
||||
price
|
||||
FROM crosschain.core.fact_hourly_prices
|
||||
WHERE provider = 'coingecko'
|
||||
)
|
||||
USING(CHAIN_TOKEN_ADDRESS, BLOCKCHAIN, hr)
|
||||
),
|
||||
|
||||
-- For transactions BEFORE fact_hourly_token_price has a price
|
||||
-- Use the FIRST price ever recorded in fact_hourly_token_price
|
||||
-- Otherwise, use actual hourly OR imputed (most recent) hourly price
|
||||
-- Close -> price -> imputed_price -> final_price
|
||||
all_sends_priced_final AS (
|
||||
SELECT *,
|
||||
coalesce(imputed_price,
|
||||
FIRST_VALUE(imputed_price IGNORE NULLS) OVER (PARTITION BY CHAIN_TOKEN_ADDRESS, BLOCKCHAIN ORDER BY HR)) AS final_price
|
||||
FROM all_sends_priced
|
||||
)
|
||||
|
||||
-- gotta send at least $1 between chains
|
||||
SELECT SENDER, source_chain, destination_chain, method,
|
||||
max(hr) AS last_transfer,
|
||||
count(*) as n_transfers,
|
||||
sum(amount*final_price) as total_usd
|
||||
FROM all_sends_priced_final
|
||||
GROUP BY SENDER, source_chain, destination_chain, method
|
||||
HAVING total_usd >= 1")
|
||||
|
||||
# saved.user.data <- copy(user.data)
|
||||
# user.data <- copy(saved.user.data)
|
||||
|
||||
user.data[source_chain == "osmo", source_chain := "osmosis"]
|
||||
user.data[destination_chain == "osmo", source_chain := "osmosis"]
|
||||
|
||||
user.data[source_chain == "cosmos", source_chain := "cosmoshub"]
|
||||
user.data[destination_chain == "cosmos", source_chain := "cosmoshub"]
|
||||
|
||||
|
||||
library(googlesheets4)
|
||||
gs4_deauth()
|
||||
chains <- read_sheet("https://docs.google.com/spreadsheets/d/1DAYDqM1h0HSX7Otqveb8DcXNfTN8sSa4JaDDW9_F-7A/edit#gid=0", sheet = "map_coordinates")
|
||||
chains <- as.data.table(chains)
|
||||
|
||||
# chains[station %notin% c("aptos", "sui")]$station[which(chains[station %notin% c("aptos", "sui")]$station %notin% unique(c(user.data$source_chain, user.data$destination_chain)))]
|
||||
# sort(unique(c(user.data$source_chain, user.data$destination_chain)))
|
||||
|
||||
user.data <- user.data[source_chain %in% chains$station | destination_chain %in% chains$station]
|
||||
|
||||
user.data <- merge(user.data,
|
||||
chains[, list(source_chain = station, source_island = island, source_chain_type = chain_type)],
|
||||
by = "source_chain")
|
||||
user.data <- merge(user.data,
|
||||
chains[, list(destination_chain = station, destination_island = island, destination_chain_type = chain_type)],
|
||||
by = "destination_chain")
|
||||
|
||||
user.data[, conn_alpha := paste(sort(c(source_island, destination_island)), collapse = "|"),
|
||||
by = list(sender, source_island, destination_island, method)]
|
||||
|
||||
user.conns <- lapply(user.data[source_island != destination_island]$sender, function(i) {
|
||||
#print(i)
|
||||
user.conns <- user.data[sender == i,
|
||||
.N,
|
||||
by = list(method,conn_alpha)][order(method, conn_alpha)]
|
||||
user.conns[, conn1 := strsplit(conn_alpha, "|", fixed = TRUE)[[1]][1], by = conn_alpha]
|
||||
user.conns[, conn2 := strsplit(conn_alpha, "|", fixed = TRUE)[[1]][2], by = conn_alpha]
|
||||
|
||||
all.conns <- c()
|
||||
|
||||
for(i in 1:nrow(user.conns)) {
|
||||
|
||||
if(user.conns[i]$method == "squid") {
|
||||
|
||||
all.conns <- c(all.conns, paste("squid", user.conns[i]$conn1, user.conns[i]$conn2, sep = "_"))
|
||||
|
||||
} else {
|
||||
|
||||
all.conns <- c(all.conns, paste0("bridge_", c(user.conns[i]$conn1, user.conns[i]$conn2)[which(c(user.conns[i]$conn1, user.conns[i]$conn2) != "axelar")]))
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if(length(all.conns) > 0) {
|
||||
return(unique(all.conns))
|
||||
} else {
|
||||
return("")
|
||||
}
|
||||
|
||||
})
|
||||
|
||||
names(user.conns) <- user.data[source_island != destination_island]$sender
|
||||
|
||||
|
||||
# write a function to spit out the user persona:
|
||||
|
||||
# Persona: Cosmonaut
|
||||
# Only transacts ibc
|
||||
# Cosmonaut Levels:
|
||||
# Base: 1tx
|
||||
# Wide-Eyed: 2 to 4 tx
|
||||
# Power: 5+ tx
|
||||
#
|
||||
# Persona: Etherererer
|
||||
# Only transacts in evm
|
||||
# Etherererer Levels:
|
||||
# Base: 1tx
|
||||
# Wide-Eyed: 2 to 4 tx
|
||||
# Power: 5+ tx
|
||||
#
|
||||
# Omnivore
|
||||
# Transacts in >1 island
|
||||
# Traveler: has transacted evm to ibc or ibc to evm
|
||||
# Power-User: Have done 5+ transactions across islands
|
||||
# getUserPersona <- function(tmp.user.data) {
|
||||
# if( sum(c("ibc", "evm") %in% chain.types) == 2 ) {
|
||||
# #"omnivore"
|
||||
#
|
||||
# which.subpersona <- as.numeric(sum(tmp.user.data$n_transfers) >= 5) + 1
|
||||
#
|
||||
# data.table(persona = c("travelling omnivore", "powerful omnivore")[which.subpersona],
|
||||
# icon1 = "globe",
|
||||
# icon2 = c("plane", "crown")[which.subpersona])
|
||||
#
|
||||
# } else if( sum("ibc" %in% chain.types) ) {
|
||||
# "cosmonaut"
|
||||
#
|
||||
# which.subpersona <- max(which(sum(tmp.user.data$n_transfers) >= c(0, 2, 5)))
|
||||
#
|
||||
# data.table(persona = c("junior cosmonaut", "wide-eyed cosmonaut", "powerful cosmonaut")[which.subpersona],
|
||||
# icon1 = "moon",
|
||||
# icon2 = c("child", "eye", "crown")[which.subpersona])
|
||||
#
|
||||
# } else {
|
||||
# "ethplorer"
|
||||
#
|
||||
# which.subpersona <- max(which(sum(tmp.user.data$n_transfers) >= c(0, 2, 5)))
|
||||
#
|
||||
# data.table(persona = c("junior ethplorer", "wide-eyed ethplorer", "powerful ethplorer")[which.subpersona],
|
||||
# icon1 = "map-signs",
|
||||
# icon2 = c("child", "eye", "crown")[which.subpersona])
|
||||
#
|
||||
# }
|
||||
# }
|
||||
|
||||
# axelar stats:
|
||||
axelar.stats <- data.table(no1_destination = user.data[, .N, by = destination_chain][order(-N)][1]$destination_chain,
|
||||
no1_source = user.data[, .N, by = source_chain][order(-N)][1]$source_chain,
|
||||
avg_xfer_usd = paste0("$", format(round(sum(user.data$total_usd) / sum(user.data$n_transfers)), big.mark = ",")))
|
||||
|
||||
|
||||
save(user.data, user.conns, axelar.stats, file = "data.RData")
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1
apps/axelar/axelscore/www/AxelarMap.svg
Normal file
|
After Width: | Height: | Size: 1.6 MiB |
4467
apps/axelar/axelscore/www/acrechain.svg
Normal file
|
After Width: | Height: | Size: 326 KiB |
1
apps/axelar/axelscore/www/aptos.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 127"><defs><style>.cls-1{fill:none;}.cls-2{opacity:.5;}</style></defs><g id="Aptos" class="cls-2"><path d="M.67,58c.34-2.26,.56-4.49,1.02-6.68,.54-2.59,1.3-5.13,1.93-7.7,.18-.75,.54-1,1.33-1,11.22,.03,22.45,.02,33.67,.02,8.55,0,17.09-.02,25.64,.01,2.53,.01,4.57-.86,6.19-2.82,1.04-1.26,2.13-2.48,3.23-3.69,.71-.78,1.58-1.26,2.68-1.25,.93,0,1.74,.26,2.37,.97,1.29,1.43,2.63,2.82,3.86,4.31,1.43,1.73,3.11,2.53,5.43,2.51,11.36-.09,22.72-.03,34.07-.05,.7,0,1.02,.21,1.26,.9,1.62,4.6,2.45,9.35,2.99,14.17,.01,.1-.02,.2-.04,.38-.41,0-.8,0-1.19,0-14.79,0-29.57-.04-44.36,.03-2.3,.01-4.04-.65-5.44-2.44-.99-1.26-2.11-2.42-3.16-3.64-.83-.95-1.72-1.74-3.1-1.75-1.05,0-1.97,.23-2.71,.98-1.67,1.7-3.35,3.39-4.96,5.15-1.05,1.15-2.24,1.68-3.81,1.68-18.81-.03-37.61-.02-56.42-.03-.13,0-.25-.03-.47-.06Z"/><path d="M1.62,75.37c.52-.02,1.04-.07,1.57-.07,7.53,0,15.06,0,22.59,0,5.36,0,10.72-.04,16.08,.03,2.5,.03,4.45-.86,6.04-2.75,1.14-1.35,2.32-2.67,3.54-3.95,1.48-1.56,3.56-1.57,5.03-.01,1.45,1.54,2.86,3.12,4.22,4.74,1.2,1.42,2.66,1.98,4.51,1.98,17.63-.04,35.26-.03,52.89-.04,2.43,0,4.86,0,7.45,0-.4,1.66-.67,3.27-1.19,4.8-1.19,3.46-2.49,6.88-3.79,10.3-.08,.22-.52,.43-.8,.44-1.36,.06-2.73,.06-4.1,.06-19.35,0-38.69-.03-58.04,.01-2.01,0-3.5-.67-4.75-2.17-1.23-1.48-2.54-2.9-3.82-4.35-1.4-1.58-3.93-1.75-5.48-.31-1.08,1-2.08,2.08-3.11,3.14-.69,.71-1.36,1.44-2.03,2.18-.96,1.06-2.12,1.5-3.56,1.5-8.17-.03-16.34,0-24.52,0-1.07,0-2.14,0-3.21-.06-.24-.01-.58-.19-.68-.39-.48-1.01-.85-2.08-1.32-3.09-1.75-3.71-2.59-7.69-3.55-11.64-.02-.07,0-.15,.02-.35Z"/><path d="M113.76,25.64c-.82,0-1.64,0-2.45,0-2.92,0-5.84,0-8.76,.01-1.81,.01-3.24-.7-4.41-2.08-1.28-1.52-2.61-2.99-3.96-4.44-1.81-1.95-3.91-2.02-5.82-.15-1.66,1.63-3.25,3.34-4.84,5.05-.99,1.07-2.16,1.61-3.62,1.61-4.07,0-8.14,.02-12.22,.02-17.07,0-34.13-.01-51.2-.02-1.07,0-2.14,0-3.25-.11C23.92,11.88,37.68,3.24,54.92,1.08c24.09-3.01,43.61,5.69,58.92,24.21l-.08,.35Z"/><path d="M17.49,106.56c3.17,.1,4.99-1.82,6.72-3.89,.65-.78,1.33-1.54,2-2.3,1.8-2.07,4-2.11,5.85-.08,1.28,1.41,2.53,2.84,3.75,4.29,1.21,1.44,2.71,1.98,4.6,1.97,16.69-.05,33.38-.04,50.06-.04,5.41,0,10.82,0,16.23,0,.87,0,1.75,0,2.76,0-21.89,24.54-64.82,28.66-91.98,.05Z"/></g><circle class="cls-1" cx="63.5" cy="63.5" r="63.5"/></svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
1
apps/axelar/axelscore/www/arbitrum.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg height="6.861939mm" viewBox="0 0 7.1560364 6.8619385" width="7.156036mm" xmlns="http://www.w3.org/2000/svg"><g stroke-width=".264583" transform="matrix(1.1967478 0 0 1.1475608 -166.608634 -178.535216)"><path d="m142.20762 161.55758c1.66688 0 2.98979-1.34937 2.98979-2.98979 0-1.66687-1.34937-2.98979-2.98979-2.98979-1.66687 0-2.98979 1.34938-2.98979 2.98979 0 1.64042 1.34938 2.98979 2.98979 2.98979z" fill="#2c374b"/><path clip-rule="evenodd" d="m143.84804 157.483c-.0265-.0265-1.32292-.79375-1.48167-.84667-.0529-.0264-.18521-.0529-.26458-.0264-.0794.0264-1.45521.8202-1.50813.87312-.0265.0265-.0529.0794-.0794.10583-.0265.0529-.0265.0794-.0265 1.00542v.9525l.18521.10583c.10583.0529.18521.10584.18521.10584.0265 0 1.27-1.98438 1.27-2.01084 0-.0265-.29104-.0265-.37042 0-.10583.0265-.18521.0794-.23812.1323-.0265.0264-.18521.29104-.39688.58208-.18521.29104-.34396.55562-.34396.55562s0-.26458 0-.635v-.66145l.0265-.0265c.0529-.0529 1.40229-.82021 1.45521-.82021.0265 0 .0529 0 .37042.18521.10583.0529.39687.21166.635.37041.23812.1323.44979.26459.47625.29105l.0265.0265v1.37584l-.66145-1.03188c-.0265-.0529-.0529-.10583-.0794-.13229s-.0265.0529-.18521.3175c-.0265.0265-.0529.0794-.0529.10583l-.0265.0529.0265.0265.0264.0265s0 .0265.0265.0265l.0529.0794s0 .0265.0265.0265c.0265.0265.0529.0794.0529.10583v.0265l.55563.89958-.0529.0265c-.0265.0265-.0529.0265-.0794.0265l-.68792-1.05833-.0265-.0265-.0529.10583-.26459.42334.52917.84666c-.0794.0529-.52917.37042-.55563.37042-.0265 0-.635-.39688-.60854-.42333 0 0 .18521-.3175.39688-.68792.18521-.3175.42333-.71438.58208-.97896.18521-.3175.26458-.47625.26458-.47625s-.13229 0-.29104 0h-.26458l-.60854 1.00542c-.21167.37041-.42334.71437-.52917.89958-.18521.0265-.23812.0794-.23812.0794l-.0265.0529.47625.26459c.26458.15875.50271.29104.55562.3175.0794.0529.21167.0529.26459.0529.0529-.0265 1.42875-.82021 1.50812-.87312.0265-.0265.0529-.0529.0794-.10584l.0265-.0794v-.87313-.87312l-.0265-.0529c0-.0529-.0529-.10583-.0529-.13229z" fill="#fff" fill-rule="evenodd"/><path d="m143.71575 159.09696-.79375-1.21708-.29104.47625.76729 1.24354.34396-.15875z" fill="#24a2ee"/><path d="m143.34533 159.75842-.79375-1.21709-.34396.52917.635 1.00542.39688-.15875z" fill="#24a2ee"/><path clip-rule="evenodd" d="m140.75241 157.72113 1.45521-.84667 1.45521.84667v1.69333l-1.45521.84667-1.08479-.60855-.13229.23813 1.19062.68792c.0265.0264.0529.0264.0794 0l1.66687-.9525c.0265-.0265.0529-.0529.0529-.0794v-1.905c0-.0265-.0265-.0529-.0529-.0794l-1.66687-.9525c-.0265-.0265-.0529-.0265-.0794 0l-1.66687.92604c-.0265.0265-.0529.0529-.0529.0794v1.905c0 .0265.0265.0529.0529.0794l.34396.18521.15875-.23813-.23813-.13229v-1.69333z" fill="#98bcdc" fill-rule="evenodd"/><g fill="#fff"><path d="m142.84262 157.72113h-.55562l-1.29646 2.11666.44979.26459z"/><path d="m141.44033 157.93279c.13229-.21166.50271-.21166.66146-.18521l-1.27 2.0373c-.0529-.0265-.15875-.0794-.23813-.1323-.10583-.0529-.13229-.0529-.13229-.13229v-.10583c.29104-.42333.84667-1.27.97896-1.48167z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
12
apps/axelar/axelscore/www/assetmantle.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<svg width="126" height="126" viewBox="0 0 126 126" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M108 0H18C8.05887 0 0 8.05887 0 18V108C0 117.941 8.05887 126 18 126H108C117.941 126 126 117.941 126 108V18C126 8.05887 117.941 0 108 0Z" fill="url(#paint0_radial_198_1012)"/>
|
||||
<path opacity="0.95" d="M57 33H27C24.6131 33 22.3239 33.9482 20.636 35.636C18.9482 37.3239 18 39.6131 18 42V84C18.0034 85.9049 18.6112 87.7596 19.7358 89.2971C20.8604 90.8346 22.4438 91.9757 24.2581 92.556C26.0725 93.1363 28.0242 93.126 29.8323 92.5265C31.6405 91.9271 33.2117 90.7693 34.32 89.22L64.32 47.22C65.2779 45.8747 65.8471 44.2917 65.9654 42.6445C66.0836 40.9972 65.7463 39.3492 64.9905 37.8808C64.2346 36.4124 63.0893 35.1804 61.6799 34.3195C60.2706 33.4586 58.6515 33.0021 57 33ZM33 54C31.8133 54 30.6533 53.6481 29.6666 52.9888C28.6799 52.3295 27.9108 51.3925 27.4567 50.2961C27.0026 49.1997 26.8838 47.9933 27.1153 46.8295C27.3468 45.6656 27.9182 44.5965 28.7574 43.7574C29.5965 42.9182 30.6656 42.3468 31.8295 42.1153C32.9933 41.8838 34.1997 42.0026 35.2961 42.4567C36.3925 42.9108 37.3295 43.6799 37.9888 44.6666C38.6481 45.6533 39 46.8133 39 48C39 49.5913 38.3679 51.1174 37.2426 52.2426C36.1174 53.3679 34.5913 54 33 54Z" fill="#0D0A03"/>
|
||||
<path opacity="0.95" d="M79.5 90C83.6421 90 87 86.6421 87 82.5C87 78.3579 83.6421 75 79.5 75C75.3579 75 72 78.3579 72 82.5C72 86.6421 75.3579 90 79.5 90Z" fill="#0D0A03"/>
|
||||
<path opacity="0.95" d="M108 42V84C108.003 86.2459 107.167 88.4119 105.655 90.0727C104.143 91.7334 102.065 92.7688 99.8283 92.9755C97.5919 93.1823 95.3591 92.5454 93.5683 91.1899C91.7775 89.8345 90.5582 87.8585 90.1499 85.65C90.054 85.1051 90.0038 84.5532 89.9999 84V77.16C89.9839 75.2602 89.3671 73.4142 88.2379 71.8863C87.1086 70.3585 85.5249 69.2272 83.7134 68.6544C81.9019 68.0817 79.9557 68.0969 78.1533 68.6978C76.351 69.2988 74.7851 70.4547 73.6799 72L68.9999 78.57L61.4699 89.13C60.0337 90.9561 57.9471 92.1561 55.6465 92.479C53.3458 92.8019 51.0095 92.2227 49.1261 90.8625C47.2428 89.5023 45.9584 87.4665 45.5416 85.181C45.1248 82.8956 45.6079 80.5374 46.8899 78.6L76.8899 36.6C77.719 35.4943 78.7917 34.5944 80.0247 33.9701C81.2577 33.3458 82.6179 33.0139 83.9999 33H98.9999C101.387 33 103.676 33.9482 105.364 35.636C107.052 37.3239 108 39.6131 108 42Z" fill="#FFFDFA"/>
|
||||
<defs>
|
||||
<radialGradient id="paint0_radial_198_1012" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(63 63) scale(63)">
|
||||
<stop offset="0.473958" stop-color="#FFC640"/>
|
||||
<stop offset="1" stop-color="#F2AF13"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.5 KiB |
5
apps/axelar/axelscore/www/avalanche.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M24.2453 5.14648H5.73462V21.9816H24.2453V5.14648Z" fill="white" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M29.9801 15.0001C29.9801 23.2734 23.2734 29.9801 15.0001 29.9801C6.72681 29.9801 0.0200195 23.2734 0.0200195 15.0001C0.0200195 6.72681 6.72681 0.0200195 15.0001 0.0200195C23.2734 0.0200195 29.9801 6.72681 29.9801 15.0001ZM10.7552 20.9614H7.84794C7.23705 20.9614 6.9353 20.9614 6.75131 20.8437C6.55258 20.7148 6.43114 20.5014 6.41642 20.2658C6.40537 20.0488 6.55627 19.7838 6.85803 19.2538L14.0363 6.60117C14.3417 6.06388 14.4963 5.79524 14.6913 5.69588C14.9011 5.58917 15.1513 5.58917 15.3611 5.69588C15.5561 5.79524 15.7107 6.06388 16.0161 6.60117L17.4918 9.17718L17.4993 9.19033C17.8292 9.76673 17.9965 10.059 18.0696 10.3658C18.1505 10.7007 18.1505 11.054 18.0696 11.3889C17.996 11.698 17.8304 11.9924 17.4955 12.5775L13.7249 19.2428L13.7152 19.2599C13.3831 19.841 13.2148 20.1356 12.9816 20.3578C12.7277 20.6007 12.4222 20.7773 12.0873 20.8768C11.7819 20.9614 11.4396 20.9614 10.7552 20.9614ZM18.0968 20.9614H22.2625C22.8771 20.9614 23.1862 20.9614 23.3704 20.8401C23.569 20.7112 23.6941 20.494 23.7053 20.2586C23.7158 20.0486 23.5682 19.7939 23.279 19.2948C23.269 19.2778 23.259 19.2605 23.2489 19.2429L21.1622 15.6733L21.1385 15.6331C20.8453 15.1372 20.6973 14.8869 20.5072 14.7901C20.2975 14.6833 20.0508 14.6833 19.8411 14.7901C19.6498 14.8894 19.4952 15.1507 19.1898 15.6769L17.1106 19.2466L17.1034 19.2589C16.7991 19.7843 16.647 20.0468 16.6579 20.2622C16.6727 20.4978 16.7941 20.7148 16.9928 20.8437C17.1731 20.9614 17.4823 20.9614 18.0968 20.9614Z" fill="#E84142" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
15
apps/axelar/axelscore/www/axelar.svg
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
</style>
|
||||
<path class="st0" d="M500,982.5c266.5,0,482.5-216,482.5-482.5c0-266.5-216-482.5-482.5-482.5c-266.5,0-482.5,216-482.5,482.5
|
||||
C17.5,766.5,233.5,982.5,500,982.5z"/>
|
||||
<path d="M543.6,440.8l228.9-228.9L685.7,125L500.2,310.5L314.7,125l-86.9,86.8l228.9,228.9c12,12,27.7,18,43.4,18
|
||||
C515.9,458.8,531.6,452.8,543.6,440.8z M875,685.4L689.5,499.8L875,314.3l-86.9-86.8L559.2,456.4c-24,24-24,62.9,0,86.8l228.9,228.9
|
||||
L875,685.4L875,685.4z M499.8,689.5L685.4,875l86.8-86.8L543.3,559.2c-24-24-62.9-24-86.9,0L227.5,788.2l86.9,86.8L499.8,689.5z
|
||||
M440.8,543.6c11.5-11.5,18-27.1,18-43.4c0-16.3-6.5-31.9-18-43.4L211.9,227.8L125,314.7l185.5,185.5L125,685.7l86.9,86.8
|
||||
L440.8,543.6L440.8,543.6z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.1 KiB |
83
apps/axelar/axelscore/www/binance.svg
Normal file
@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1999.8 1999.8" style="enable-background:new 0 0 1999.8 1999.8;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill:#EFB80B;}
|
||||
.st2{fill:#FEFEFE;}
|
||||
</style>
|
||||
<circle class="st0" cx="999.9" cy="999.9" r="999.9"/>
|
||||
<path class="st1" d="M958.9,0h82c5.9,2,12,1.4,18,1.7c57.5,3.2,114.3,11.4,170.3,24.7c154.3,36.6,292.5,105.7,413.7,208
|
||||
c146.7,123.8,249.8,277.2,309.2,459.8c19.1,58.9,32.2,119.1,39.9,180.6c3.4,27.6,5.5,55.3,7.1,83.1c0.2,9,0.5,18,0.8,27v56
|
||||
c-1.6,0.8-0.9,2.3-1,3.6c-2.6,58.4-10.1,116.1-22.9,173.1c-38.6,172-117.3,323.5-235.6,454.1c-107.6,118.7-236.6,206.5-386.3,263.6
|
||||
c-72.9,27.8-148.2,46.4-225.6,56.4c-28.8,3.7-57.7,5.9-86.6,7.4c-9.3,0.2-18.7,0.5-28,0.8h-55c-0.7-1.4-2-0.9-3.1-1
|
||||
c-21.3-0.9-42.6-2.6-63.8-4.8c-55.8-5.9-110.6-16.4-164.5-31.8c-144.7-41.1-273.8-111.2-386.6-210.5
|
||||
c-138.6-121.9-236.4-270.9-293.5-446.6c-18.7-57.6-31.5-116.6-39.3-176.6c-3.7-28.8-5.9-57.7-7.4-86.6c-0.2-8.7-0.5-17.3-0.7-26
|
||||
c0-11,0-22,0-33c0.2-8.3,0.5-16.7,0.7-25c2.3-47.5,7.4-94.6,16.1-141.3C37.5,705.1,75.8,600,132.7,502
|
||||
c96.6-166.5,229.8-295.5,399.8-386c127.6-68,264-105.6,408.3-114.2C946.9,1.4,953,2,958.9,0z M869.5,1209.7c0,42.7,0,85.3-0.1,128
|
||||
c0,3.4,1,5.4,4,7.1c41.1,24,82.2,48,123.2,72.2c2.9,1.7,4.8,1.5,7.6-0.1c40.3-23.7,80.6-47.4,121.1-70.9c4.2-2.4,5.9-4.9,5.9-10
|
||||
c-0.2-84.5-0.1-169-0.2-253.4c0-3.9,1.2-5.9,4.5-7.8c72.3-42.3,144.5-84.7,216.7-127c3.1-1.8,4.4-3.7,4.4-7.4
|
||||
c-0.4-48.7-0.6-97.3-0.7-146c0-3.3-1-5-3.8-6.7c-41.2-24.1-82.4-48.4-123.5-72.7c-2.8-1.7-4.8-1.6-7.6,0.1
|
||||
c-72.4,42.8-144.8,85.4-217.1,128.2c-3.1,1.8-5.2,2-8.5,0.1c-71.9-42.8-144-85.5-215.9-128.3c-2.8-1.6-4.7-1.8-7.6-0.1
|
||||
c-41.2,24.4-82.5,48.8-123.9,73c-3,1.7-4,3.7-4,7.1c0.1,48.3,0.1,96.6,0,145c0,3.6,1,5.6,4.2,7.5c72.3,42.3,144.5,84.7,216.7,127
|
||||
c3.5,2,4.7,4.2,4.7,8.2C869.5,1125,869.5,1167.4,869.5,1209.7L869.5,1209.7z M774.9,1551.2v-5.9c0-47.8,0-95.6,0.1-143.4
|
||||
c0-4-1.2-6.2-4.7-8.2c-71.9-42.2-143.8-84.5-215.7-126.7c-3.5-2.1-4.6-4.4-4.6-8.3c-0.1-84.5-0.3-168.9-0.4-253.4
|
||||
c0-4-1.2-6.2-4.7-8.2c-32.6-19.1-65.1-38.4-97.6-57.6c-9.3-5.5-18.5-10.9-28.5-16.8v5.7c0,136.3,0,272.6-0.1,408.9
|
||||
c0,3.7,0.9,5.8,4.3,7.8c101.6,59.4,203,119,304.5,178.5C743.1,1532.6,758.6,1541.7,774.9,1551.2L774.9,1551.2z M1581,922.8
|
||||
c-2.2,1.2-3.7,2-5.1,2.8c-40.4,23.9-80.8,47.8-121.2,71.6c-3.5,2.1-4.6,4.3-4.6,8.3c-0.1,84.5-0.3,168.9-0.4,253.4
|
||||
c0,4-1.2,6.2-4.7,8.2c-71.9,42.2-143.8,84.5-215.7,126.7c-2.7,1.6-4.6,2.8-4.6,6.7c0.2,48.8,0.1,97.6,0.2,146.4
|
||||
c0,1.2-0.7,2.7,0.9,3.7c2-1.1,4-2.3,6-3.5c114.7-67.3,229.4-134.6,344.2-201.7c3.9-2.3,5.1-4.6,5.1-9
|
||||
c-0.1-135.8-0.1-271.6-0.1-407.3L1581,922.8L1581,922.8z M644.3,525.9c1.5,1,2.2,1.5,2.8,1.9c41.4,24.5,82.8,48.9,124.2,73.6
|
||||
c3.3,2,5.4,1.1,8.1-0.5c71.6-42.4,143.3-84.7,214.8-127.2c3.9-2.3,6.7-2.5,10.7-0.1c71.6,42.4,143.3,84.6,215,126.9
|
||||
c2.9,1.7,5.2,3,8.9,0.8c40.2-24,80.4-47.7,120.7-71.6c1.8-1.1,3.9-1.7,5.2-3.6c-0.9-1.7-2.6-2.2-4-3
|
||||
c-115.3-67.9-230.7-135.8-346-203.7c-3.8-2.2-6.4-2.5-10.3-0.1c-102.4,60.6-205,121-307.5,181.5C673,509,659,517.2,644.3,525.9
|
||||
L644.3,525.9z M680.2,658.6c-0.7-1.8-1.9-2.1-2.8-2.7c-41.6-24.5-83.2-49-124.7-73.5c-2.4-1.4-4-1.1-6.3,0.2
|
||||
c-41.2,24.5-82.5,48.9-123.8,73.2c-2.8,1.7-3.8,3.4-3.8,6.7c0.1,48.5,0.1,97,0,145.5c0,3.3,1.1,5,3.9,6.6
|
||||
c40.7,24,81.4,48.1,122.1,72.1c1.3,0.8,2.8,2.6,4.3,1.7c1.4-0.9,0.6-3.1,0.6-4.7c0-47.8,0.1-95.6,0-143.5c0-3.4,1-5.4,4-7.1
|
||||
c18.4-10.7,36.8-21.5,55.1-32.3C632.5,686.7,656.3,672.7,680.2,658.6L680.2,658.6z M1449.6,889.4c2.3-1.3,3.7-2,5.1-2.8
|
||||
c40.6-23.9,81.2-47.8,121.8-71.6c3.3-1.9,4.5-4,4.5-7.8c-0.2-48-0.2-96,0-144c0-3.8-1.2-5.9-4.5-7.8c-40.9-23.9-81.8-48-122.6-72.2
|
||||
c-3.1-1.8-5.3-2.1-8.5-0.2c-40.6,24.2-81.3,48.2-122,72.3c-1.4,0.8-3.2,1.2-3.8,3.2c2,1.2,3.9,2.4,5.9,3.6
|
||||
c39.8,23.6,79.6,47.2,119.5,70.6c3.5,2,4.7,4.3,4.7,8.2c-0.1,47.2-0.1,94.3-0.1,141.5L1449.6,889.4L1449.6,889.4z M868.8,1529.5
|
||||
c0,24.2,0,48.3,0,72.5c0,2.7,0.5,4.5,3.2,6c41.5,24.4,82.9,48.9,124.2,73.4c2.7,1.6,4.6,1.4,7.2-0.1c41.1-24.3,82.3-48.5,123.5-72.7
|
||||
c3.1-1.8,4.2-3.8,4.2-7.4c-0.1-47.8-0.1-95.6-0.1-143.4c0-5.7,0-5.7-5.1-2.7c-40.6,23.9-81.2,47.8-121.7,71.8
|
||||
c-3.2,1.9-5.6,2.1-9,0.1c-40.6-24.2-81.3-48.2-122-72.3c-3.6-2.1-4.5-2-4.5,2.5C868.9,1481.2,868.8,1505.3,868.8,1529.5
|
||||
L868.8,1529.5z M1130.8,658.3c-1.4-1-2.2-1.6-3-2.1c-41.7-24.6-83.5-49.1-125.2-73.8c-2.8-1.7-4.5-0.8-6.7,0.5
|
||||
c-40.8,24.2-81.7,48.3-122.5,72.5c-1.3,0.8-3.2,1.2-3.7,3.1c0.4,0.3,0.8,0.7,1.2,0.9c41.8,24.8,83.7,49.5,125.4,74.3
|
||||
c2.6,1.5,4.4,1.2,6.8-0.2c21.3-12.7,42.7-25.2,64.1-37.8C1088.2,683.4,1109.2,671,1130.8,658.3L1130.8,658.3z M1224.9,1286
|
||||
c2.3-1.3,3.9-2.1,5.4-3c40.3-23.6,80.7-47.3,121.1-70.8c3.3-1.9,4.5-3.9,4.5-7.8c-0.2-48-0.1-95.9-0.1-143.9c0-1.6,0.4-3.3-0.4-4.8
|
||||
c-1.2-0.3-2,0.4-2.8,0.9c-41.5,24.6-83.1,49.2-124.7,73.6c-2.6,1.5-3.1,3.3-3.1,6c0.1,37.6,0,75.3,0,112.9L1224.9,1286L1224.9,1286z
|
||||
M644.2,1054.8c-0.1,1.8-0.2,2.7-0.2,3.6c0,49.1,0,98.3-0.1,147.4c0,3.1,1.3,4.4,3.6,5.8c41.2,24.1,82.4,48.2,123.7,72.4
|
||||
c1.1,0.6,2,1.8,3.7,1.1v-4.9c0-47.6,0-95.3,0.1-142.9c0-3.8-1.1-5.9-4.4-7.8c-35.5-20.8-70.8-41.8-106.2-62.7
|
||||
C657.9,1062.9,651.3,1059,644.2,1054.8L644.2,1054.8z"/>
|
||||
<path class="st2" d="M1041.9,1999.1c0,0.2,0,0.5,0,0.8h-28C1023.2,1999.6,1032.6,1999.3,1041.9,1999.1z"/>
|
||||
<path class="st2" d="M1999.1,957.9c0.2,0,0.5,0,0.8,0v27C1999.6,975.9,1999.3,966.9,1999.1,957.9z"/>
|
||||
<path class="st2" d="M0.7,1041.9c-0.2,0-0.5,0-0.7,0c0-8.7,0-17.3,0-26C0.2,1024.6,0.5,1033.2,0.7,1041.9L0.7,1041.9z"/>
|
||||
<path class="st2" d="M0,957.9c0.2,0,0.5,0,0.7,0c-0.2,8.3-0.5,16.7-0.7,25V957.9z"/>
|
||||
<path class="st2" d="M774.9,1551.2c-16.3-9.6-31.8-18.6-47.3-27.7c-101.5-59.5-203-119.1-304.5-178.5c-3.4-2-4.3-4.1-4.3-7.8
|
||||
c0.1-136.3,0.1-272.6,0.1-408.9v-5.7c10,5.9,19.3,11.3,28.5,16.8c32.5,19.2,65,38.5,97.6,57.6c3.5,2,4.7,4.2,4.7,8.2
|
||||
c0.1,84.5,0.3,168.9,0.4,253.4c0,3.9,1.1,6.2,4.6,8.3c71.9,42.2,143.8,84.5,215.7,126.7c3.4,2,4.7,4.2,4.7,8.2
|
||||
c-0.2,47.8-0.1,95.6-0.1,143.4L774.9,1551.2L774.9,1551.2z"/>
|
||||
<path class="st2" d="M1581,922.8v6.4c0,135.8,0,271.6,0.1,407.3c0,4.3-1.2,6.7-5.1,9c-114.8,67.1-229.5,134.4-344.2,201.7
|
||||
c-2,1.2-4,2.3-6,3.5c-1.7-1-0.9-2.5-0.9-3.7c0-48.8,0-97.6-0.2-146.4c0-3.8,1.9-5.2,4.6-6.7c71.9-42.2,143.7-84.6,215.7-126.7
|
||||
c3.5-2,4.7-4.2,4.7-8.2c0.1-84.5,0.3-168.9,0.4-253.4c0-3.9,1.1-6.2,4.6-8.3c40.5-23.7,80.8-47.7,121.2-71.6
|
||||
C1577.3,924.8,1578.8,924,1581,922.8L1581,922.8z"/>
|
||||
<path class="st2" d="M680.2,658.6c-23.9,14.1-47.7,28.1-71.5,42.1c-18.4,10.8-36.7,21.7-55.1,32.3c-3,1.7-4,3.7-4,7.1
|
||||
c0.1,47.8,0.1,95.6,0,143.5c0,1.6,0.8,3.8-0.6,4.7c-1.5,1-3-0.9-4.3-1.7c-40.7-24-81.4-48.2-122.1-72.1c-2.8-1.6-3.9-3.3-3.9-6.6
|
||||
c0.1-48.5,0.1-97,0-145.5c0-3.3,1-5,3.8-6.7c41.3-24.3,82.6-48.7,123.8-73.2c2.2-1.3,3.8-1.7,6.3-0.2c41.5,24.6,83.2,49,124.7,73.5
|
||||
C678.3,656.5,679.5,656.8,680.2,658.6L680.2,658.6z"/>
|
||||
<path class="st2" d="M1449.6,889.4v-6.9c0-47.2-0.1-94.3,0.1-141.5c0-4-1.2-6.2-4.7-8.2c-39.9-23.4-79.7-47-119.5-70.6
|
||||
c-2-1.2-4-2.4-5.9-3.6c0.7-2,2.5-2.4,3.8-3.2c40.7-24.1,81.4-48.1,122-72.3c3.2-1.9,5.4-1.7,8.5,0.2c40.8,24.2,81.7,48.2,122.6,72.2
|
||||
c3.3,1.9,4.5,4,4.5,7.8c-0.2,48-0.2,96,0,144c0,3.8-1.2,5.9-4.5,7.8c-40.7,23.8-81.2,47.7-121.8,71.6
|
||||
C1453.4,887.3,1451.9,888.1,1449.6,889.4L1449.6,889.4z"/>
|
||||
<path class="st2" d="M868.8,1529.5c0-24.2,0.1-48.3-0.1-72.5c0-4.5,0.9-4.6,4.5-2.5c40.6,24.2,81.4,48.1,122,72.3
|
||||
c3.4,2,5.7,1.8,9-0.1c40.5-24,81.1-47.9,121.7-71.8c5.1-3,5.1-3,5.1,2.7c0,47.8,0,95.6,0.1,143.4c0,3.6-1.1,5.6-4.2,7.4
|
||||
c-41.2,24.1-82.4,48.4-123.5,72.7c-2.6,1.5-4.5,1.8-7.2,0.1c-41.3-24.6-82.7-49.1-124.2-73.4c-2.6-1.5-3.2-3.3-3.2-6
|
||||
C868.8,1577.8,868.8,1553.7,868.8,1529.5L868.8,1529.5z"/>
|
||||
<path class="st2" d="M1224.9,1286v-36.8c0-37.6,0-75.3,0-112.9c0-2.7,0.5-4.5,3.1-6c41.6-24.5,83.1-49.1,124.7-73.6
|
||||
c0.8-0.5,1.6-1.3,2.8-0.9c0.8,1.5,0.4,3.2,0.4,4.8c0,48,0,95.9,0.1,143.9c0,3.8-1.2,5.8-4.5,7.8c-40.4,23.5-80.7,47.2-121.1,70.8
|
||||
C1228.8,1283.9,1227.2,1284.7,1224.9,1286L1224.9,1286z"/>
|
||||
<path class="st2" d="M644.2,1054.8c7.1,4.2,13.6,8.1,20.2,11.9c35.4,20.9,70.7,41.9,106.2,62.7c3.3,1.9,4.4,4,4.4,7.8
|
||||
c-0.1,47.6-0.1,95.3-0.1,142.9v4.9c-1.7,0.7-2.7-0.5-3.7-1.1c-41.2-24.1-82.4-48.3-123.7-72.4c-2.3-1.3-3.6-2.7-3.6-5.8
|
||||
c0.1-49.1,0.1-98.3,0.1-147.4C644,1057.5,644.2,1056.6,644.2,1054.8L644.2,1054.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.2 KiB |
1
apps/axelar/axelscore/www/bridge_avalanche.svg
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
1
apps/axelar/axelscore/www/bridge_evm.svg
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
1
apps/axelar/axelscore/www/bridge_ibc.svg
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
1
apps/axelar/axelscore/www/bridge_other.svg
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
1
apps/axelar/axelscore/www/celo.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg height="200mm" viewBox="0 0 200 200" width="200mm" xmlns="http://www.w3.org/2000/svg"><circle cx="100.00001" cy="99.999999" fill="#fff" r="100" stroke-width=".264583"/><g transform="matrix(.14933355 0 0 .14933355 28.13708 27.708016)"><path d="m375 850c151.9 0 275-123.1 275-275s-123.1-275-275-275-275 123.1-275 275 123.1 275 275 275zm0 100c-207.1 0-375-167.9-375-375s167.9-375 375-375 375 167.9 375 375-167.9 375-375 375z" fill="#fbcc5c"/><path d="m575 650c151.9 0 275-123.1 275-275s-123.1-275-275-275-275 123.1-275 275 123.1 275 275 275zm0 100c-207.1 0-375-167.9-375-375s167.9-375 375-375 375 167.9 375 375-167.9 375-375 375z" fill="#35d07f"/><path d="m587.4 750c26-31.5 44.6-68.4 54.5-108.1 39.6-9.9 76.5-28.5 108.1-54.5-1.4 45.9-11.3 91.1-29.2 133.5-42.3 17.8-87.5 27.7-133.4 29.1zm-279.3-441.9c-39.6 9.9-76.5 28.5-108.1 54.5 1.4-45.9 11.3-91.1 29.2-133.4 42.3-17.8 87.6-27.7 133.4-29.2-26 31.5-44.6 68.4-54.5 108.1z" fill="#5ea33b"/></g></svg>
|
||||
|
After Width: | Height: | Size: 952 B |
19
apps/axelar/axelscore/www/comdex.svg
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" standalone="no"?>
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
||||
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
||||
width="230.000000pt" height="219.000000pt" viewBox="0 0 230.000000 219.000000"
|
||||
preserveAspectRatio="xMidYMid meet">
|
||||
|
||||
<g transform="translate(0.000000,219.000000) scale(0.100000,-0.100000)"
|
||||
fill="#ff0000" stroke="none">
|
||||
<path d="M593 2179 c-17 -5 -41 -21 -52 -35 -19 -24 -21 -40 -21 -180 l0 -154
|
||||
105 0 104 0 3 83 3 82 578 3 c354 1 577 -1 577 -7 0 -5 -57 -59 -126 -120
|
||||
l-127 -111 -771 0 c-871 0 -828 4 -854 -74 -19 -60 -13 -1582 7 -1612 34 -51
|
||||
1 -49 849 -52 510 -2 806 1 830 7 48 13 571 466 589 510 17 41 6 87 -29 116
|
||||
l-30 25 -749 0 -749 0 0 395 0 395 -105 0 -105 0 0 -465 0 -465 29 -32 29 -33
|
||||
660 -5 659 -5 -134 -118 -133 -117 -705 0 -705 0 0 660 0 660 750 0 749 0 38
|
||||
33 c151 129 510 446 519 458 33 42 21 115 -24 146 -25 17 -72 18 -827 20 -472
|
||||
1 -813 -2 -832 -8z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 984 B |
12
apps/axelar/axelscore/www/cosmoshub.svg
Normal file
@ -0,0 +1,12 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 30C23.2843 30 30 23.2843 30 15C30 6.71573 23.2843 0 15 0C6.71573 0 0 6.71573 0 15C0 23.2843 6.71573 30 15 30Z" fill="#2E3148" />
|
||||
<path d="M15.0001 23.7038C19.807 23.7038 23.7038 19.807 23.7038 15.0001C23.7038 10.1932 19.807 6.29639 15.0001 6.29639C10.1932 6.29639 6.29639 10.1932 6.29639 15.0001C6.29639 19.807 10.1932 23.7038 15.0001 23.7038Z" fill="#1B1E36" />
|
||||
<path d="M15.031 1.91357C13.4118 1.91357 12.0989 7.78637 12.0989 15.0309C12.0989 22.2754 13.4118 28.1482 15.031 28.1482C16.6501 28.1482 17.963 22.2754 17.963 15.0309C17.963 7.78637 16.6501 1.91357 15.031 1.91357ZM15.2334 27.4079C15.0482 27.6549 14.8631 27.4696 14.8631 27.4696C14.1174 26.6056 13.7446 25.0005 13.7446 25.0005C12.4403 20.803 12.7507 11.7907 12.7507 11.7907C13.3637 4.63577 14.4787 2.94557 14.8582 2.57033C14.8969 2.53204 14.9479 2.50863 15.0022 2.50424C15.0565 2.49985 15.1106 2.51476 15.155 2.54633C15.7056 2.93645 16.1674 4.56797 16.1674 4.56797C17.5309 9.62969 17.4074 14.3828 17.4074 14.3828C17.5309 18.5186 16.7242 23.1482 16.7242 23.1482C16.1032 26.6666 15.2334 27.4079 15.2334 27.4079Z" fill="#6F7390" />
|
||||
<path d="M26.4087 8.50297C25.6025 7.09801 19.8556 8.88193 13.5687 12.487C7.28174 16.092 2.84702 20.1536 3.65258 21.558C4.45814 22.9624 10.2057 21.179 16.4926 17.574C22.7795 13.969 27.2142 9.90733 26.4087 8.50297ZM4.39634 21.3653C4.0877 21.3264 4.15742 21.0727 4.15742 21.0727C4.53602 19.9962 5.74082 18.874 5.74082 18.874C8.73398 15.6536 16.7063 11.4382 16.7063 11.4382C23.2168 8.40913 25.239 8.53693 25.752 8.67817C25.8047 8.69286 25.8504 8.72572 25.8812 8.77092C25.9119 8.81613 25.9257 8.87075 25.92 8.92513C25.8583 9.59713 24.67 10.8091 24.67 10.8091C20.9605 14.5122 16.776 16.7708 16.776 16.7708C13.2501 18.9368 8.83286 20.5399 8.83286 20.5399C5.47178 21.7511 4.39646 21.3653 4.39646 21.3653H4.39634Z" fill="#6F7390" />
|
||||
<path d="M26.3802 21.6051C27.1926 20.2039 22.769 16.1236 16.5042 12.4915C10.2394 8.85929 4.49317 7.05329 3.68149 8.45693C2.86981 9.86057 7.29265 13.9384 13.5611 17.5706C19.8295 21.2027 25.5685 23.0089 26.3802 21.6051ZM4.21981 8.99837C4.09981 8.71385 4.35313 8.64533 4.35313 8.64533C5.47465 8.43353 7.05001 8.91617 7.05001 8.91617C11.3358 9.89213 18.978 14.6792 18.978 14.6792C24.862 18.7965 25.7644 20.6101 25.8996 21.1249C25.9134 21.1777 25.908 21.2336 25.8845 21.2829C25.861 21.3321 25.8209 21.3715 25.7712 21.394C25.1576 21.6749 23.5144 21.2564 23.5144 21.2564C18.4495 19.8983 14.3989 17.4101 14.3989 17.4101C10.7594 15.4472 7.16065 12.4268 7.16065 12.4268C4.42609 10.1243 4.22065 9.00149 4.22065 9.00149L4.21981 8.99837Z" fill="#6F7390" />
|
||||
<path d="M15 16.5434C15.8523 16.5434 16.5432 15.8525 16.5432 15.0002C16.5432 14.1479 15.8523 13.457 15 13.457C14.1477 13.457 13.4568 14.1479 13.4568 15.0002C13.4568 15.8525 14.1477 16.5434 15 16.5434Z" fill="#B7B9C8" />
|
||||
<path d="M21.3272 9.99979C21.8215 9.99979 22.2223 9.58524 22.2223 9.07387C22.2223 8.5625 21.8215 8.14795 21.3272 8.14795C20.8329 8.14795 20.4321 8.5625 20.4321 9.07387C20.4321 9.58524 20.8329 9.99979 21.3272 9.99979Z" fill="#B7B9C8" />
|
||||
<path d="M6.6358 13.1482C7.13014 13.1482 7.53088 12.7337 7.53088 12.2223C7.53088 11.7109 7.13014 11.2964 6.6358 11.2964C6.14146 11.2964 5.74072 11.7109 5.74072 12.2223C5.74072 12.7337 6.14146 13.1482 6.6358 13.1482Z" fill="#B7B9C8" />
|
||||
<path d="M13.179 24.5061C13.6734 24.5061 14.0741 24.0916 14.0741 23.5802C14.0741 23.0688 13.6734 22.6543 13.179 22.6543C12.6847 22.6543 12.2839 23.0688 12.2839 23.5802C12.2839 24.0916 12.6847 24.5061 13.179 24.5061Z" fill="#B7B9C8" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 3.5 KiB |
10
apps/axelar/axelscore/www/crescent.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg width="224" height="241" viewBox="0 0 224 241" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M120.987 0.884801C141.668 0.869041 162.004 6.15266 180.04 16.2272C198.076 26.3017 213.203 40.8281 223.966 58.4082V58.4082C207.325 58.4082 191.366 64.9893 179.599 76.7038C167.831 88.4182 161.221 104.306 161.221 120.873C161.221 137.44 167.831 153.328 179.599 165.043C191.366 176.757 207.325 183.338 223.966 183.338C213.018 201.22 197.56 215.939 179.128 226.031C160.696 236.123 139.932 241.237 118.9 240.866C97.8672 240.494 77.2986 234.65 59.238 223.913C41.1774 213.176 26.2537 197.92 15.95 179.663C5.6463 161.405 0.321429 140.781 0.504569 119.84C0.68771 98.899 6.37248 78.3703 16.9939 60.2941C27.6154 42.2179 42.8037 27.2236 61.0493 16.8013C79.295 6.37908 99.9627 0.89179 120.999 0.884801H120.987Z" fill="#FFC780"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M223.966 58.4075C207.325 58.4075 191.365 64.9886 179.598 76.7031C167.831 88.4175 161.221 104.306 161.221 120.872C161.221 137.439 167.831 153.327 179.598 165.042C191.365 176.756 207.325 183.337 223.966 183.337L223.57 183.929C211.313 194.988 196.091 202.262 179.757 204.866C163.422 207.469 146.68 205.289 131.568 198.592C116.455 191.895 103.624 180.969 94.6357 167.143C85.6475 153.318 80.8899 137.19 80.9418 120.721C80.9938 104.253 85.8531 88.1551 94.9284 74.3863C104.004 60.6176 116.904 49.7718 132.058 43.1692C147.213 36.5665 163.968 34.4917 180.286 37.1971C196.603 39.9026 211.779 47.2717 223.966 58.4075Z" fill="url(#paint0_linear_2360_219888)"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_2360_219888" x1="152.447" y1="205.957" x2="152.447" y2="36.0547" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFC780"/>
|
||||
<stop offset="1" stop-color="#964B48"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
7
apps/axelar/axelscore/www/emoney.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect width="30" height="30" rx="15" fill="#003034" />
|
||||
<path d="M15.0139 6.89164C15.0139 7.67182 15.0975 7.75541 15.9334 7.75541C17.1594 7.75541 19.5557 8.98142 20.4752 10.0681C21.4783 11.2663 22.2585 12.9938 22.2585 14.0805C22.2585 14.9164 22.3421 15 23.1223 15H23.9861L23.791 13.6904C23.2337 9.87306 20.0573 6.69659 16.2678 6.16718L15.0139 6V6.89164Z" fill="#CDF6ED" />
|
||||
<path d="M13.2585 12.158C12.8405 12.4087 12.3389 12.966 12.1439 13.384C11.921 13.9134 11.6145 14.1641 11.1965 14.1641C10.7507 14.1641 10.5557 14.3313 10.5557 14.7214C10.5557 15.0837 10.7507 15.2787 11.0851 15.2787C11.4194 15.2787 11.8095 15.6688 12.1439 16.3097C13.0913 18.288 15.6826 18.8731 17.2987 17.5078C17.9117 16.9784 17.9117 16.9505 17.4102 16.5326C16.9643 16.1982 16.825 16.1982 16.2956 16.5326C15.9891 16.7555 15.4597 16.9505 15.1532 16.9505C14.4009 16.9505 13.342 16.1982 13.342 15.6688C13.342 15.3623 13.8993 15.2787 16.2677 15.2787C17.8838 15.2787 19.1934 15.223 19.1934 15.1672C19.1934 15.1115 19.277 14.8607 19.3606 14.61C19.4999 14.2756 19.3606 14.1641 18.8869 14.1641C18.4133 14.1641 18.1068 13.9134 17.856 13.3282C17.1594 11.7679 14.8467 11.1827 13.2585 12.158ZM16.212 13.384L16.825 14.0248L15.1811 14.1084C13.2585 14.2199 12.9798 14.0248 13.8715 13.3004C14.7352 12.6038 15.4318 12.6316 16.212 13.384Z" fill="#CDF6ED" />
|
||||
<path d="M6.1811 16.2539C6.71051 20.0155 9.99844 23.3034 13.76 23.8328L15.0139 24V23.1084C15.0139 22.3282 14.9303 22.2446 14.1223 22.2446C13.0077 22.2446 11.2802 21.4644 10.082 20.4613C8.99534 19.5418 7.76933 17.1455 7.76933 15.9195C7.76933 15.0836 7.68574 15 6.90556 15H6.01392L6.1811 16.2539Z" fill="#CDF6ED" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
1
apps/axelar/axelscore/www/ethereum.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 597.49 597.49"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#627eea;}.cls-3{fill:rgba(255,255,255,.6);}.cls-4{fill:rgba(255,255,255,.2);}</style></defs><g id="Eth"><circle class="cls-2" cx="298.74" cy="298.74" r="298.74"/><g><path class="cls-3" d="M308.04,74.69V240.3l139.98,62.55L308.04,74.69Z"/><path class="cls-1" d="M308.04,74.69l-140,228.17,140-62.55V74.69Z"/><path class="cls-3" d="M308.04,410.18v112.53l140.07-193.79-140.07,81.26Z"/><path class="cls-1" d="M308.04,522.71v-112.55l-140-81.24,140,193.79Z"/><path class="cls-4" d="M308.04,384.13l139.98-81.28-139.98-62.51v143.79Z"/><path class="cls-3" d="M168.04,302.85l140,81.28V240.34l-140,62.51Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 770 B |
1
apps/axelar/axelscore/www/evmos.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><style>.cls-1{fill:#ec4e33;}.cls-2{fill:#fefcfc;}.cls-3{fill:#fefdfd;}</style></defs><path class="cls-1" d="M181.01,.1h34.98c6.12,2.11,12.61,2,18.9,3.14,107.02,19.33,179.11,123.34,159.83,230.71-18.94,105.5-117.95,176.85-224.49,161.78C87.37,384,20.09,319.89,3.8,237.32c-1.33-6.76-1.38-13.75-3.71-20.33v-36.98c1.89-2.17,1.4-4.98,1.73-7.47C12.99,88.37,76.89,20.35,160.19,3.85c6.93-1.37,14.08-1.4,20.82-3.75Zm-45.39,192.17c-.37-4.78,.13-8.9,.87-12.94,8.89-48.31,55.31-75.54,102.23-59.98,3.05,1.01,6.07,1.84,7.56-1.99,1.34-3.46-1.13-5.02-3.82-6.44-42.84-22.65-96.78-9.02-123.79,31.11-9.48,14.08-15.61,29.69-21.55,45.38-6.05,15.97-15.38,29.27-28.72,39.99-8.03,6.45-16.65,12.26-23.56,20.02-2.57,2.89-5.01,6.14-3.33,10.34,1.65,4.1,5.45,4.98,9.39,5.45,9.34,1.11,18.63-.17,27.91-.76,16.6-1.06,32.49,.95,47.47,8.69,8.26,4.27,16.72,8.19,25.15,12.13,28.99,13.52,58.33,16.73,88.09,2.53,23.28-11.1,39.46-28.93,49.19-52.72,.13-.31,.13-.66,.27-.96,1.45-3.12,1.48-6.07-2.1-7.52-3.16-1.28-4.77,1.03-6.14,3.56-8.81,16.22-21.6,28.12-38.7,35.23-40.34,16.77-87.33-3.88-101.94-44.62-1.34-3.73-.91-5.6,2.99-7.07,5.89-2.23,11.53-5.14,17.33-7.61,39.65-16.89,80.05-31.61,121.81-42.48,4.33-1.13,6.64-.34,7.71,4.05,1.14,4.68,2.48,9.31,3.71,13.97,1.24,4.71,2.87,5.56,7.03,3.19,7.95-4.52,15.94-9,23.67-13.87,8.87-5.59,17.62-11.45,24.76-19.26,3.07-3.36,7.17-7.03,5.13-12.14-2.11-5.29-7.66-5.26-12.44-5.57-16.3-1.07-32.17,2.07-47.92,5.6-48.17,10.8-94.41,27.48-139.79,46.66-6.06,2.56-12.07,5.26-18.47,8.05Z"/><path class="cls-3" d="M.1,216.99c2.33,6.57,2.37,13.56,3.71,20.33,16.28,82.57,83.57,146.68,166.43,158.4,106.54,15.07,205.55-56.28,224.49-161.78C414,126.58,341.91,22.56,234.89,3.24c-6.29-1.14-12.78-1.02-18.9-3.14C275.97,.1,335.94,.14,395.91,0c3.42,0,4.1,.67,4.09,4.09-.11,130.6-.11,261.21,0,391.81,0,3.42-.67,4.1-4.09,4.09-130.6-.11-261.21-.11-391.81,0-3.42,0-4.1-.67-4.1-4.09,.13-59.64,.1-119.28,.1-178.91Z"/><path class="cls-3" d="M181.01,.1c-6.74,2.35-13.89,2.38-20.82,3.75C76.89,20.35,12.99,88.37,1.83,172.54c-.33,2.49,.16,5.29-1.73,7.47C.1,121.45,.14,62.9,0,4.34,0,.74,.74,0,4.34,0,63.23,.14,122.12,.1,181.01,.1Z"/><path class="cls-2" d="M135.62,192.27c6.4-2.79,12.41-5.49,18.47-8.05,45.39-19.18,91.62-35.85,139.79-46.66,15.75-3.53,31.62-6.67,47.92-5.6,4.78,.31,10.33,.28,12.44,5.57,2.04,5.11-2.06,8.78-5.13,12.14-7.13,7.81-15.88,13.67-24.76,19.26-7.74,4.87-15.72,9.35-23.67,13.87-4.17,2.37-5.79,1.53-7.03-3.19-1.22-4.66-2.57-9.29-3.71-13.97-1.07-4.39-3.38-5.17-7.71-4.05-41.76,10.87-82.16,25.6-121.81,42.48-5.81,2.47-11.44,5.38-17.33,7.61-3.9,1.48-4.33,3.34-2.99,7.07,14.62,40.74,61.61,61.39,101.94,44.62,17.1-7.11,29.89-19.01,38.7-35.23,1.37-2.53,2.98-4.83,6.14-3.56,3.58,1.45,3.55,4.4,2.1,7.52-.14,.3-.14,.66-.27,.96-9.74,23.79-25.92,41.62-49.19,52.72-29.76,14.2-59.1,10.99-88.09-2.53-8.43-3.93-16.89-7.85-25.15-12.13-14.98-7.74-30.88-9.75-47.47-8.69-9.28,.59-18.57,1.87-27.91,.76-3.94-.47-7.75-1.34-9.39-5.45-1.68-4.19,.76-7.45,3.33-10.34,6.9-7.76,15.53-13.57,23.56-20.02,13.34-10.72,22.67-24.02,28.72-39.99,5.94-15.68,12.07-31.3,21.55-45.38,27.01-40.13,80.95-53.76,123.79-31.11,2.69,1.42,5.16,2.99,3.82,6.44-1.49,3.83-4.51,3-7.56,1.99-46.92-15.55-93.34,11.67-102.23,59.98-.74,4.05-1.24,8.17-.87,12.94Z"/></svg>
|
||||
|
After Width: | Height: | Size: 3.2 KiB |
1
apps/axelar/axelscore/www/fantom.svg
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
1
apps/axelar/axelscore/www/fetch.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1080 1080"><defs><style>.cls-1{fill:none;}.cls-2{fill:#fff;}</style></defs><g id="Layer_2" data-name="Layer 2"><g id="Layer_1-2" data-name="Layer 1"><rect class="cls-1" width="1080" height="1080"/><rect class="cls-2" x="270.73" y="270.73" width="65.28" height="65.28"/><path class="cls-2" d="M342.28,342.28H264.45V264.45h77.83ZM277,329.73h52.72V277H277Z"/><rect class="cls-2" x="433.92" y="270.73" width="65.28" height="65.28"/><path class="cls-2" d="M505.48,342.28H427.65V264.45h77.83ZM440.2,329.73h52.72V277H440.2Z"/><rect class="cls-2" x="597.12" y="270.73" width="65.28" height="65.28"/><path class="cls-2" d="M668.67,342.28H590.84V264.45h77.83Zm-65.28-12.55h52.73V277H603.39Z"/><rect class="cls-2" x="270.73" y="433.92" width="65.28" height="65.28"/><path class="cls-2" d="M342.28,505.48H264.45V427.65h77.83ZM277,492.92h52.72V440.2H277Z"/><rect class="cls-2" x="433.92" y="433.92" width="65.28" height="65.28"/><path class="cls-2" d="M505.48,505.48H427.65V427.65h77.83ZM440.2,492.92h52.72V440.2H440.2Z"/><rect class="cls-2" x="270.73" y="597.12" width="65.28" height="65.28"/><path class="cls-2" d="M342.28,668.67H264.45V590.84h77.83ZM277,656.12h52.72V603.39H277Z"/><circle class="cls-2" cx="792.95" cy="303.37" r="16.32"/><path class="cls-2" d="M793,326a22.6,22.6,0,1,1,22.6-22.59A22.66,22.66,0,0,1,793,326Zm0-32.63a10,10,0,1,0,10,10A10.07,10.07,0,0,0,793,293.33Z"/><circle class="cls-2" cx="792.95" cy="466.56" r="16.32"/><path class="cls-2" d="M793,489.16a22.6,22.6,0,1,1,22.6-22.6A22.67,22.67,0,0,1,793,489.16Zm0-32.64a10,10,0,1,0,10,10A10.07,10.07,0,0,0,793,456.52Z"/><circle class="cls-2" cx="792.95" cy="629.76" r="16.32"/><path class="cls-2" d="M793,652.35a22.6,22.6,0,1,1,22.6-22.59A22.66,22.66,0,0,1,793,652.35Zm0-32.64a10,10,0,1,0,10,10A10.07,10.07,0,0,0,793,619.71Z"/><circle class="cls-2" cx="792.95" cy="792.95" r="16.32"/><path class="cls-2" d="M793,815.55a22.6,22.6,0,1,1,22.6-22.6A22.67,22.67,0,0,1,793,815.55Zm0-32.64a10,10,0,1,0,10,10A10.07,10.07,0,0,0,793,782.91Z"/><circle class="cls-2" cx="629.76" cy="466.56" r="16.32"/><path class="cls-2" d="M629.76,489.16a22.6,22.6,0,1,1,22.59-22.6A22.67,22.67,0,0,1,629.76,489.16Zm0-32.64a10,10,0,1,0,10,10A10.07,10.07,0,0,0,629.76,456.52Z"/><circle class="cls-2" cx="629.76" cy="629.76" r="16.32"/><path class="cls-2" d="M629.76,652.35a22.6,22.6,0,1,1,22.59-22.59A22.66,22.66,0,0,1,629.76,652.35Zm0-32.64a10,10,0,1,0,10,10A10.08,10.08,0,0,0,629.76,619.71Z"/><circle class="cls-2" cx="629.76" cy="792.95" r="16.32"/><path class="cls-2" d="M629.76,815.55A22.6,22.6,0,1,1,652.35,793,22.67,22.67,0,0,1,629.76,815.55Zm0-32.64a10,10,0,1,0,10,10A10.07,10.07,0,0,0,629.76,782.91Z"/><circle class="cls-2" cx="466.56" cy="629.76" r="16.32"/><path class="cls-2" d="M466.56,652.35a22.6,22.6,0,1,1,22.6-22.59A22.66,22.66,0,0,1,466.56,652.35Zm0-32.64a10,10,0,1,0,10.05,10A10.07,10.07,0,0,0,466.56,619.71Z"/><circle class="cls-2" cx="466.56" cy="792.95" r="16.32"/><path class="cls-2" d="M466.56,815.55a22.6,22.6,0,1,1,22.6-22.6A22.66,22.66,0,0,1,466.56,815.55Zm0-32.64a10,10,0,1,0,10.05,10A10.07,10.07,0,0,0,466.56,782.91Z"/><circle class="cls-2" cx="303.37" cy="792.95" r="16.32"/><path class="cls-2" d="M303.37,815.55A22.6,22.6,0,1,1,326,793,22.67,22.67,0,0,1,303.37,815.55Zm0-32.64a10,10,0,1,0,10,10A10.07,10.07,0,0,0,303.37,782.91Z"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
1
apps/axelar/axelscore/www/flipside.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 97 103.03"><defs><style>.cls-1{fill-rule:evenodd;}</style></defs><path class="cls-1" d="M48.5,103.03c-3.9,0-7.7-1-11.2-2.9-7.8-4.4-18.2-10.3-26.1-14.8-6.9-3.9-11.2-11.2-11.2-19v-29.6c0-7.8,4.3-15.1,11.2-19,7.8-4.4,18.2-10.3,26.1-14.8,6.9-3.9,15.4-3.9,22.4,0,7.8,4.4,18.2,10.3,26.1,14.8,3.4,1.9,6.1,4.6,8,7.7l-34.2,19.7c-6.8,3.9-11,11.3-11.1,18.9v39Zm48.4-41.9v5.1c0,7.8-4.3,15.1-11.2,19-7.8,4.4-18.2,10.3-26.1,14.8-.7,.4-1.5,.8-2.2,1.1v-9.2c0-4.6,2.6-9,6.5-11.3,9.8-5.7,19.6-11.2,29.4-16.9,1.3-.7,2.5-1.6,3.6-2.6Zm-.1-27.2c.1,.9,.2,1.9,.2,2.8v5.3c0,5.8-3.2,11.2-8.2,14.1-9.8,5.7-19.6,11.2-29.4,16.9-.7,.4-1.3,.8-1.9,1.3v-10.3c0-4.6,2.6-9.1,6.6-11.4l32.7-18.7Z"/></svg>
|
||||
|
After Width: | Height: | Size: 772 B |
1
apps/axelar/axelscore/www/github.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#24292f"/></svg>
|
||||
|
After Width: | Height: | Size: 963 B |
32
apps/axelar/axelscore/www/injective.svg
Normal file
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" focusable="false" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
x="0px" y="0px" viewBox="0 0 38 38" style="enable-background:new 0 0 38 38;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:url(#SVGID_1_);}
|
||||
.st1{fill:url(#SVGID_00000170984198501923081390000013667438185988017062_);}
|
||||
.st2{fill:none;}
|
||||
</style>
|
||||
<g>
|
||||
|
||||
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="2.3198" y1="19.531" x2="35.6815" y2="19.531" gradientTransform="matrix(1 0 0 -1 0 40)">
|
||||
<stop offset="0" style="stop-color:#0082FA"/>
|
||||
<stop offset="1" style="stop-color:#00F2FE"/>
|
||||
</linearGradient>
|
||||
<path class="st0" d="M6.4,8.1C6.6,7.8,6.8,7.6,7,7.3c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1l0,0c0.2-0.1,0.3-0.3,0.5-0.4
|
||||
C8.3,6.3,9,5.9,9.7,5.6c2.3-0.8,4.9-0.3,7,1.6c2.8,2.7,2.6,7,0.3,9.8c-2.9,4.3-7.8,10.2-1,15.5c1.2,1,2.1,1.7,6,2.9
|
||||
c-2.5,0.5-4.9,0.3-7.5-0.3c-1.8-1-4.7-3.3-5.7-6.3c-1.5-4.6,2.6-11.4,4.6-14c2.7-3.6-1.7-7.6-4.9-3.2c-1.7,2.3-4.7,8.8-3.6,13.6
|
||||
c0.6,2.7,1.4,4.7,4.6,7.4c-0.6-0.3-1.2-0.7-1.7-1.2C0.3,24.5,1.2,13.8,6.4,8.1z"/>
|
||||
|
||||
<linearGradient id="SVGID_00000109734634360253234860000011657349137581942719_" gradientUnits="userSpaceOnUse" x1="2.3197" y1="22.469" x2="35.6814" y2="22.469" gradientTransform="matrix(1 0 0 -1 0 40)">
|
||||
<stop offset="0" style="stop-color:#0082FA"/>
|
||||
<stop offset="1" style="stop-color:#00F2FE"/>
|
||||
</linearGradient>
|
||||
<path style="fill:url(#SVGID_00000109734634360253234860000011657349137581942719_);" d="M31.6,29.9c-0.2,0.3-0.4,0.5-0.6,0.8
|
||||
c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1l0,0c-0.2,0.1-0.3,0.3-0.5,0.4c-0.7,0.5-1.4,0.9-2.1,1.1c-2.3,0.8-4.9,0.3-7-1.6
|
||||
c-2.8-2.7-2.6-7-0.3-9.8c2.9-4.3,7.8-10.2,1-15.5c-1.2-1-2.1-1.7-6-2.9c2.5-0.5,4.9-0.3,7.5,0.3c1.8,1,4.7,3.3,5.7,6.3
|
||||
c1.5,4.6-2.6,11.4-4.6,14c-2.7,3.6,1.7,7.6,4.9,3.2c1.7-2.3,4.7-8.8,3.6-13.6c-0.6-2.7-1.4-4.7-4.6-7.4c0.6,0.3,1.2,0.7,1.7,1.2
|
||||
C37.7,13.5,36.8,24.2,31.6,29.9z"/>
|
||||
</g>
|
||||
<circle class="st2" cx="19" cy="19" r="17.5"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.1 KiB |
11
apps/axelar/axelscore/www/juno.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 29.4296C22.9901 29.4296 29.4674 23.1102 29.4674 15.3149C29.4674 7.51957 22.9901 1.2002 15 1.2002C7.00979 1.2002 0.532471 7.51957 0.532471 15.3149C0.532471 23.1102 7.00979 29.4296 15 29.4296Z" fill="white" />
|
||||
<path d="M15 29.1147C22.9901 29.1147 29.4674 22.7953 29.4674 15C29.4674 7.20463 22.9901 0.885254 15 0.885254C7.00979 0.885254 0.532471 7.20463 0.532471 15C0.532471 22.7953 7.00979 29.1147 15 29.1147Z" fill="black" stroke="white" stroke-width="0.887521" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5471 10.057C15.5471 9.78579 15.3391 9.56592 15.0826 9.56592C15.0826 9.56592 15.0824 9.56592 15.0821 9.56592C14.8258 9.56592 14.6179 9.78579 14.6179 10.057C14.6179 12.0358 14.6179 19.4158 14.6179 21.3949C14.6179 21.6661 14.8258 21.886 15.0821 21.886C15.0824 21.886 15.0826 21.886 15.0826 21.886C15.3391 21.886 15.5471 21.6661 15.5471 21.3949C15.5471 19.4158 15.5471 12.0358 15.5471 10.057Z" fill="white" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.6709 19.4008C13.4145 19.4005 13.2064 19.6202 13.2062 19.8914C13.2062 19.8914 13.2062 19.8917 13.2062 19.892C13.206 20.163 13.4137 20.383 13.6701 20.3832C14.3834 20.3838 15.7409 20.385 16.4541 20.3857C16.7106 20.3859 16.9187 20.1662 16.9189 19.8953C16.9189 19.895 16.9189 19.8947 16.9189 19.8947C16.9191 19.6235 16.7114 19.4034 16.4549 19.4032C15.7416 19.4026 14.3842 19.4014 13.6709 19.4008Z" fill="white" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.3755 12.9779C11.1189 12.9777 10.911 13.1974 10.9108 13.4686C10.9108 13.4686 10.9108 13.4689 10.9108 13.4692C10.9106 13.7401 11.1182 13.9601 11.3747 13.9604C12.8325 13.9616 17.3069 13.9656 18.7647 13.9669C19.021 13.9671 19.2292 13.7474 19.2294 13.4765C19.2294 13.4762 19.2294 13.4759 19.2294 13.4759C19.2296 13.2047 19.0218 12.9846 18.7654 12.9844C17.3077 12.9831 12.8333 12.9792 11.3755 12.9779Z" fill="white" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.9066 10.4956C12.7251 10.3041 12.4311 10.3044 12.2499 10.4964C12.2499 10.4964 12.2497 10.4966 12.2495 10.4968C12.0685 10.6886 12.0688 10.9995 12.2503 11.1911C13.2503 12.2461 16.2483 15.4093 17.2483 16.4644C17.4298 16.6559 17.7238 16.6556 17.9048 16.4638C17.905 16.4636 17.9052 16.4634 17.9052 16.4634C18.0864 16.2714 18.0861 15.9605 17.9045 15.7689C16.9046 14.7139 13.9066 11.5507 12.9066 10.4956Z" fill="white" />
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2563 15.7776C12.0753 15.9696 12.0758 16.2805 12.2575 16.472C12.2575 16.472 12.2577 16.4722 12.2579 16.4724C12.4394 16.6637 12.7334 16.6631 12.9145 16.471C13.9116 15.413 16.9011 12.2409 17.8983 11.1828C18.0793 10.9907 18.0788 10.6798 17.8973 10.4886C17.8971 10.4884 17.8969 10.4882 17.8969 10.4882C17.7152 10.2967 17.4212 10.2973 17.2401 10.4894C16.243 11.5474 13.2534 14.7195 12.2563 15.7776Z" fill="white" />
|
||||
<path d="M15.0055 27.5325C22.0456 27.5325 27.7528 21.9645 27.7528 15.0961C27.7528 8.22764 22.0456 2.65967 15.0055 2.65967C7.96543 2.65967 2.2583 8.22764 2.2583 15.0961C2.2583 21.9645 7.96543 27.5325 15.0055 27.5325Z" stroke="#F0827D" stroke-width="0.509853" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
10
apps/axelar/axelscore/www/kava.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path opacity="0.2" d="M6.04928 20.1629L7.06026 24L14 12.5L7.06026 1L6 4.75389L10.6098 12.4979L6.04928 20.1629Z" fill="#FF564F" />
|
||||
<path d="M23 24H19.1387L11 12.499L19.1387 1H23L14.9759 12.499L23 24Z" fill="#F08179" />
|
||||
<path d="M3 1H7V24H3V1Z" fill="#FF564F" />
|
||||
<path d="M23 23.4979H18.99L10.538 12.2979L18.99 1.09998H23L14.667 12.2979L23 23.4979Z" fill="#FF564F" />
|
||||
<path d="M23 23.4979H18.99L10.538 12.2979L18.99 1.09998H23L14.667 12.2979L23 23.4979Z" fill="#FF564F" />
|
||||
<path d="M23 23.4979H18.99L10.538 12.2979L18.99 1.09998H23L14.667 12.2979L23 23.4979Z" fill="#FF564F" />
|
||||
<path d="M23 23.4979H18.99L10.538 12.2979L18.99 1.09998H23L14.667 12.2979L23 23.4979Z" fill="#FF564F" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 801 B |
17
apps/axelar/axelscore/www/ki.svg
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
9
apps/axelar/axelscore/www/kujira.svg
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg width="100px" height="100px" viewBox="0 0 100 100" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>kuji</title>
|
||||
<g id="kuji" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
||||
<circle id="Oval" fill="#22242F" cx="50" cy="50" r="50"></circle>
|
||||
<path d="M50,2 C76.509668,2 98,23.490332 98,50 C98,76.509668 76.509668,98 50,98 C23.490332,98 2,76.509668 2,50 C2,23.490332 23.490332,2 50,2 Z M50,5.38823529 C25.3616027,5.38823529 5.38823529,25.3616027 5.38823529,50 C5.38823529,74.6383973 25.3616027,94.6117647 50,94.6117647 C74.6383973,94.6117647 94.6117647,74.6383973 94.6117647,50 C94.6117647,25.3616027 74.6383973,5.38823529 50,5.38823529 Z" id="Oval" fill="#E53935" fill-rule="nonzero"></path>
|
||||
<path d="M80.2507798,31.0832298 L80.2507798,26.7229814 L66.4391765,26.7229814 C65.6980661,23.9055901 64.9569557,21.4236025 64.1484716,19.1428571 L59.4996881,19.9478261 C60.3081722,21.9602484 61.1166563,24.2409938 61.8577667,26.7229814 L47.2376794,26.7229814 L47.2376794,31.0832298 L80.2507798,31.0832298 Z M44.8796007,63.4832298 L44.8796007,35.6447205 L38.0748596,35.6447205 C39.4897068,33.5652174 40.904554,31.0161491 42.3194011,27.9304348 L42.3194011,24.710559 L31.2027449,24.710559 C31.8091079,23.3689441 32.3480973,22.0273292 32.8870867,20.6186335 L28.5751716,19.2770186 C26.5539613,25.8509317 23.3873986,31.1503106 19.1428571,35.242236 L20.1534623,40.0049689 C21.02932,39.2 21.9051778,38.3950311 22.7136619,37.5229814 L22.7136619,63.4832298 L44.8796007,63.4832298 Z M33.4260761,35.6447205 L24.3980037,35.6447205 C26.1497193,33.4981366 27.8340611,31.0832298 29.316282,28.5341615 L37.8053649,28.5341615 C36.3231441,31.2173913 34.9082969,33.6322981 33.4260761,35.6447205 Z M61.1840299,80.8571429 C64.5527137,80.8571429 66.3044292,78.978882 66.3044292,75.289441 L66.3044292,56.1714286 L77.0168434,56.1714286 L77.0168434,37.1204969 L50.8084841,37.1204969 L50.8084841,56.1714286 L61.588272,56.1714286 L61.588272,74.1490683 C61.588272,75.826087 60.9145352,76.6981366 59.5670618,76.6981366 C58.0174672,76.6981366 56.4004991,76.5639752 54.7835309,76.3627329 L55.7267623,80.8571429 L61.1840299,80.8571429 Z M31.8764816,47.5850932 L26.8908297,47.5850932 L26.8908297,39.6024845 L31.8764816,39.6024845 L31.8764816,47.5850932 Z M40.7024329,47.5850932 L35.7841547,47.5850932 L35.7841547,39.6024845 L40.7024329,39.6024845 L40.7024329,47.5850932 Z M72.4354336,51.9453416 L55.3898939,51.9453416 L55.3898939,41.4136646 L72.4354336,41.4136646 L72.4354336,51.9453416 Z M40.7024329,59.4583851 L35.7841547,59.4583851 L35.7841547,51.4757764 L40.7024329,51.4757764 L40.7024329,59.4583851 Z M31.8764816,59.4583851 L26.8908297,59.4583851 L26.8908297,51.4757764 L31.8764816,51.4757764 L31.8764816,59.4583851 Z M77.2863381,77.7714286 L80.8571429,75.289441 C79.0380536,70.9962733 76.477854,66.0322981 73.1091703,60.3304348 L69.5383656,62.4770186 C72.7723019,68.0447205 75.3998752,73.1428571 77.2863381,77.7714286 Z M49.0567686,78.9118012 C52.0212102,74.2832298 54.5814099,68.7826087 56.7373674,62.4770186 L52.8296943,60.5987578 C50.7411104,66.6360248 48.2482845,71.868323 45.4185901,76.2956522 L49.0567686,78.9118012 Z M43.4647536,74.3503106 L46.7660636,73.5453416 C45.8228322,70.3254658 44.8796007,67.5080745 43.801622,65.0931677 L40.6350593,66.0322981 C41.7130381,68.715528 42.6562695,71.4658385 43.4647536,74.3503106 Z M36.3231441,78.2409938 L39.8265752,77.8385093 C39.4223331,72.7403727 38.6812227,68.715528 37.6032439,65.7639752 L34.2345602,66.1664596 C35.312539,68.9838509 35.9862757,73.0086957 36.3231441,78.2409938 Z M23.4547723,80.0521739 C24.8696195,76.0944099 25.7454772,71.6 26.1497193,66.5018634 L22.5115409,66.0322981 C22.1746725,70.8621118 21.231441,75.1552795 19.7492202,78.9118012 L23.4547723,80.0521739 Z M29.1141609,79.247205 L32.617592,78.8447205 C32.4828447,73.5453416 32.1459763,69.3192547 31.6743606,66.2335404 L28.4404242,66.6360248 C28.7772926,69.5875776 28.9794136,73.8136646 29.1141609,79.247205 Z" id="鯨" fill="#E53935" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.0 KiB |
36
apps/axelar/axelscore/www/letstry.js
Normal file
@ -0,0 +1,36 @@
|
||||
// !preview r2d3 data=c(0.3, 0.6, 0.8, 0.95, 0.40, 0.20)
|
||||
//
|
||||
// r2d3: https://rstudio.github.io/r2d3
|
||||
//
|
||||
|
||||
const imglnk = 'https://docs.axelar.dev/images/chains/'
|
||||
|
||||
var data = [
|
||||
{ image: imglnk.concat("polygon", ".svg"), x: 50 },
|
||||
{ image: "https://docs.axelar.dev/images/chains/axelar.svg", x: 130 },
|
||||
{ image: "https://docs.axelar.dev/images/chains/kujira.svg", x: 210 }
|
||||
]; // example data
|
||||
|
||||
var patterns = svg.selectAll("pattern")
|
||||
.data(data)
|
||||
.enter()
|
||||
.append("pattern")
|
||||
.attr("id", function(d, i) { return "pattern-" + i; })
|
||||
.attr("patternUnits", "userSpaceOnUse")
|
||||
.attr("width", 80)
|
||||
.attr("height", 80);
|
||||
|
||||
patterns.append("image")
|
||||
.attr("xlink:href", function(d) { return d.image; })
|
||||
.attr("width", 80)
|
||||
.attr("height", 80);
|
||||
|
||||
var circles = svg.selectAll("circle")
|
||||
.data(data)
|
||||
.enter()
|
||||
.append("circle")
|
||||
.attr("cx", function(d) { return d.x; })
|
||||
.attr("cy", 200)
|
||||
.attr("r", 40)
|
||||
.attr("fill", function(d, i) { return "url(#pattern-" + i + ")"; });
|
||||
|
||||
1
apps/axelar/axelscore/www/logo.svg
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
78
apps/axelar/axelscore/www/moonbeam.svg
Normal file
@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 27.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 34 34" style="enable-background:new 0 0 34 34;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FFFFFF;}
|
||||
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#E4147C;}
|
||||
.st2{fill-rule:evenodd;clip-rule:evenodd;fill:#54CCCB;}
|
||||
.st3{fill-rule:evenodd;clip-rule:evenodd;fill:#54D0A4;}
|
||||
</style>
|
||||
<circle class="st0" cx="17" cy="17" r="17"/>
|
||||
<path class="st1" d="M6.6,15.8c-0.1,0.1-0.2,0.2-0.2,0.2c0,0.1,0,0.1,0,0.1c0,0,0,0.3,0,0.4c0,0,0,0,0,0.1c0,0,0,0.1,0.1,0.1
|
||||
c0,0,0.1,0.1,0.1,0.1c0,0,0,0.1,0.1,0.1c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.4,0.1,0.5,0c0,0,0,0,0.1,0c0.1,0,0.3-0.3,0.3-0.4
|
||||
c0.1-0.6-0.1-0.9-0.6-0.9H6.7L6.6,15.8z M8.8,15.7C8.8,15.7,8.8,15.7,8.8,15.7c-0.1,0-0.4,0.3-0.4,0.3c0,0,0,0,0,0c0,0,0,0.1,0,0.2
|
||||
c0,0.1,0,0.2,0,0.3c0,0,0,0,0,0.1c0,0.1,0.3,0.3,0.3,0.3c0,0,0.1,0,0.1,0c0,0,22,0,22,0c0,0,0,0,0.1,0c0.2,0,0.4-0.3,0.4-0.6
|
||||
c0-0.3-0.2-0.6-0.3-0.6c0,0,0,0,0,0c0,0-3.7,0-11.1,0S8.8,15.6,8.8,15.7z M2.4,18.2C2.4,18.2,2.4,18.3,2.4,18.2
|
||||
c-0.1,0-0.2,0.1-0.3,0.1L2,18.5v0.4c0,0.4,0,0.5,0.2,0.5c0,0,0.1,0,0.1,0c0,0,0.6,0,0.6,0c0,0,0,0,0.1-0.1c0.2-0.1,0.3-0.4,0.3-0.7
|
||||
C3.2,18.4,2.5,18,2.4,18.2z M4.4,18.2C4.4,18.2,4.4,18.3,4.4,18.2c-0.1,0-0.1,0-0.1,0.1s0,0,0,0c-0.1,0-0.3,0.3-0.3,0.5
|
||||
c0,0.3,0.2,0.6,0.3,0.6c0,0,0.1,0,0.1,0c0,0,2.8,0,8.2,0c5.4,0,8.2,0,8.2,0c0,0,0,0,0.1,0c0.1,0,0.1,0,0.1-0.1c0,0,0-0.1,0.1-0.1
|
||||
c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0.1,0,0-0.5,0-0.6c-0.1-0.1-0.2-0.3-0.3-0.3c0,0-0.1,0-0.1,0c0,0-2.7,0-8.1,0S4.5,18.2,4.4,18.2z
|
||||
M6.9,20.8c0,0-0.1,0-0.1,0s-0.1,0-0.1,0s0,0-0.1,0c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0,0,0s0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.2
|
||||
c0,0.1,0,0.2,0,0.2c0,0,0,0,0,0.1c0,0.1,0.3,0.4,0.4,0.4c0,0,0.1,0,0.1,0s0.1,0,0.2,0s0.1,0,0.1,0c0,0,0,0,0.1,0
|
||||
c0.1,0,0.4-0.2,0.4-0.4c0.1-0.3,0-0.7-0.2-0.8c0,0-0.1,0-0.1-0.1c0,0-0.1,0-0.2,0C7.1,20.8,7,20.8,6.9,20.8C7,20.8,7,20.8,6.9,20.8
|
||||
C7,20.8,6.9,20.8,6.9,20.8z M8.7,20.9C8.7,20.9,8.7,20.9,8.7,20.9c-0.1,0-0.2,0.1-0.2,0.2c0,0,0,0-0.1,0.1c-0.1,0.1-0.1,0.7,0,0.7
|
||||
c0,0,0,0,0,0c0,0.1,0.1,0.2,0.2,0.2c0,0,0,0,0,0s0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,3.2,0,9.7,0s9.7,0,9.7,0c0,0,0,0,0.1,0
|
||||
c0,0,0.1,0,0.1,0s0,0,0.1-0.1c0.2-0.1,0.3-0.6,0.2-0.8c-0.1-0.1-0.2-0.3-0.2-0.3c0,0-0.1,0-0.1,0c0,0-3.3,0-9.9,0
|
||||
C12,20.8,8.7,20.9,8.7,20.9z M3.5,23.4C3.5,23.4,3.5,23.4,3.5,23.4c-0.1,0-0.1,0-0.1,0.1s0,0,0,0c-0.1,0-0.2,0.1-0.2,0.2
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c-0.1,0,0,0.5,0.1,0.5c0,0,0,0,0,0c0,0.2,0.7,0.4,0.8,0.3c0,0,0,0,0.1,0
|
||||
c0.2,0,0.5-0.7,0.3-0.9c0,0,0,0,0-0.1c0-0.1-0.3-0.3-0.3-0.3c0,0-0.1,0-0.1,0s-0.1,0-0.2,0C3.6,23.4,3.5,23.4,3.5,23.4z M5.5,23.4
|
||||
C5.5,23.4,5.5,23.4,5.5,23.4c-0.1,0-0.4,0.3-0.4,0.4c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0,0,0.1
|
||||
c0,0.1,0.3,0.3,0.3,0.3c0,0,0.1,0,0.1,0c0,0,1.4,0,4,0h3.9l0.1-0.1c0.1,0,0.2-0.1,0.2-0.2l0.1-0.1V24v-0.3l-0.1-0.1
|
||||
c-0.1-0.1-0.2-0.1-0.2-0.1s-0.1,0-0.1,0c0,0-1.4,0-4,0C6.9,23.4,5.5,23.4,5.5,23.4z M15.3,23.4c-0.1,0.1-0.3,0.3-0.3,0.3
|
||||
c0,0,0,0,0,0c0,0,0,0.1,0,0.3c0,0.1,0,0.3,0,0.3c0,0,0,0,0,0c0,0.1,0.2,0.2,0.3,0.3l0.1,0.1h8.1h8.1l0.1-0.1C32,24.5,32,24.4,32,24
|
||||
c0-0.4,0-0.5-0.3-0.6l-0.1-0.1l-8.1,0C15.6,23.4,15.4,23.4,15.3,23.4z M16.6,26C16.6,26,16.5,26,16.6,26c-0.2,0-0.4,0.2-0.4,0.3
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0,0,0.1c0,0.2,0.2,0.4,0.5,0.4
|
||||
c0.2,0,0.6-0.1,0.6-0.3c0,0,0,0,0,0c0,0,0,0,0.1-0.1c0-0.1,0-0.6,0-0.6c0,0,0,0,0,0c0,0-0.2-0.3-0.2-0.3c0,0,0,0,0,0s0,0-0.1,0
|
||||
c0,0-0.1,0-0.1,0s-0.1,0-0.1,0C16.6,25.9,16.6,26,16.6,26z M18.6,26C18.6,26,18.5,26,18.6,26c-0.1,0-0.1,0-0.1,0.1s0,0,0,0
|
||||
c0,0-0.1,0-0.1,0.1c-0.1,0.1-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0.5,0,0.5c0.1,0.1,0.2,0.3,0.3,0.3l0.1,0.1h5c2.8,0,5.1,0,5.1,0
|
||||
c0.1,0,0.3-0.2,0.3-0.3c0,0,0,0,0,0c0,0,0,0,0-0.1s0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1
|
||||
c0,0,0,0,0-0.1c0,0,0-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0-0.1-0.1-0.1-0.2-0.1c-0.1,0-0.1,0-0.1,0c0,0-1.7,0-5,0
|
||||
C20.3,25.9,18.6,26,18.6,26z M10.5,28.6C10.5,28.6,10.4,28.6,10.5,28.6c-0.1,0-0.3,0.2-0.4,0.3c0,0.1-0.1,0.5,0,0.5c0,0,0,0,0,0.1
|
||||
c0,0.1,0.2,0.2,0.2,0.2c0,0,0,0,0.1,0.1c0.1,0.1,0.5,0.1,0.6,0c0,0,0.1-0.1,0.1-0.1c0.2-0.1,0.3-0.5,0.2-0.8c0-0.1-0.2-0.3-0.3-0.3
|
||||
c0,0,0,0,0,0c0,0-0.1,0-0.3,0C10.6,28.6,10.5,28.6,10.5,28.6z M12.5,28.6C12.5,28.6,12.5,28.6,12.5,28.6c-0.1,0-0.2,0.2-0.2,0.2
|
||||
c0,0,0,0,0,0c0,0,0,0,0,0.1s0,0.1,0,0.1c0,0,0,0.1,0,0.1s0,0.1,0,0.2c0,0,0,0,0,0.1c0,0.1,0.2,0.3,0.2,0.3c0,0,0.1,0,0.1,0.1
|
||||
c0.1,0.1,10.2,0.1,10.2,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0.1-0.1c0.2-0.1,0.3-0.3,0.3-0.5c0-0.2-0.1-0.4-0.1-0.4
|
||||
c0,0-0.1,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0-1.7,0-5.1,0S12.5,28.6,12.5,28.6z"/>
|
||||
<path class="st2" d="M18.9,4.2c0,0-0.1,0-0.2,0c-0.1,0-0.2,0-0.2,0c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.2,0c-0.2,0-0.4,0-0.4,0.1c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0
|
||||
c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0s-0.1,0-0.2,0.1c-0.1,0-0.1,0.1-0.2,0.1c0,0,0,0,0,0s0,0,0,0c0,0-0.2,0.1-0.2,0.1
|
||||
c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c0,0-0.2,0.1-0.3,0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0
|
||||
c0,0-0.1,0-0.2,0.1c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0s-0.1,0.1-0.2,0.1
|
||||
c-0.1,0-0.2,0.1-0.2,0.1c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0-0.1,0c0,0,0,0-0.1,0.1
|
||||
c0,0-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0.1-0.2,0.3-0.3,0.3
|
||||
c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1C13.1,7,13,7,13,7c0,0,0,0,0,0c0,0,0,0,0,0
|
||||
c0,0,0,0-0.2,0.2c-0.1,0.1-0.1,0.1-0.1,0.1c0,0,0,0-0.1,0c0,0-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2c-0.1,0.1-0.1,0.1-0.1,0.1
|
||||
c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0S12.1,8.2,12,8.2c-0.1,0.1-0.1,0.2-0.2,0.2c0,0,0,0.1-0.1,0.1s0,0,0,0.1c0,0,0,0.1-0.1,0.1
|
||||
c0,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1-0.1,0.2c0,0,0,0,0,0c0,0-0.1,0.1,0,0.2c0,0,0,0,0,0
|
||||
c0,0-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0.1,0,0.1,0,0.1c0,0,0,0,0,0c0,0,0,0.1-0.1,0.3c0,0.1-0.1,0.2-0.1,0.2c0,0,0,0.1,0,0.1
|
||||
c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0.1,0,0.1,0,0.2c0,0,0,0,0,0s0,0.1,0,0.1c0,0.1,0,0.1,0,0.1c0,0,0,0.1,0,0.2s0,0.1,0,0.1
|
||||
c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c0,0,0,0.1,0,0.2c0,0.1,0,0.2,0,0.2c-0.1,0,0,1.2,0,1.2c0,0,0,0,0,0.1c0,0,0,0.1,0.1,0.1
|
||||
c0,0,0.1,0.1,0.1,0.1c0,0,4.1,0,9.2,0c6.1,0,9.1,0,9.1,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1-0.1c0,0,0.1-0.1,0.1-0.1c0,0,0,0,0,0
|
||||
c0,0,0-0.1,0-0.1c0-0.1,0.1-0.6,0-0.7c0,0,0-0.2,0-0.3c0-0.2,0-0.3,0-0.3c0,0,0-0.1,0-0.2c0-0.1,0-0.2,0-0.2c0,0,0-0.1,0-0.1
|
||||
c0-0.1,0-0.2,0-0.2s0-0.1,0-0.1s0-0.1,0-0.2c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.2
|
||||
c0-0.1,0-0.2,0-0.2c0,0,0-0.1-0.1-0.2c-0.1-0.2-0.1-0.4-0.1-0.4c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0
|
||||
c0,0,0,0,0-0.1c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1s0,0,0,0c0,0,0-0.1-0.1-0.1c0-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1
|
||||
c0,0,0-0.1-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0-0.1-0.1-0.3-0.1-0.3c0,0,0,0,0-0.1s0-0.1,0-0.1s0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0-0.1,0-0.1-0.1c0,0,0-0.1-0.1-0.1c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
c0,0-0.2-0.3-0.3-0.3c0,0,0,0,0,0c0,0-0.1-0.1-0.2-0.3c-0.1-0.1-0.3-0.3-0.3-0.3c0,0-0.1-0.2-0.2-0.2c0,0-0.1,0-0.1-0.1
|
||||
c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0-0.3-0.2-0.3-0.3c0,0,0,0-0.1,0c0,0-0.1,0-0.1-0.1
|
||||
c-0.1-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0-0.1-0.1-0.1c0,0-0.1-0.1-0.2-0.1c0,0-0.1-0.1-0.2-0.1c0,0-0.1-0.1-0.1-0.1
|
||||
c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0-0.2-0.1-0.2-0.1c0,0,0,0,0,0c0,0,0,0-0.1-0.1c-0.1,0-0.1-0.1-0.2-0.1c0,0-0.1-0.1-0.2-0.1
|
||||
c0,0-0.1,0-0.2-0.1c0,0-0.1-0.1-0.1-0.1c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1-0.1c-0.1,0-0.2-0.1-0.2-0.1c0,0-0.1-0.1-0.2-0.1
|
||||
c0,0-0.1,0,0,0c0,0-0.1-0.1-0.3-0.1c-0.2-0.1-0.3-0.1-0.4-0.1c0,0-0.1,0-0.1,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0
|
||||
c0,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c0,0-0.1,0-0.2,0c-0.4,0-0.6-0.1-0.6-0.1c0,0-0.1,0,0,0c0,0,0,0,0,0C20.6,4.1,19,4.1,18.9,4.2z"
|
||||
/>
|
||||
<path class="st3" d="M13.1,6.8C13.1,6.9,13.1,6.9,13.1,6.8C13.2,6.8,13.2,6.8,13.1,6.8C13.2,6.8,13.2,6.8,13.1,6.8z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.2 KiB |
1
apps/axelar/axelscore/www/near.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><defs><style>.cls-1{fill:#050505;}.cls-2{fill:#ececec;}.cls-3{fill:#fefefe;}</style></defs><circle class="cls-2" cx="150" cy="150" r="149.5"/><path class="cls-3" d="M299.92,131.01c-1.76-.22-1.82-1.5-2.02-2.9-3.76-27.15-14.47-51.27-31.82-72.45C242.03,26.32,211.38,8.3,173.88,2.11c-1.39-.23-2.69-.26-2.9-2.03C212.8,.08,254.61,.12,296.42,0c2.98,0,3.59,.6,3.58,3.58-.12,42.48-.08,84.95-.08,127.43Z"/><path class="cls-3" d="M171.99,299.92c.2-1.77,1.5-1.79,2.89-2.03,29.67-5.24,55.51-17.92,77.52-38.74,21.46-20.3,35.64-44.66,42.95-73.12,1.19-4.63,1.8-9.41,2.55-14.14,.22-1.4,.27-2.68,2.03-2.89,0,42.48-.04,84.95,.08,127.43,0,2.98-.6,3.59-3.58,3.58-41.48-.12-82.95-.08-124.43-.08Z"/><path class="cls-3" d="M129.01,.08c-.18,1.41-1.09,1.8-2.4,2-29.17,4.43-54.57,16.68-76.54,36.38C23.74,62.08,8.04,91.4,2.11,126.12c-.24,1.39-.26,2.68-2.03,2.89C.08,87.28,.12,45.55,0,3.82,0,.71,.71,0,3.82,0c41.73,.12,83.46,.08,125.19,.08Z"/><path class="cls-3" d="M.08,170.99c1.42,.17,1.81,1.08,2,2.39,3.91,26.6,14.62,50.36,31.44,71.09,22.41,27.62,51.38,44.95,86.19,52.61,2.74,.6,6.54-.94,8.3,2.83-41.48,0-82.95-.04-124.43,.08-2.98,0-3.59-.6-3.58-3.58,.12-41.81,.08-83.62,.08-125.43Z"/><path class="cls-1" d="M68.5,150.61c0-20.31,0-40.63,0-60.94,0-9.71,3.72-15.93,11.16-18.74,8.75-3.31,17.82-.98,23.88,6.28,32.1,38.48,64.18,76.99,96.26,115.48,.43,.51,.81,1.06,1.28,1.54,.9,.91,1.51,2.71,2.96,2.3,1.6-.45,1.01-2.25,1.01-3.51,.03-28.47,.03-56.95-.01-85.42,0-1.2,.74-2.91-.98-3.46-1.24-.4-2.03,.91-2.88,1.65-9.81,8.51-19.59,17.06-29.4,25.57-1.98,1.71-4,4.18-6.8,1.45-2.44-2.38-.59-4.55,.81-6.63,10.68-15.88,21.34-31.78,32.06-47.64,5.13-7.6,12.88-10.52,20.71-7.98,7.69,2.49,12.03,8.94,12.03,18.13,.02,41.3,.02,82.59,0,123.89,0,9.13-3.97,15.5-11.23,18.23-8.59,3.23-17.86,.99-23.59-5.87-32.22-38.6-64.41-77.23-96.66-115.8-1.28-1.53-2.23-4.58-4.54-3.72-1.89,.71-.82,3.59-.82,5.48-.06,27.31-.05,54.62-.02,81.92,0,1.43-.72,3.37,.7,4.19,1.89,1.09,2.86-1.09,4-2.07,9.63-8.21,19.19-16.49,28.76-24.77,1.94-1.68,3.94-3.63,6.5-1.45,2.6,2.22,.92,4.46-.51,6.6-10.78,16.02-21.51,32.07-32.32,48.06-4.95,7.31-12.22,10.13-19.81,7.9-7.88-2.31-12.49-8.72-12.52-17.73-.05-20.98-.02-41.96-.02-62.94Z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
14
apps/axelar/axelscore/www/optimism.svg
Normal file
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns:xodm="http://www.corel.com/coreldraw/odm/2003" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 2500 2500" style="enable-background:new 0 0 2500 2500;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#FF0420;}
|
||||
.st1{fill:#FFFFFF;}
|
||||
</style>
|
||||
<g id="Layer_x0020_1">
|
||||
<g id="_1995692876000">
|
||||
<path class="st0" d="M2500,1250C2500,560,1940,0,1250,0S0,560,0,1250s560,1250,1250,1250S2500,1940,2500,1250z"></path>
|
||||
<path class="st1" d="M886,1582c-75,0-136-18-183-53c-47-36-71-87-71-152c0-14,2-31,5-51c8-45,20-99,35-163c43-172,153-258,330-258 c48,0,92,8,130,25c38,16,68,40,90,72s33,69,33,113c0,13-2,30-5,50c-10,56-21,110-34,163c-22,86-60,150-114,193 c-54,42-126,63-216,63V1582z M900,1447c35,0,65-11,89-31c25-21,43-52,54-95c15-59,26-110,33-154c3-13,4-27,4-41c0-57-30-86-89-86 c-35,0-65,11-90,31c-25,21-42,52-53,95c-12,42-23,93-34,154c-3,13-4,26-4,40C809,1418,840,1447,900,1447z"></path>
|
||||
<path class="st1" d="M1297,1573c-7,0-12-2-16-7c-3-5-4-11-3-17l130-610c1-7,5-13,11-17c6-5,12-7,18-7h250c70,0,125,15,167,43 c43,29,64,71,64,125c0,16-2,32-6,49c-16,72-47,125-95,160c-47,35-112,52-194,52h-127l-43,206c-2,7-5,13-11,17c-6,5-12,7-18,7h-128 L1297,1573z M1629,1214c27,0,49-7,69-22s33-35,40-62c2-11,3-20,3-28c0-18-6-32-16-42c-11-10-29-15-55-15h-113l-36,168h108V1214z"></path>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
1
apps/axelar/axelscore/www/osmosis.svg
Normal file
|
After Width: | Height: | Size: 9.7 KiB |
5
apps/axelar/axelscore/www/polygon.svg
Normal file
@ -0,0 +1,5 @@
|
||||
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M15 30C23.2843 30 30 23.2843 30 15C30 6.71573 23.2843 0 15 0C6.71573 0 0 6.71573 0 15C0 23.2843 6.71573 30 15 30Z" fill="#6F41D8" />
|
||||
<path d="M19.7738 11.8997C19.4279 11.6981 18.9788 11.6981 18.5982 11.8997L15.8991 13.4503L14.0663 14.4609L11.3672 16.0106C11.0213 16.2131 10.5722 16.2131 10.1916 16.0106L8.04662 14.7975C7.70068 14.5959 7.45881 14.2256 7.45881 13.8206V11.4281C7.45881 11.0241 7.66599 10.6537 8.04662 10.4512L10.156 9.27188C10.5029 9.06938 10.9529 9.06938 11.3335 9.27188L13.4429 10.4512C13.7897 10.6537 14.0316 11.0241 14.0316 11.4281V12.9787L15.8644 11.9334V10.3837C15.8665 10.1825 15.8126 9.98458 15.7088 9.81211C15.605 9.63964 15.4554 9.49935 15.2766 9.40688L11.3672 7.18313C11.0213 6.98062 10.5722 6.98062 10.1916 7.18313L6.21287 9.40688C6.03408 9.49935 5.88447 9.63964 5.78069 9.81211C5.67691 9.98458 5.62303 10.1825 5.62506 10.3837V14.865C5.62506 15.27 5.83224 15.6403 6.21287 15.8428L10.1916 18.0666C10.5376 18.2681 10.9876 18.2681 11.3672 18.0666L14.0663 16.5497L15.8991 15.5053L18.5982 13.9894C18.9441 13.7869 19.3932 13.7869 19.7738 13.9894L21.8841 15.1688C22.231 15.3703 22.4719 15.7406 22.4719 16.1456V18.5381C22.4719 18.9422 22.2657 19.3125 21.8841 19.515L19.7747 20.7281C19.4279 20.9306 18.9779 20.9306 18.5982 20.7281L16.4879 19.5487C16.141 19.3462 15.8991 18.9759 15.8991 18.5719V17.0212L14.0663 18.0666V19.6163C14.0663 20.0203 14.2735 20.3916 14.6541 20.5931L18.6329 22.8169C18.9788 23.0194 19.4279 23.0194 19.8085 22.8169L23.7872 20.5931C24.1332 20.3916 24.3751 20.0212 24.3751 19.6163V15.135C24.3771 14.9337 24.3232 14.7358 24.2194 14.5634C24.1156 14.3909 23.966 14.2506 23.7872 14.1581L19.7747 11.8997H19.7738Z" fill="white" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
1
apps/axelar/axelscore/www/random.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_3" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 78 66"><defs><style>.cls-1{stroke:#000;stroke-width:2px;}</style></defs><path class="cls-1" d="M30.43,32.92c-1.03-1.13-2.04-2.24-3.05-3.34-3.71-4.06-7.43-8.1-11.13-12.17-.67-.74-1.4-1.09-2.4-1.08-3.19,.03-6.38,.01-9.57,0-.44,0-.89-.02-1.3-.13-.98-.27-1.59-1.19-1.5-2.16,.09-.98,.85-1.84,1.86-1.85,3.7-.03,7.41-.09,11.1,.07,2.17,.09,3.91,1.29,5.38,2.9,4.12,4.53,8.26,9.04,12.39,13.55,.32,.35,.65,.7,1.04,1.12,.45-.48,.86-.93,1.27-1.38,3.98-4.36,7.97-8.7,11.93-13.08,1.96-2.16,4.35-3.25,7.28-3.22,4.21,.04,8.43,.01,12.64,.01,.36,0,.71,0,1.39,0-.48-.39-.73-.62-1-.82-2.68-1.92-5.36-3.84-8.05-5.75-.8-.57-1.15-1.33-.93-2.29,.2-.87,.79-1.46,1.67-1.52,.54-.04,1.19,.11,1.63,.42,4.79,3.37,9.56,6.78,14.32,10.2,1.45,1.04,1.45,2.6,0,3.64-4.76,3.42-9.53,6.83-14.31,10.22-1.14,.81-2.41,.64-3.11-.35-.71-1.02-.45-2.21,.71-3.04,2.62-1.88,5.24-3.75,7.86-5.63,.31-.23,.61-.47,1.09-.84-.53-.03-.84-.07-1.15-.07-4.29,0-8.58,.04-12.86-.02-1.67-.02-2.91,.53-4.03,1.78-4.2,4.7-8.49,9.32-12.74,13.98-.24,.27-.48,.54-.77,.88,.86,.95,1.69,1.86,2.52,2.78,3.79,4.14,7.58,8.26,11.35,12.42,.82,.9,1.78,1.41,2.97,1.41,4.83,.01,9.67,0,14.75,0-.38-.32-.59-.53-.83-.7-2.71-1.95-5.42-3.88-8.13-5.83-1.04-.75-1.31-1.79-.78-2.78,.47-.88,1.47-1.3,2.43-.99,.27,.09,.53,.24,.77,.41,4.75,3.38,9.49,6.75,14.22,10.15,1.45,1.04,1.47,2.6,.03,3.64-4.79,3.45-9.59,6.87-14.4,10.28-1.07,.76-2.33,.56-3.02-.39-.72-1.01-.47-2.21,.69-3.04,2.62-1.88,5.24-3.75,7.86-5.63,.32-.23,.64-.47,1.16-.86-.56-.03-.9-.07-1.24-.07-4.18,0-8.36-.02-12.53,0-3,.02-5.48-1.02-7.5-3.26-4.11-4.54-8.25-9.04-12.38-13.56-.25-.27-.5-.53-.83-.87-.3,.32-.57,.6-.84,.88-4.11,4.49-8.25,8.95-12.31,13.48-2.05,2.29-4.51,3.39-7.56,3.33-2.82-.05-5.64,0-8.47-.01-1.55,0-2.55-.86-2.53-2.13,.02-1.25,.96-2.04,2.48-2.04,3.23,0,6.45-.02,9.68,0,1.07,0,1.87-.37,2.59-1.17,4.46-4.91,8.95-9.79,13.43-14.68,.22-.24,.42-.49,.7-.81Z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
24
apps/axelar/axelscore/www/regen.svg
Normal file
@ -0,0 +1,24 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="70" viewBox="0 0 70 70" fill="none"><script xmlns=""/>
|
||||
<circle cx="35" cy="35" r="35" fill="url(#paint0_linear)"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M35 67.2626C52.8181 67.2626 67.2626 52.7307 67.2626 34.8045C67.2626 16.8784 52.8181 2.34644 35 2.34644C17.1819 2.34644 2.73743 16.8784 2.73743 34.8045C2.73743 52.7307 17.1819 67.2626 35 67.2626ZM35 64.5252C51.3063 64.5252 64.5251 51.2188 64.5251 34.8045C64.5251 18.3903 51.3063 5.08387 35 5.08387C18.6937 5.08387 5.47486 18.3903 5.47486 34.8045C5.47486 51.2188 18.6937 64.5252 35 64.5252Z" fill="white"/>
|
||||
<path d="M32.015 27.6349V27.661L29.5643 14.7299L27.5308 14.0781L26.2534 15.7988L32.015 27.6349Z" fill="white"/>
|
||||
<path d="M33.3445 22.2384L34.3873 27.244L35.5084 22.1602L34.4134 21.4302L33.3445 22.2384Z" fill="white"/>
|
||||
<path d="M41.0875 23.1248L39.7579 23.2551L38.1937 28.2086L41.635 24.324L41.0875 23.1248Z" fill="white"/>
|
||||
<path d="M52.4544 24.1676V22.0558L50.3948 21.4041L40.7486 30.4506L52.4544 24.1676Z" fill="white"/>
|
||||
<path d="M28.8864 29.5121L26.0186 25.2104L26.0708 25.3147L26.0186 25.2104L24.7151 25.419L24.5065 26.7226L28.8864 29.5121Z" fill="white"/>
|
||||
<path d="M47.3445 33.8918L42.2086 34.9086L47.3445 36.0297L48.1266 34.9607L47.3445 33.8918Z" fill="white"/>
|
||||
<path d="M26.5922 34.9346L13.4004 33.2661L12.1229 34.9868L13.4004 36.7075L26.5922 34.9346Z" fill="white"/>
|
||||
<path d="M21.7169 37.8026L21.3259 39.0279L22.3948 39.8101L26.9572 37.2551L21.7169 37.8026Z" fill="white"/>
|
||||
<path d="M23.229 41.4262L23.1769 42.7298L24.4283 43.173L28.0782 39.3406L23.229 41.4262Z" fill="white"/>
|
||||
<path d="M29.7988 41.1135L25.9143 44.5288L26.2532 45.7802L27.5828 45.8323L29.7988 41.1135Z" fill="white"/>
|
||||
<path d="M34.4134 42.6255L33.3706 47.6832L34.4395 48.4393L35.5084 47.6571L34.4134 42.6255Z" fill="white"/>
|
||||
<path d="M52.4804 45.7019L40.7486 39.4709L50.4469 48.4654L52.4804 47.8136V45.7019Z" fill="white"/>
|
||||
<path d="M39.5494 46.6665L36.9163 42.2605L37.5159 47.3182L38.7673 47.7093L39.5494 46.6665Z" fill="white"/>
|
||||
<path d="M32.041 42.2605L26.3315 54.1227L27.6089 55.8434L29.6425 55.1916L32.041 42.2605Z" fill="white"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear" x1="18.3799" y1="65.6983" x2="45.1676" y2="-2.55798e-06" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#3FAD6C"/>
|
||||
<stop offset="1" stop-color="#6EC2B7"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.3 KiB |
3
apps/axelar/axelscore/www/rudderstack.js
Normal file
@ -0,0 +1,3 @@
|
||||
!function(){var e=window.rudderanalytics=window.rudderanalytics||[];e.methods=["load","page","track","identify","alias","group","ready","reset","getAnonymousId","setAnonymousId"],e.factory=function(t){return function(){var r=Array.prototype.slice.call(arguments);return r.unshift(t),e.push(r),e}};for(var t=0;t<e.methods.length;t++){var r=e.methods[t];e[r]=e.factory(r)}e.loadJS=function(e,t){var r=document.createElement("script");r.type="text/javascript",r.async=!0,r.src="https://cdn.rudderlabs.com/v1.1/rudder-analytics.min.js";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(r,a)},e.loadJS(),
|
||||
e.load('29a6Pl6fLlx4iYiOdfxRt0IBad9','https://flipsidecrworumuyiulf.dataplane.rudderstack.com'),
|
||||
e.page()}();
|
||||
26
apps/axelar/axelscore/www/satellite_logo.svg
Normal file
@ -0,0 +1,26 @@
|
||||
<svg width="47" height="48" viewBox="0 0 47 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1651_337)">
|
||||
<path d="M25.6189 11.4483L12.85 17.8813L7.39429 6.01384L20.2878 0L25.6189 11.4483Z" fill="#D1E2FE" />
|
||||
<path d="M37.4108 24.0354L38.4137 19.0519L34.0815 9.77701L40.9971 6.48828L46.2155 18.7651L37.4108 24.0354Z" fill="#D1E2FE" />
|
||||
<path d="M38.9774 26.1538V28.0602L35.4444 29.7115L34.6829 28.0701L38.9774 26.1538Z" fill="#669BFF" />
|
||||
<path d="M13.6175 34.3113L7.9541 22.2085L8.13016 19.6416L13.3347 30.7477L13.6175 34.3113Z" fill="#669BFF" />
|
||||
<path d="M13.6175 34.3132V34.3448L5.86322 37.9618L0 25.9875L7.97785 22.2598L13.6175 34.3132Z" fill="#D1E2FE" />
|
||||
<path d="M38.4116 19.0522L37.4127 24.0358L33.5731 25.693L19.6687 31.7187L19.6509 31.7266L13.6176 34.3133L13.3367 30.7477L38.4116 19.0522Z" fill="#B8CAFE" />
|
||||
<path d="M39.4423 38.0923V41.6856L25.8999 48L26.2758 44.2446L39.4423 38.0923Z" fill="#447AD3" />
|
||||
<path d="M26.2757 44.2444L25.8999 47.9999L20.3789 36.9748L19.0891 34.2537L19.3799 31.5325L19.5065 31.4712L26.2757 44.2444Z" fill="#1F54FE" />
|
||||
<path d="M5.8652 37.9616L5.42605 40.6274L0.120667 30.3538L0 25.9893L5.8652 37.9616Z" fill="#1F54FE" />
|
||||
<path d="M19.3799 31.5327L19.0891 34.2539L11.8313 37.6395L11.4238 37.8294L5.42603 40.6276L5.86517 37.9619" fill="#669BFF" />
|
||||
<path d="M20.282 36.7674L11.8314 40.6257L11.7463 37.6791L19.0892 34.2539L20.282 36.7674Z" fill="#669BFF" />
|
||||
<path d="M12.7234 17.6043L11.1488 18.3518L7.39429 10.6788V6.01367L12.7234 17.6043Z" fill="#1F54FE" />
|
||||
<path d="M46.2054 18.7773L33.1912 24.9613L33.5433 25.7127L34.6807 28.072L38.9654 26.3456L46.4922 22.8274L46.2034 18.7793L46.2054 18.7773Z" fill="#669BFF" />
|
||||
<path d="M10.3337 38.3377L11.7461 37.6792L11.8312 40.6258L10.3337 38.3377Z" fill="#669BFF" />
|
||||
<path d="M39.4364 38.0962L26.2699 44.2485L19.5066 31.4713L33.2151 24.9512L35.6522 30.1285L35.7511 30.3421H35.7531L39.4364 38.0962Z" fill="#B8CAFE" />
|
||||
<path d="M8.13013 19.6416L33.1576 7.76025L38.4135 19.0523L13.3346 30.7477" fill="#FFFEFF" />
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1651_337">
|
||||
<rect width="46.4943" height="48" fill="white" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 2.2 KiB |
18
apps/axelar/axelscore/www/secret.svg
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 122 122" style="enable-background:new 0 0 122 122;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.secret0{fill:#1B1B1B;stroke:#FFFFFF;stroke-width:4;}
|
||||
.secret1{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
||||
.secret2{fill:none;stroke:#FFFFFF;stroke-width:2;stroke-linecap:round;}
|
||||
</style>
|
||||
<circle class="secret0" cx="61" cy="61" r="59"/>
|
||||
<path class="secret1" d="M78.3,43.7c0.8,0.8,2.1,0.7,2.7-0.2c0.6-0.7,0.5-1.8-0.2-2.4c-6.6-6.3-12.5-9.5-22.3-9
|
||||
C48.2,32.6,39.1,38,39.7,49.4C40.2,59.5,50,63.2,58.6,66.5c6.6,2.5,12.4,4.7,12.7,9.4c0.3,5.2-5,8.3-9.6,8.6
|
||||
c-8.7,0.5-13.8-2.6-19.5-8.1c-0.7-0.7-1.8-0.7-2.5-0.1c-0.8,0.7-0.8,1.9-0.1,2.7c6.4,6.4,13,9.6,22.6,9.1C71.8,87.4,83.6,82,83,70.6
|
||||
c-0.5-9.9-9.9-13.6-18.4-16.8c-7-2.7-13.5-5.2-13.8-10.9c-0.2-4.1,4.7-7.1,8.2-7.3C67.5,35.2,72.8,38.2,78.3,43.7z M79.4,70.8
|
||||
c0,4.4-2.4,8.2-6,10.4l-0.2-0.1c1.3-1.8,1.5-4.1,1.5-6.3c0-6.5-7.1-9-14.6-11.7c-8.3-3-17-6.1-17-14.9c0-4,1.8-8.3,5.3-10.3l0.1,0.2
|
||||
c-0.9,1.9-1.3,4-1.3,6.1c0,7.2,7.9,10.1,15.9,13.1C71.3,60.3,79.4,63.3,79.4,70.8z"/>
|
||||
<path class="secret2" d="M60.5,108c26.2,0,47.5-21.3,47.5-47.5S86.7,13,60.5,13S13,34.3,13,60.5S34.3,108,60.5,108z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.4 KiB |
1
apps/axelar/axelscore/www/sei.svg
Normal file
|
After Width: | Height: | Size: 55 KiB |
198
apps/axelar/axelscore/www/shiny.css
Normal file
@ -0,0 +1,198 @@
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&display=swap');
|
||||
|
||||
body {
|
||||
background-color: white;
|
||||
color: black;
|
||||
font-family: 'IBM Plex Sans Condensed', sans-serif;
|
||||
font-size: 18px;
|
||||
letter-spacing: -.03em;
|
||||
}
|
||||
|
||||
hr {
|
||||
width: 90%;
|
||||
border: none; /* Remove the default border */
|
||||
border-top: 1px dashed #000; /* Add a dashed border to the top */
|
||||
margin: auto; /* Center the hr element */
|
||||
}
|
||||
|
||||
.container-fluid {
|
||||
/* max-width: min(1650px, 90%); */
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
height: 100%;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.flex-container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#leftcol,
|
||||
#rightcol {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-left: 1px dashed black;
|
||||
border-right: 1px dashed black;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
text-align: center;
|
||||
font-size: 0.88em;
|
||||
}
|
||||
|
||||
.top-border {
|
||||
border-top: 1px dashed black;
|
||||
}
|
||||
|
||||
.last-child-border {
|
||||
margin-top: auto;
|
||||
border-bottom: 1px dashed black;
|
||||
}
|
||||
|
||||
#rightcol i,
|
||||
#leftcol i {
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.titlerow {
|
||||
padding-top: 10px;
|
||||
border-top: 1px dashed black;
|
||||
border-bottom: 1px dashed black;
|
||||
padding-bottom: 10px;
|
||||
text-align: center;
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.upperwords {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
}
|
||||
|
||||
/* upper right icon links */
|
||||
#icons {
|
||||
display: flex;
|
||||
padding-top: 10px;
|
||||
padding-left: 30px;
|
||||
}
|
||||
|
||||
.aboutlinks {
|
||||
padding-left: 20px;
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#mainsection {
|
||||
background-image: linear-gradient(104.05deg, rgba(244,244,244,0.5) 0.02%, rgba(212,238,252,0.5) 50.02%, rgba(164,218,248,0.5) 100.02%)!important;
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px dashed black;
|
||||
}
|
||||
|
||||
.mapcol {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.scorecontainer {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.leftbox {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.rightbox {
|
||||
width: 50%;
|
||||
border-left: 1px dashed black;
|
||||
}
|
||||
|
||||
.score {
|
||||
font-size: 1.5em;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.scoretitle {
|
||||
font-size: 1.1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
#clickedstation {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
}
|
||||
|
||||
#holdd3 {
|
||||
margin-top: 15px;
|
||||
border-right: 1px dashed black;
|
||||
}
|
||||
|
||||
.button, .button--large, .button--primary, .button--rounded, .dynamic-connect-button, .typography, .typography--button-primary, .typography--primary {
|
||||
padding: 2px !important;
|
||||
border-radius: 0 !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.connect {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.promo {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-weight: 900;
|
||||
font-size: 1.1em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.diagonal-lines {
|
||||
position: relative;
|
||||
background-color: #fff;
|
||||
width: 100%;
|
||||
height: 100px;
|
||||
overflow: hidden;
|
||||
|
||||
}
|
||||
|
||||
.diagonal-lines::before,
|
||||
.diagonal-lines::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 200%;
|
||||
height: 1px;
|
||||
background-color: transparent;
|
||||
left: -50%;
|
||||
top: 50%;
|
||||
transform-origin: 50% 0;
|
||||
}
|
||||
|
||||
.diagonal-lines::before {
|
||||
transform: rotate(45deg);
|
||||
border-top: 1px dashed black;
|
||||
}
|
||||
|
||||
.diagonal-lines::after {
|
||||
transform: rotate(-45deg);
|
||||
border-top: 1px dashed black;
|
||||
}
|
||||
1
apps/axelar/axelscore/www/squid_avalanche_evm.svg
Normal file
|
After Width: | Height: | Size: 70 KiB |
1
apps/axelar/axelscore/www/squid_avalanche_ibc.svg
Normal file
|
After Width: | Height: | Size: 21 KiB |
1
apps/axelar/axelscore/www/squid_avalanche_other.svg
Normal file
|
After Width: | Height: | Size: 21 KiB |
1
apps/axelar/axelscore/www/squid_evm_ibc.svg
Normal file
|
After Width: | Height: | Size: 64 KiB |
1
apps/axelar/axelscore/www/squid_evm_other.svg
Normal file
|
After Width: | Height: | Size: 21 KiB |
1
apps/axelar/axelscore/www/squid_ibc_other.svg
Normal file
|
After Width: | Height: | Size: 97 KiB |
10
apps/axelar/axelscore/www/squid_logo.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_16_375)">
|
||||
<path d="M25.8554 11.1325L25.8528 11.1165L25.7811 11.119C25.7811 11.119 25.7795 11.14 25.779 11.142L25.7551 11.143C25.7239 11.531 25.6578 11.8995 25.559 12.238C25.3167 13.0715 24.9106 13.9135 24.4161 14.609C23.869 15.379 23.232 15.9495 22.5737 16.259C22.1629 16.4525 21.7558 16.5945 21.3637 16.681C21.0595 16.747 20.7594 16.78 20.4729 16.78C19.4797 16.78 18.5697 16.378 17.8407 15.618C16.7138 14.4425 16.0612 12.422 16.2167 10.5895C16.2708 9.9485 16.3774 9.352 16.4804 8.7755C16.6993 7.5515 16.888 6.4945 16.535 5.3895C16.3457 4.7975 15.9458 4.3385 15.4081 4.0965C15.042 3.9315 14.6598 3.848 14.2714 3.848C13.0229 3.848 11.9928 4.6935 11.4904 5.4175C10.7234 6.523 10.3412 7.915 10.4426 9.236C10.5373 10.4725 10.9829 11.2875 11.6516 12.391C11.987 12.944 12.3365 13.4325 12.6454 13.864C13.1674 14.594 13.6183 15.2245 13.8408 15.916C14.1492 16.8745 13.935 17.3355 13.8284 17.4895C13.6968 17.6795 13.4857 17.789 13.2002 17.815C13.1638 17.8185 13.1279 17.82 13.0931 17.82C12.2216 17.82 12.2049 16.676 12.195 15.992V15.9765C12.1945 15.9315 12.1935 15.8885 12.193 15.8475C12.1633 14.508 11.6282 13.7075 10.9502 12.6935C10.5248 12.0575 10.0428 11.337 9.61948 10.3555C8.94244 8.7875 8.7724 7.275 9.11456 5.8605C9.12652 5.81 9.13952 5.7595 9.15304 5.7085C9.56852 4.134 10.5955 2.1175 13.1269 1.453C13.6063 1.327 14.0988 1.263 14.5902 1.263C16.0784 1.263 17.3748 1.852 18.1464 2.8785C18.771 3.709 19.0928 4.6505 19.1313 5.7565C19.1407 6.0195 19.1334 6.295 19.11 6.5755C19.0554 7.208 18.916 7.9015 18.6846 8.695C18.2166 10.299 18.1033 11.658 18.3482 12.7335C18.5359 13.5585 18.9462 14.187 19.4735 14.4575C19.9009 14.6765 20.3564 14.7875 20.827 14.7875C22.0293 14.7875 23.1244 14.05 23.6766 13.3195C24.545 12.1705 25.0026 10.1445 24.9278 8.926C24.9002 8.479 24.8607 8.1005 24.8061 7.7655L24.8045 7.7605L24.8035 7.758C23.776 5.6215 22.1463 3.8105 20.0907 2.521C17.9821 1.1995 15.5298 0.5 13 0.5C9.52744 0.5 6.26288 1.8 3.80744 4.161C1.35252 6.522 0 9.661 0 13C0 13.9705 0.11648 14.9385 0.34684 15.878L0.351 15.8945L0.42328 15.8845C0.42328 15.8845 0.42224 15.864 0.42172 15.8625L0.44564 15.859C0.40092 15.115 0.47112 14.3985 0.64896 13.787C0.89128 12.954 1.2974 12.1115 1.79192 11.416C2.33896 10.6465 2.97596 10.0755 3.63428 9.766C4.04196 9.574 4.44704 9.4325 4.83756 9.3455C5.14436 9.2785 5.447 9.245 5.73612 9.245C6.72932 9.245 7.63984 9.6465 8.36836 10.4065C9.4952 11.5815 10.1478 13.6025 9.99232 15.4355C9.93824 16.077 9.83164 16.673 9.72816 17.2495C9.50924 18.4735 9.32048 19.5305 9.67356 20.6355C9.86232 21.2275 10.2627 21.6865 10.8004 21.9285C11.1665 22.0935 11.5487 22.177 11.9371 22.177C13.1856 22.177 14.2158 21.3315 14.7181 20.607C15.4851 19.5015 15.8673 18.1095 15.7659 16.7885C15.6712 15.5525 15.2256 14.737 14.5569 13.6335C14.2225 13.082 13.8726 12.5925 13.5637 12.1605C13.0416 11.4305 12.5908 10.8 12.3682 10.108C12.0598 9.1495 12.2741 8.6885 12.3802 8.535C12.5117 8.345 12.7228 8.2355 13.0083 8.2095C13.0447 8.206 13.0811 8.2045 13.1154 8.2045C13.987 8.2045 14.0036 9.3475 14.0135 10.03L14.014 10.0495C14.0145 10.094 14.0156 10.136 14.0161 10.1765C14.0457 11.516 14.5808 12.3165 15.2589 13.3305C15.6842 13.9665 16.1663 14.6875 16.5896 15.6685C17.2453 17.1865 17.4252 18.654 17.1252 20.03C17.1168 20.068 17.108 20.106 17.0992 20.144C16.7019 21.787 15.6822 23.889 13.0816 24.572C12.6022 24.698 12.1098 24.7615 11.6184 24.762C10.1301 24.762 8.83376 24.173 8.06208 23.1465C7.43756 22.316 7.11568 21.3745 7.0772 20.2685C7.07148 20.108 7.072 19.942 7.07824 19.776C7.1084 19.056 7.25452 18.256 7.5244 17.33C7.9924 15.726 8.10576 14.367 7.86084 13.2915C7.67312 12.466 7.26284 11.838 6.73556 11.5675C6.30812 11.3485 5.85312 11.2375 5.382 11.2375C4.18028 11.2375 3.08464 11.975 2.5324 12.7055C1.664 13.8545 1.2064 15.8805 1.28128 17.099C1.32756 17.856 1.40764 18.4125 1.5418 18.906L1.54336 18.91L1.5444 18.912C3.81576 22.975 8.20612 25.5 13 25.5C16.4726 25.5 19.7371 24.2 22.1926 21.839C24.648 19.478 26 16.339 26 13C26 12.376 25.9516 11.7475 25.8554 11.1325Z" fill="black"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_16_375">
|
||||
<rect width="26" height="25" fill="white" transform="translate(0 0.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.1 KiB |
117
apps/axelar/axelscore/www/stargaze.svg
Normal file
@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="e20I8j3mY6X1"
|
||||
viewBox="0 0 480 480"
|
||||
shape-rendering="geometricPrecision"
|
||||
text-rendering="geometricPrecision"
|
||||
version="1.1"
|
||||
sodipodi:docname="STARS.svg"
|
||||
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
|
||||
<metadata
|
||||
id="metadata922">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3784"
|
||||
inkscape:window-height="2089"
|
||||
id="namedview920"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.9583333"
|
||||
inkscape:cx="240"
|
||||
inkscape:cy="240"
|
||||
inkscape:window-x="56"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="e20I8j3mY6X1" />
|
||||
<defs
|
||||
id="defs911">
|
||||
<linearGradient
|
||||
id="e20I8j3mY6X3-fill"
|
||||
x1="-142.01814"
|
||||
y1="-151.30692"
|
||||
x2="146.67101"
|
||||
y2="152.23885"
|
||||
spreadMethod="pad"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="scale(1.0254083,0.97522127)">
|
||||
<stop
|
||||
id="e20I8j3mY6X3-fill-0"
|
||||
offset="0%"
|
||||
stop-color="#ffe451" />
|
||||
<stop
|
||||
id="e20I8j3mY6X3-fill-1"
|
||||
offset="23%"
|
||||
stop-color="#e7a246" />
|
||||
<stop
|
||||
id="e20I8j3mY6X3-fill-2"
|
||||
offset="48%"
|
||||
stop-color="#6bd77e" />
|
||||
<stop
|
||||
id="e20I8j3mY6X3-fill-3"
|
||||
offset="78%"
|
||||
stop-color="#0740b4" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="e20I8j3mY6X4-stroke"
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="1"
|
||||
spreadMethod="pad"
|
||||
gradientUnits="objectBoundingBox"
|
||||
gradientTransform="translate(0 0)">
|
||||
<stop
|
||||
id="e20I8j3mY6X4-stroke-0"
|
||||
offset="0%"
|
||||
stop-color="#b11c93" />
|
||||
<stop
|
||||
id="e20I8j3mY6X4-stroke-1"
|
||||
offset="31%"
|
||||
stop-color="#c9aa62" />
|
||||
<stop
|
||||
id="e20I8j3mY6X4-stroke-2"
|
||||
offset="90%"
|
||||
stop-color="#3041b8" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g
|
||||
transform="matrix(1.56351 0 0 1.56351-260.3232-135.2424)"
|
||||
id="g917">
|
||||
<polygon
|
||||
points="40.295827,-47.462447 130.40003,-42.369539 55.200017,21.18477 80.591653,110.92489 0,68.555355 -80.591653,110.92489 -55.200017,21.18477 -130.40003,-42.369539 -40.295827,-47.462447 0,-137.11071 "
|
||||
transform="rotate(20,-523.61942,1014.8527)"
|
||||
stroke-miterlimit="14"
|
||||
id="polygon913"
|
||||
style="fill:url(#e20I8j3mY6X3-fill);stroke-width:0;stroke-linecap:round;stroke-miterlimit:14" />
|
||||
<ellipse
|
||||
rx="148.012117"
|
||||
ry="148.012117"
|
||||
transform="translate(320 240)"
|
||||
fill="none"
|
||||
stroke="url(#e20I8j3mY6X4-stroke)"
|
||||
stroke-width="10"
|
||||
id="ellipse915" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
1
apps/axelar/axelscore/www/stride.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 545 545"><defs><style>.cls-1{fill:#fefefe;}.cls-2{fill:#e81179;}</style></defs><circle class="cls-2" cx="272.5" cy="272.5" r="272.5"/><path class="cls-1" d="M276.32,461.1c-40.8,.16-74.97-6.15-106.17-24.53-28.67-16.88-46.84-41.82-56.07-73.59-1.02-3.52-.09-4.65,3.35-5.37,25.89-5.4,51.74-10.96,77.59-16.52,2.57-.55,4.2-.44,5.15,2.66,8.14,26.69,27.31,40.5,53.89,44.94,17.38,2.91,34.83,2.9,52.02-1.75,8.88-2.4,16.58-6.83,22.76-13.73,12.88-14.4,9.69-34.81-7.15-44.21-11.3-6.31-23.79-9.4-36.31-12.15-25.82-5.69-51.84-10.55-76.72-19.85-12.66-4.73-24.91-10.24-36.29-17.62-24.87-16.12-37.13-39.65-38.65-68.59-2.93-55.61,26.26-99.33,79.5-116.65,47.54-15.47,95.32-13.36,141.62,5.83,30.92,12.81,51.61,36.3,64.35,67.03,1.31,3.17,1.42,4.93-2.58,6.15-23.85,7.3-47.61,14.87-71.4,22.37-2.02,.64-3.63,1.18-4.69-1.61-10.69-28.29-32.49-39.95-61.44-40.53-11.68-.23-23.32,.47-34.48,4.46-12.85,4.59-19.66,13.15-20.14,25.14-.5,12.49,5.77,22.44,17.95,27.93,14.39,6.49,29.9,8.95,45.21,12.04,24.63,4.98,49.3,9.97,72.76,19.15,35.26,13.81,59.38,38.46,68.17,75.84,6.37,27.07,1.44,53.06-12.96,76.84-19.62,32.42-48.93,51.46-85.45,59.95-6.96,1.62-14.01,2.92-21.08,3.95-12.54,1.83-25.19,2.48-32.77,2.41Z"/></svg>
|
||||
|
After Width: | Height: | Size: 1.3 KiB |
1
apps/axelar/axelscore/www/sui.svg
Normal file
@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127 127"><defs><style>.cls-1{fill:none;}.cls-2{opacity:.5;}</style></defs><circle class="cls-1" cx="63.5" cy="63.5" r="63.5"/><g id="Sui" class="cls-2"><path d="M63.32,126c-10.09-.24-19.07-3.43-26.94-9.85-6.05-4.93-10.17-11.16-12.98-18.33-2.22-5.66-2.96-11.56-2.68-17.61,.31-6.88,2.35-13.25,5.73-19.22,3.58-6.33,7.17-12.66,10.77-18.97,4.08-7.16,8.18-14.3,12.26-21.45,3.17-5.55,6.31-11.12,9.47-16.67,1.43-2.52,3.8-3.47,6.36-2.57,1.12,.39,1.91,1.11,2.5,2.15,4.01,7.07,8.05,14.12,12.07,21.18,3.79,6.65,7.57,13.32,11.36,19.97,3.34,5.87,6.73,11.7,9.99,17.62,2.72,4.95,4.32,10.29,4.89,15.93,1.19,11.8-2.1,22.29-9.27,31.62-5.94,7.73-13.85,12.48-23.18,14.96-3.37,.9-6.83,1.25-10.33,1.24Zm.83-9.15c1.02-.1,2.7-.21,4.36-.45,5.77-.82,10.94-3.08,15.57-6.61,.88-.67,1.47-1.5,1.67-2.57,.35-1.84,.77-3.67,.92-5.53,.29-3.54-.16-7.03-1.63-10.27-2.06-4.55-5.54-7.93-9.61-10.7-3.48-2.36-7.36-3.96-11.23-5.57-5.29-2.19-10.18-5.07-14.14-9.26-3.63-3.83-6.21-8.27-7.22-13.52-.05-.28-.34-.51-.51-.76-.21,.19-.5,.35-.63,.59-1.92,3.4-3.77,6.86-5.75,10.23-2.38,4.06-4.5,8.2-5.5,12.85-1.24,5.75-1.09,11.45,.6,17.08,1.75,5.82,4.77,10.85,9.21,15.05,6.53,6.18,14.27,9.29,23.9,9.44Zm33.25-34.31c-.2-2.03-.32-4.06-.62-6.08-.62-4.12-2.28-7.87-4.32-11.45-6.31-11.12-12.65-22.21-18.99-33.31-2.43-4.26-4.88-8.5-7.35-12.74-.3-.52-.7-.99-1.14-1.4-.82-.77-1.82-.87-2.71-.2-.58,.43-1.11,1.01-1.48,1.63-1.88,3.21-3.73,6.44-5.55,9.68-3.08,5.49-4.52,11.38-4.27,17.67,.26,6.47,3.27,11.51,8.22,15.47,2.92,2.34,6.23,4.04,9.72,5.4,4.45,1.74,8.71,3.85,12.62,6.63,6.61,4.68,11.41,10.63,13.28,18.69,.05,.24,.34,.42,.51,.63,.18-.22,.44-.41,.52-.67,1.02-3.23,1.47-6.55,1.55-9.95Z"/></g></svg>
|
||||
|
After Width: | Height: | Size: 1.7 KiB |
1
apps/axelar/axelscore/www/terra.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 52 49"><defs><linearGradient id="ebbb6cda-0389-45d8-bb1c-376d5bf36abc" x1="35.55" y1="48.97" x2="35.55" y2="24.51" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#4366c2"/><stop offset="0.15" stop-color="#3458b8"/><stop offset="0.4" stop-color="#2348ac"/><stop offset="0.67" stop-color="#193fa5"/><stop offset="1" stop-color="#163ca3"/></linearGradient><linearGradient id="f31efcdf-db45-41d1-9fdf-f0c98c440807" x1="28.73" y1="22.86" x2="28.73" y2="0" xlink:href="#ebbb6cda-0389-45d8-bb1c-376d5bf36abc"/><linearGradient id="fccc71bd-5025-4d54-b43c-83ee4283abe6" x1="2.68" y1="8.02" x2="19.28" y2="8.02" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#58c66b"/><stop offset="1" stop-color="#5491f6"/></linearGradient><linearGradient id="f353812a-3fef-4520-a39f-fc15f94407a0" x1="0" y1="32.68" x2="16.02" y2="32.68" xlink:href="#fccc71bd-5025-4d54-b43c-83ee4283abe6"/><linearGradient id="ae916250-479e-4f6a-ba90-eed93ba23120" x1="14.03" y1="20.12" x2="52" y2="20.12" xlink:href="#fccc71bd-5025-4d54-b43c-83ee4283abe6"/><linearGradient id="abdf6be7-d18d-4907-97fe-9b3e82537090" x1="33.83" y1="43.42" x2="48.69" y2="43.42" xlink:href="#fccc71bd-5025-4d54-b43c-83ee4283abe6"/></defs><g id="ae6f7ef0-565d-4a22-8f2c-325befffa09b" data-name="Layer 2"><g id="bcd3e4b3-41de-4e5f-b039-dc1868c624a4" data-name="Layer 6"><path d="M22.36,39.82c1.43,5.28,6.54,9.31,9.12,9.15.09,0,9.79-1.82,15.1-10.71,4.13-6.92,2.73-13.6-2.89-13.75-2,.15-24,5.25-21.33,15.31" fill="url(#ebbb6cda-0389-45d8-bb1c-376d5bf36abc)"/><path d="M43.16,5.9h0a24.63,24.63,0,0,0-26-3.76,14.3,14.3,0,0,0-1.57.77c-.34.18-.69.37-1,.57l.09,0A11.17,11.17,0,0,0,12.05,6C5,15.33,28.7,22.15,41.39,22.17,47.23,26.37,48.87,10.35,43.16,5.9Z" fill="url(#f31efcdf-db45-41d1-9fdf-f0c98c440807)"/><path d="M18.6,6.09C15.34,11,4.48,14.46,2.69,13.92v0l.22-.45A26.58,26.58,0,0,1,5,10,26.57,26.57,0,0,1,10.65,4.4,23.91,23.91,0,0,1,12.72,3a7.6,7.6,0,0,1,3.59-1c4.84.09,2.31,4,2.29,4" fill="url(#fccc71bd-5025-4d54-b43c-83ee4283abe6)"/><path d="M15.92,40.79c.24,1.54,0,7.63-.32,8.15-.27,0-.83.05-2.47-.87a24,24,0,0,1-2.48-1.62,26,26,0,0,1-3-2.6,25.13,25.13,0,0,1-2.6-3,25.44,25.44,0,0,1-3.69-7.15,25.27,25.27,0,0,1-1-4,26.42,26.42,0,0,1,0-8.45,25.81,25.81,0,0,1,1-4q.12-.39.27-.78h0c1.87,2.5,4,4.76,5.89,7.28s4.17,6.32,4.66,7.16c3,5.19,3.54,8.4,3.77,9.94" fill="url(#f353812a-3fef-4520-a39f-fc15f94407a0)"/><path d="M52,25.43A26.06,26.06,0,0,1,50.19,35c-3.06,3.29-23.71-4.82-23.91-4.91-2.83-1.24-11.42-5-12.2-10.94C13,10.62,30.23,4.68,37.82,4.45c.91,0,3.68,0,5.29,1.36A26,26,0,0,1,52,25.43" fill="url(#ae916250-479e-4f6a-ba90-eed93ba23120)"/><path d="M38,48.53c-2.25,1.06-4.73.29-4.08-1.91,1.23-4.21,12-8.54,14.41-8.77.29,0,.42.17.29.4A26.34,26.34,0,0,1,38,48.53" fill="url(#abdf6be7-d18d-4907-97fe-9b3e82537090)"/></g></g></svg>
|
||||
|
After Width: | Height: | Size: 2.8 KiB |
253
apps/axelar/axelscore/www/umee.svg
Normal file
@ -0,0 +1,253 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
xml:space="preserve"
|
||||
width="1821.3333"
|
||||
height="1024"
|
||||
viewBox="0 0 1821.3333 1024"
|
||||
sodipodi:docname="1Aa_Umee_Brand Icon Full Color.ai"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs6"><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(638.6991,333.97626,333.97626,-638.6991,394.5159,292.20102)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient32"><stop
|
||||
style="stop-opacity:1;stop-color:#ffa2ff"
|
||||
offset="0"
|
||||
id="stop22" /><stop
|
||||
style="stop-opacity:1;stop-color:#d7b3ff"
|
||||
offset="0.28555162"
|
||||
id="stop24" /><stop
|
||||
style="stop-opacity:1;stop-color:#d7b3ff"
|
||||
offset="0.367148"
|
||||
id="stop26" /><stop
|
||||
style="stop-opacity:1;stop-color:#00ffe5"
|
||||
offset="0.889732"
|
||||
id="stop28" /><stop
|
||||
style="stop-opacity:1;stop-color:#00ffe5"
|
||||
offset="1"
|
||||
id="stop30" /></linearGradient><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath42"><path
|
||||
d="M 433.184,591.666 V 436.608 l 0.048,6.151 c 1.037,-132.504 112.484,-245.77 249.86,-245.77 v 0 c 137.376,0 248.823,107.116 249.86,239.619 v 0 l 0.048,6.151 v 148.907 c 0,0 -34.657,16.907 -74.083,-23.411 v 0 C 833.602,542.37 813.365,449.38 759.17,448.542 v 0 c -72.374,-1.12 -121.621,95.05 -180.506,130.985 v 0 c -26.137,15.95 -56.335,20.537 -82.417,20.537 v 0 c -35.298,0.001 -63.063,-8.398 -63.063,-8.398"
|
||||
id="path40" /></clipPath><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(65.820137,241.3405,241.3405,-65.820137,655.13531,396.87308)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient60"><stop
|
||||
style="stop-opacity:0.29999237;stop-color:#ffffff"
|
||||
offset="0"
|
||||
id="stop52" /><stop
|
||||
style="stop-opacity:0;stop-color:#ffffff"
|
||||
offset="0.67421972"
|
||||
id="stop54" /><stop
|
||||
style="stop-opacity:0;stop-color:#ffffff"
|
||||
offset="0.866878"
|
||||
id="stop56" /><stop
|
||||
style="stop-opacity:0;stop-color:#ffffff"
|
||||
offset="1"
|
||||
id="stop58" /></linearGradient><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
x="0"
|
||||
y="0"
|
||||
width="1"
|
||||
height="1"
|
||||
id="mask62"><g
|
||||
id="g72"><g
|
||||
id="g70"><g
|
||||
id="g68"><g
|
||||
id="g66"><path
|
||||
d="M -32768,32767 H 32767 V -32768 H -32768 Z"
|
||||
style="fill:url(#linearGradient60);stroke:none"
|
||||
id="path64" /></g></g></g></g></mask><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(65.820137,241.3405,241.3405,-65.820137,655.13531,396.87308)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient86"><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="0"
|
||||
id="stop78" /><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="0.67421972"
|
||||
id="stop80" /><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="0.866878"
|
||||
id="stop82" /><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="1"
|
||||
id="stop84" /></linearGradient><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(572.87897,253.52942,253.52942,-572.87897,415.69821,274.0578)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient112"><stop
|
||||
style="stop-opacity:1;stop-color:#ffa2ff"
|
||||
offset="0"
|
||||
id="stop102" /><stop
|
||||
style="stop-opacity:1;stop-color:#d7b3ff"
|
||||
offset="0.28555162"
|
||||
id="stop104" /><stop
|
||||
style="stop-opacity:1;stop-color:#d7b3ff"
|
||||
offset="0.367148"
|
||||
id="stop106" /><stop
|
||||
style="stop-opacity:1;stop-color:#00ffe5"
|
||||
offset="0.889732"
|
||||
id="stop108" /><stop
|
||||
style="stop-opacity:1;stop-color:#00ffe5"
|
||||
offset="1"
|
||||
id="stop110" /></linearGradient><clipPath
|
||||
clipPathUnits="userSpaceOnUse"
|
||||
id="clipPath122"><path
|
||||
d="M 433,531.84 V 421.312 l 0.048,6.58 C 434.085,286.152 545.574,164.993 683,164.993 v 0 c 137.427,0 248.915,114.58 249.952,256.319 v 0 l 0.048,6.58 v 101.12 c -14.108,-2.351 -31.476,-9.237 -49.817,-26.16 v 0 C 854.791,476.655 832.095,382.549 771.313,381.702 v 0 c -81.17,-1.133 -136.403,96.191 -202.444,132.556 v 0 c -29.312,16.141 -63.164,20.782 -92.406,20.783 v 0 c -16.504,0 -31.537,-1.478 -43.463,-3.201"
|
||||
id="path120" /></clipPath><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(87.760185,180.39594,180.39594,-87.760185,625.69867,329.12411)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient140"><stop
|
||||
style="stop-opacity:0.29999237;stop-color:#ffffff"
|
||||
offset="0"
|
||||
id="stop132" /><stop
|
||||
style="stop-opacity:0;stop-color:#ffffff"
|
||||
offset="0.67421972"
|
||||
id="stop134" /><stop
|
||||
style="stop-opacity:0;stop-color:#ffffff"
|
||||
offset="0.866878"
|
||||
id="stop136" /><stop
|
||||
style="stop-opacity:0;stop-color:#ffffff"
|
||||
offset="1"
|
||||
id="stop138" /></linearGradient><mask
|
||||
maskUnits="userSpaceOnUse"
|
||||
x="0"
|
||||
y="0"
|
||||
width="1"
|
||||
height="1"
|
||||
id="mask142"><g
|
||||
id="g152"><g
|
||||
id="g150"><g
|
||||
id="g148"><g
|
||||
id="g146"><path
|
||||
d="M -32768,32767 H 32767 V -32768 H -32768 Z"
|
||||
style="fill:url(#linearGradient140);stroke:none"
|
||||
id="path144" /></g></g></g></g></mask><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(87.760185,180.39594,180.39594,-87.760185,625.69867,329.12411)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient166"><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="0"
|
||||
id="stop158" /><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="0.67421972"
|
||||
id="stop160" /><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="0.866878"
|
||||
id="stop162" /><stop
|
||||
style="stop-opacity:1;stop-color:#16173e"
|
||||
offset="1"
|
||||
id="stop164" /></linearGradient><linearGradient
|
||||
x1="0"
|
||||
y1="0"
|
||||
x2="1"
|
||||
y2="0"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(514.37213,197.4604,197.4604,-514.37213,391.13586,237.60321)"
|
||||
spreadMethod="pad"
|
||||
id="linearGradient192"><stop
|
||||
style="stop-opacity:1;stop-color:#ffa2ff"
|
||||
offset="0"
|
||||
id="stop182" /><stop
|
||||
style="stop-opacity:1;stop-color:#d7b3ff"
|
||||
offset="0.28555162"
|
||||
id="stop184" /><stop
|
||||
style="stop-opacity:1;stop-color:#d7b3ff"
|
||||
offset="0.367148"
|
||||
id="stop186" /><stop
|
||||
style="stop-opacity:1;stop-color:#00ffe5"
|
||||
offset="0.889732"
|
||||
id="stop188" /><stop
|
||||
style="stop-opacity:1;stop-color:#00ffe5"
|
||||
offset="1"
|
||||
id="stop190" /></linearGradient></defs><sodipodi:namedview
|
||||
id="namedview4"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0" /><g
|
||||
id="g8"
|
||||
inkscape:groupmode="layer"
|
||||
inkscape:label="1Aa_Umee_Brand Icon Full Color"
|
||||
transform="matrix(1.3333333,0,0,-1.3333333,0,1024)"><g
|
||||
id="g10"><g
|
||||
id="g12"><g
|
||||
id="g18"><g
|
||||
id="g20"><path
|
||||
d="M 433.184,591.666 V 436.608 l 0.048,6.151 c 1.037,-132.504 112.484,-245.77 249.86,-245.77 v 0 c 137.376,0 248.823,107.116 249.86,239.619 v 0 l 0.048,6.151 v 148.907 c 0,0 -34.657,16.907 -74.083,-23.411 v 0 C 833.602,542.37 813.365,449.38 759.17,448.542 v 0 c -72.374,-1.12 -121.621,95.05 -180.506,130.985 v 0 c -26.137,15.95 -56.335,20.537 -82.417,20.537 v 0 c -35.298,0.001 -63.063,-8.398 -63.063,-8.398"
|
||||
style="fill:url(#linearGradient32);stroke:none"
|
||||
id="path34" /></g></g></g></g><g
|
||||
id="g36"><g
|
||||
id="g38"
|
||||
clip-path="url(#clipPath42)"><g
|
||||
id="g44"><g
|
||||
id="g46" /><g
|
||||
id="g74"
|
||||
mask="url(#mask62)"><g
|
||||
id="g76"><path
|
||||
d="M 433.184,591.666 V 436.608 l 0.048,6.151 c 1.037,-132.504 112.484,-245.77 249.86,-245.77 v 0 c 137.376,0 248.823,107.116 249.86,239.619 v 0 l 0.048,6.151 v 148.907 c 0,0 -34.657,16.907 -74.083,-23.411 v 0 C 833.602,542.37 813.365,449.38 759.17,448.542 v 0 c -72.374,-1.12 -121.621,95.05 -180.506,130.985 v 0 c -26.137,15.95 -56.335,20.537 -82.417,20.537 v 0 c -35.298,0.001 -63.063,-8.398 -63.063,-8.398"
|
||||
style="fill:url(#linearGradient86);stroke:none"
|
||||
id="path88" /></g></g></g></g></g><g
|
||||
id="g90"><g
|
||||
id="g92"><g
|
||||
id="g98"><g
|
||||
id="g100"><path
|
||||
d="M 433,531.84 V 421.312 l 0.048,6.58 C 434.085,286.152 545.574,164.993 683,164.993 v 0 c 137.427,0 248.915,114.58 249.952,256.319 v 0 l 0.048,6.58 v 101.12 c -14.108,-2.351 -31.476,-9.237 -49.817,-26.16 v 0 C 854.791,476.655 832.095,382.549 771.313,381.702 v 0 c -81.17,-1.133 -136.403,96.191 -202.444,132.556 v 0 c -29.312,16.141 -63.164,20.782 -92.406,20.783 v 0 c -16.504,0 -31.537,-1.478 -43.463,-3.201"
|
||||
style="fill:url(#linearGradient112);stroke:none"
|
||||
id="path114" /></g></g></g></g><g
|
||||
id="g116"><g
|
||||
id="g118"
|
||||
clip-path="url(#clipPath122)"><g
|
||||
id="g124"><g
|
||||
id="g126" /><g
|
||||
id="g154"
|
||||
mask="url(#mask142)"><g
|
||||
id="g156"><path
|
||||
d="M 433,531.84 V 421.312 l 0.048,6.58 C 434.085,286.152 545.574,164.993 683,164.993 v 0 c 137.427,0 248.915,114.58 249.952,256.319 v 0 l 0.048,6.58 v 101.12 c -14.108,-2.351 -31.476,-9.237 -49.817,-26.16 v 0 C 854.791,476.655 832.095,382.549 771.313,381.702 v 0 c -81.17,-1.133 -136.403,96.191 -202.444,132.556 v 0 c -29.312,16.141 -63.164,20.782 -92.406,20.783 v 0 c -16.504,0 -31.537,-1.478 -43.463,-3.201"
|
||||
style="fill:url(#linearGradient166);stroke:none"
|
||||
id="path168" /></g></g></g></g></g><g
|
||||
id="g170"><g
|
||||
id="g172"><g
|
||||
id="g178"><g
|
||||
id="g180"><path
|
||||
d="m 433,455.651 v -34.339 l 0.048,6.58 C 434.085,286.152 545.574,164.993 683,164.993 v 0 c 137.427,0 248.915,114.58 249.952,256.319 v 0 l 0.048,6.58 v 17.846 c -10.807,-4.115 -22.577,-10.723 -34.737,-21.147 v 0 C 867.7,398.394 843.268,304.288 777.838,303.44 v 0 c -87.376,-1.132 -146.834,96.192 -217.926,132.558 v 0 c -31.549,16.138 -67.985,20.777 -99.465,20.777 v 0 c -9.718,0.001 -18.962,-0.442 -27.447,-1.124"
|
||||
style="fill:url(#linearGradient192);stroke:none"
|
||||
id="path194" /></g></g></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
1
apps/axelar/axelscore/www/wallet.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg class="svg-icon" style="width: 1em; height: 1em;vertical-align: middle;fill: currentColor;overflow: hidden;" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg"><path d="M979.38285688 441.16571469a25.78285688 25.78285688 0 0 1 0.54857156 5.48571375v293.34857156a25.78285688 25.78285688 0 0 1-0.54857157 5.48571469v96.48c0 62.4-50.05714313 113.28-111.90857156 113.28H149.12a112.73142844 112.73142844 0 0 1-111.97714312-113.28V154.94857156C37.07428531 90.14857156 89.12 37.21142844 153.37142844 37.21142844h619.88571469c64.32 0 116.29714313 52.93714312 116.29714218 117.80571468v72.68571375h0.48c2.05714313 0 4.11428531 0.27428531 6.10285782 0.68571469a90.10285688 90.10285688 0 0 1 83.17714218 90.44571375v122.33142938z m-51.42857157 324.54857062H622.60571469c-57.05142844 0-129.94285688-80.64-129.94285781-176.02285687 0-86.53714313 75.42857156-168.68571469 129.94285781-168.68571375h305.34857062v-102.17142938a38.60571469 38.60571469 0 0 0-37.98857062-39.15428531 52.11428531 52.11428531 0 0 1-7.33714313-0.54857156H149.6c-24 0-44.43428531-5.48571469-61.02857156-15.22285688v578.05714313c0 34.21714312 27.22285688 61.85142844 60.54857156 61.85142843h718.35428531a61.23428531 61.23428531 0 0 0 60.48-61.85142843V765.71428531z m0-51.42857062V472.43428531H622.60571469c-25.02857156 0-78.51428531 58.21714312-78.51428625 117.25714313 0 68.09142844 51.08571469 124.59428531 78.51428625 124.59428625h305.34857062zM88.43428531 161.87428531a25.64571469 25.64571469 0 0 1 1.98857156 9.80571469c0 33.25714312 19.33714313 56.02285688 59.17714313 56.02285688h688.45714313v-72.68571375a65.62285687 65.62285687 0 0 0-64.73142844-66.37714313H153.37142844a65.69142844 65.69142844 0 0 0-64.86857157 66.44571469v6.85714219z m617.82857156 465.46285782a35.65714313 35.65714313 0 1 1 0.06857157-71.31428625 35.65714313 35.65714313 0 0 1 0 71.31428625z" /></svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
4
apps/axelar/axelscore/www/xpla.svg
Normal file
@ -0,0 +1,4 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" fill="none" viewBox="0 0 48 48">
|
||||
<path fill="#00B1FF" d="M24 48c13.26 0 24-10.74 24-24S37.26 0 24 0 0 10.74 0 24s10.74 24 24 24Z"/>
|
||||
<path fill="#fff" d="m27.435 25.71-1.695 1.695 11.64 11.67 1.695-1.695-11.64-11.67ZM10.59 8.895 8.895 10.59l11.67 11.67 1.695-1.695-11.67-11.67Zm26.775.03-11.64 11.67 1.695 1.695 11.64-11.67-1.695-1.695ZM20.595 25.74 8.955 37.41l1.695 1.695 11.64-11.67-1.695-1.695Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 475 B |