Skip to content

Commit 6c446b1

Browse files
committedAug 23, 2023
periodic updates
1 parent 6f4409d commit 6c446b1

File tree

3 files changed

+28
-11
lines changed

3 files changed

+28
-11
lines changed
 

‎projects.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ title: Projects
33
pagetitle: SECBIT Labs | Projects
44
---
55

6+
### [RLN on KZG in Golang](https://github.com/sec-bit/kzg-rln-go)
7+
8+
A proof-of-concept implementation of RLN (Rate Limiting Nullifier) using KZG in Golang. This implementation is grounded in the discussion at [zkresearch](https://zkresear.ch/t/rln-on-kzg-polynomial-commitment-scheme-cross-posted/114) initiated by Wanseob Lim.
9+
10+
### [MferSafe](https://github.com/sec-bit/mfer-safe)
11+
12+
This application allows you to freely explore DApps, impersonate any user, inspect transaction traces, manipulate time by turning the clock forward or backward, and easily construct and simulate Gnosis Safe MultiSend transaction bundles. A lite version, known as [MferSafe Lite](https://github.com/sec-bit/mfer-safe-lite), is also available as a browser extension.
13+
14+
### [Security Audit for Ethereum KZG Ceremony](https://github.com/ethereum/kzg-ceremony/blob/main/KZG10-Ceremony-audit-report.pdf)
15+
16+
Security audit for the [specification](https://github.com/ethereum/kzg-ceremony-specs) and [implementation](https://github.com/crate-crypto/small-powers-of-tau) of Ethereum's Powers of Tau (PoT) setup ceremony.
17+
18+
### [ZKCPlus](https://dl.acm.org/doi/10.1145/3460120.3484558)
19+
20+
Optimized Fair-exchange Protocol Supporting Practical and Flexible Data Exchange. This research builds upon our prior work on zkPoD and has been accepted for publication in CCS '21.
21+
622
### [zkPoD](https://github.com/sec-bit/zkPoD-node)
723

824
A decentralized system for data exchange. See our [technical paper](https://sec-bit.github.io/zkPoD-node/paper.pdf) for more information.
@@ -41,4 +57,4 @@ The SECBIT Static Analysis Extension to Solidity Compiler. Find out [how to use]
4157

4258
### [The Solidity Safe Subset](https://github.com/sec-bit/solidity-safe-subset)
4359

44-
A safe subset of the Solidity language. Find out [how to build and use](https://github.com/sec-bit/solidity-safe-subset/blob/master/README.secbit.md).
60+
A safe subset of the Solidity language. Find out [how to build and use](https://github.com/sec-bit/solidity-safe-subset/blob/master/README.secbit.md).

‎template/default.html

+10-9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
<html lang="en">
33

44
<head>
5+
<!-- Google tag (gtag.js) -->
6+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JT3HKW7GRY"></script>
7+
<script>
8+
window.dataLayer = window.dataLayer || [];
9+
function gtag(){dataLayer.push(arguments);}
10+
gtag('js', new Date());
11+
12+
gtag('config', 'G-JT3HKW7GRY');
13+
</script>
14+
515
<meta charset="utf-8" />
616
<meta name="generator" content="pandoc" />
717
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
@@ -29,15 +39,6 @@
2939
$header-includes$
3040
$endfor$
3141

32-
<!-- Global site tag (gtag.js) - Google Analytics -->
33-
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-149859278-2"></script>
34-
<script>
35-
window.dataLayer = window.dataLayer || [];
36-
function gtag(){dataLayer.push(arguments);}
37-
gtag('js', new Date());
38-
39-
gtag('config', 'UA-149859278-2');
40-
</script>
4142
</head>
4243

4344
<body>

0 commit comments

Comments
 (0)