-
Updated
Jun 26, 2022 - Solidity
#
smart-contract
Here are 658 public repositories matching this topic...
A compilation of patterns and best practices for the smart contract programming language Solidity
View source of deployed Ethereum contracts in VSCode
-
Updated
May 20, 2022 - TypeScript
component/java-ecosystem
Java development experience
good first issue
Good for newcomers
team/app-runtime
斐讯TC1智能排插个人固件. 仅支持TC1硬件版本为a1的版本
-
Updated
Apr 21, 2021
SOLL is a new compiler for generate Ewasm from solidity and yul. See a demo here: https://asciinema.org/a/ezJqNLicn5fya02zwu4VXIo8a
-
Updated
Dec 23, 2021 - C++
0xcert Framework - JavaScript framework for building decentralized applications - build something unique
nodejs
javascript
npm
vuejs
framework
typescript
protocol
ethereum
currency
blockchain
token
nuxtjs
asset
hacktoberfest
smart-contract
erc-20
non-fungible
0xcert
erc-721
fungible
-
Updated
Dec 7, 2021 - TypeScript
Securify v2.0
-
Updated
Jan 20, 2022 - Solidity
CKB's vm, based on open source RISC-V ISA
-
Updated
Jul 8, 2022 - Rust
Sparkle Proof of Loyalty Contract
-
Updated
Mar 27, 2022 - JavaScript
[DEPRECATED] Security Scanner for Ethereum Smart Contracts
security
static-analysis
ethereum
datalog
solidity
obsolete
evm
depricated
smart-contract
chainsecurity
-
Updated
Jan 23, 2020 - Java
An IDE to develop smart contracts on the Conflux blockchain
-
Updated
Jun 30, 2022 - JavaScript
An IDE to develop CKB scripts for Nervos blockchain
-
Updated
Jul 8, 2022 - JavaScript
Official proof decentralized exchange matching engine
-
Updated
Apr 12, 2019 - Go
Sparkle Peer to Peer Ecosystem Built on Ethereum
-
Updated
Feb 11, 2022 - JavaScript
An IDE to develop Algorand Smart Contracts (ASC1) for the Algorand blockchain
-
Updated
Jul 8, 2022 - JavaScript
Flash swap liquidation bot for compound.finance + flashbots
-
Updated
Jul 8, 2022 - TypeScript
The Total Solution for Blockchain with Privacy Protecting
-
Updated
Jan 21, 2022 - Go
A curated list of awesome zkEVM resources, libraries, tools and more
awesome
solidity
awesome-list
scaling
evm
layer2
smart-contract
zero-knowledge-proofs
zk-rollup
zkevm
native-zkevm
-
Updated
Jul 1, 2022
bvavala
commented
Sep 30, 2019
sgxcclib is used in the respective enclaves (in ecc_enclave and tlcc_enclave) with a common part in common/sgxcclib. A better name would probably include an fpc_ and/or an enclave prefix, and or a _t/_u to distinguish the trusted and untrusted functions -- though sgxcclib is used in untrusted space, essentially as an enclave wrapper.
enhancement
New feature or request
good first issue
Good for newcomers
documentation
This contains documentation/description/comments
Flash loan liquidation bot for compound.finance
-
Updated
Jun 25, 2022 - JavaScript
Hic et Nunc smart contracts. FA2 multiassets: hDAO, OBJKTs, Marketplace, SUBJKTs and Unregistry.
-
Updated
Jun 6, 2022 - Python
BokkyPooBah's Red-Black Binary Search Tree Library
-
Updated
Jan 17, 2020 - Solidity
Official repo of the EVM LLVM project
-
Updated
Feb 22, 2022 - LLVM
Source code: https://etherscan.io/address/0x2b591e99afe9f32eaa6214f7b7629768c40eeb39#contracts | All rights are reserved. IT IS NOT LICENSED FOR COPYING. We don't use github for dev.
-
Updated
Sep 16, 2021 - Solidity
Smart contract vulnerability detection using graph neural network (DR-GCN).
-
Updated
Dec 22, 2021 - Python
Improve this page
Add a description, image, and links to the smart-contract topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the smart-contract topic, visit your repo's landing page and select "manage topics."
In Scala codegen,
ContractId[T] = T.ContractId. However, in Java codegen,T.ContractId <: ContractId<T>but not vice versa, which means that(cidT: ContractId<T>).exerciseX(...)doesn't work, and((T.ContractId) cidT)can fail too.illTyped, and that a decoded-from-ValueContractId<T>may not even be `instanceof T