This file contains hidden or 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
| # Igra Attestor - Galleon Mainnet | |
| # | |
| # Prerequisites: | |
| # - igra-orchestra must be running with the backend profile | |
| # - The attestor connects to your local execution-layer via Docker networking | |
| # | |
| # Setup: | |
| # 1. Copy this file to .env: cp .env.galleon-mainnet .env | |
| # 2. Put your attester private key in secrets/private_key.txt | |
| # 3. Run: docker compose up -d |
This file contains hidden or 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
| // Smart contract: https://mumbai.polygonscan.com/address/0x0F416A4e020Dea9F969Bb2E7ef4A97E47CBd2F0C | |
| import {ethers} from 'ethers'; // version: ^6.2.3 | |
| const trustProvidersKeysAbi = [ | |
| { | |
| inputs: [ | |
| { | |
| internalType: 'address', | |
| name: 'account', | |
| type: 'address', |
This file contains hidden or 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
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.6.9; | |
| pragma experimental ABIEncoderV2; | |
| contract Delance { | |
| struct Request { | |
| string title; | |
| uint256 amount; | |
| bool locked; | |
| bool paid; |