-- file: ethabi/Cargo.toml --
[package]
name = "ethabi"
version = "18.0.0"
authors = [
"Parity Technologies <[email protected]>",
"Artem Vorotnikov <[email protected]>",
"Nicholas Rodrigues Lordello <[email protected]>",
]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fc-cli v1.0.0-dev (/Users/bear/develop/frontier/client/cli) | |
├── clap v4.1.6 | |
│ ├── bitflags v1.3.2 | |
│ ├── clap_derive v4.1.0 (proc-macro) | |
│ │ ├── heck v0.4.0 | |
│ │ ├── proc-macro-error v1.0.4 | |
│ │ │ ├── proc-macro-error-attr v1.0.4 (proc-macro) | |
│ │ │ │ ├── proc-macro2 v1.0.50 | |
│ │ │ │ │ └── unicode-ident v1.0.6 | |
│ │ │ │ └── quote v1.0.23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![cfg_attr(not(feature = "std"), no_std)] | |
// `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. | |
#![recursion_limit = "256"] | |
// Make the WASM binary available. | |
#[cfg(feature = "std")] | |
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); | |
mod currency; | |
mod weights; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2019-2022 PureStake Inc. | |
// This file is part of Moonbeam. | |
// Moonbeam is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. | |
// Moonbeam is distributed in the hope that it will be useful, | |
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
from test_framework.blocktools import create_coinbase | |
from test_framework.test_framework import BitcoinTestFramework | |
from test_framework.util import assert_equal | |
from test_framework.messages import CBlock | |
from test_framework.blocktools import NORMAL_GBT_REQUEST_PARAMS | |
def assert_template(node, block, expect, rehash=True): | |
if rehash: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put this file in the root of substrate / polkadot directory. | |
FROM rust:latest | |
RUN dpkg --add-architecture arm64 && \ | |
apt-get update && apt-get upgrade -y && \ | |
apt-get install -y aptitude && \ | |
aptitude install -y \ | |
gcc-aarch64-linux-gnu \ | |
g++-aarch64-linux-gnu \ |
- Install the Termux app from FDroid or the Google Play store.
- Install a PRoot of your choice following the instructions for your preferred distribution. Note, the Ubuntu PRoot is known to contain all Nimbus prerequisites compiled on Arm64 architecture (the most common architecture for Android devices).
$ pkg install proot
$ pkg install proot-distro
$ proot-distro install ubuntu
$ proot-distro login ubuntu
I hereby claim:
- I am bernardoaraujor on github.
- I am bernardoaraujor (https://keybase.io/bernardoaraujor) on keybase.
- I have a public key ASAR0h1E3gv84wWzGMDBstqaW6kpg94h8iElrt-Vqc8FiQo
To claim this, I am signing this object:
This is a little guide so anyone who owns an Intel DE10-Nano can try out the first Qubic release.
I will not cover any HDL-related topics. This is only meant to get UBoot to load the FPGA Configuration bitstream into Linux's memory mapped device (a.k.a /dev/mem
), and then use the devmem utility to peek and poke the QLEs and QLUTs residing in the soft-IP side of the SoCFPGA.
The steps are loosely based on the tutorials from this Intel repository, mainly writeup_linux.pdf, which can be found in its [release page](htt
NewerOlder