generated from nathanwoodburn/python-webserver-template
feat: Add initial solana integration
All checks were successful
Build Docker / BuildImage (push) Successful in 51s
All checks were successful
Build Docker / BuildImage (push) Successful in 51s
This commit is contained in:
@@ -26,4 +26,12 @@ a:hover {
|
||||
margin: auto;
|
||||
margin-top: 10px;
|
||||
|
||||
}
|
||||
|
||||
.transaction {
|
||||
border: 1px solid #ffffff;
|
||||
border-radius: 10px;
|
||||
padding: 10px 20px;
|
||||
margin: auto;
|
||||
margin-top: 10px;
|
||||
}
|
||||
@@ -13,7 +13,17 @@
|
||||
<div class="spacer"></div>
|
||||
<div class="centre">
|
||||
<h1>Nathan.Woodburn/ {{chain}}</h1>
|
||||
<a href="/chains/sync/{{chain}}">Sync</a>
|
||||
|
||||
<div class="address-list">
|
||||
<h3>Imported Addresses</h3>
|
||||
<div class="address-list-item">
|
||||
{% for address in addresses %}
|
||||
{{address}} <a href="/chains/{{ chain }}/delete/{{address}}">Delete</a>
|
||||
<br>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<form method="post">
|
||||
<h3>Import address</h3>
|
||||
<input type="text" name="address" placeholder="Address">
|
||||
@@ -21,7 +31,7 @@
|
||||
</form>
|
||||
|
||||
<form action="/chains/{{chain}}/addAPIKey" method="post">
|
||||
<h3>Add API Key</h3>
|
||||
<h3>Set API Key</h3>
|
||||
<input type="text" name="apiKey" placeholder="API Key">
|
||||
<input type="submit" value="Add">
|
||||
</form>
|
||||
|
||||
@@ -14,6 +14,12 @@
|
||||
<div class="centre">
|
||||
<h1>Nathan.Woodburn/</h1>
|
||||
|
||||
<div class="chains-list">
|
||||
<h3>Integrated chains</h3>
|
||||
{% for chain in chains %}
|
||||
<p><a href="/chains/{{ chain.link }}">{{ chain.name }}</a></p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="address-list">
|
||||
<h3>Imported Addresses</h3>
|
||||
{% for chain in addresses %}
|
||||
@@ -27,12 +33,7 @@
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="chains-list">
|
||||
<h3>Add New Address</h3>
|
||||
{% for chain in chains %}
|
||||
<p><a href="/chains/{{ chain.link }}">{{ chain.name }}</a></p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user