hlxwrjf7em
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
import { NomadContext, NomadMessage } from "@nomad-xyz/sdk"; | |
async function main() { | |
const network = "rinkeby"; | |
const RPC_URI = ""; // i.e. Infura | |
const core = new NomadContext("development"); | |
core.registerRpcProvider(network, RPC_URI); | |
const txHash = "0x14931ab91c03181ae46a5c90d3b52ac8dd9128e8877bb12058607fc3a2c7330e"; |
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
I contributed to the clr.fund Trusted Setup Multi-Party Ceremony. | |
The following are my contribution signatures: | |
Circuit: qvt32 | |
Contributor # 2318 | |
Hash: 9ca9a924 578ac646 2de574a4 34927e1b | |
26f331b6 d069be06 6adb22a8 c5a1a32d | |
d618bae4 fec8676e ee7ca229 7e7e9f45 | |
2fe8054f 28fba590 9d7ae8dd af0760e9 | |
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
// import EthersSafe, { | |
// SafeTransactionDataPartial, | |
// } from '@gnosis.pm/safe-core-sdk'; | |
// import { OperationType } from '@gnosis.pm/safe-core-sdk-types'; | |
import { ethers } from 'ethers'; | |
import Web3 from 'web3'; | |
// import { ecrecover, toBuffer } from 'ethereumjs-util'; | |
import minionSafeModuleEnablerAbi from '../contracts/minionSafeModuleEnabler.json'; | |
// import safeCreateAndAddModulesAbi from '../contracts/safeCreateAndAddModule.json'; |
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
// This script assume using the GnosisSafe & GnosisSafeProxyFactory from here | |
// https://github.com/gnosis/safe-contracts/blob/v1.2.0/contracts/proxies/GnosisSafeProxyFactory.sol | |
// safe -> https://github.com/gnosis/safe-contracts/blob/v1.2.0/contracts/GnosisSafe.sol | |
import { ethers } from 'ethers'; | |
import Web3 from 'web3'; | |
import * as ethUtil from 'ethereumjs-util'; | |
import abi from 'ethereumjs-abi'; | |
const rpcUrl = ''; // Fill your RPC URI |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
did:3:bafyreicvls4l7wheywfw5nqwkq7kp5lyghi6wf656ijftc5fn7pou56gzy
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 node | |
// HOW to setup a Nodejs project and configure access credentials: | |
// https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/getting-started-nodejs.html | |
require('dotenv').config(); | |
const program = require('commander') | |
const mime = require('mime-types') | |
const AWS = require('aws-sdk') | |
const fs = require('fs') |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
import nbformat | |
import nbconvert | |
import logging | |
import sys | |
import time | |
# import wget | |
logger = logging.getLogger(__name__) | |
ep = nbconvert.preprocessors.ExecutePreprocessor(timeout=5000) |
NewerOlder