Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

51159.299695 WTG

1 295 806,87 FCFA (@ 25,33 FCFA/WTG)

Avoirs en tokens

1 token

≈ 1 312 413,43 FCFA voir ↓

Plus d'infos

Transactions envoyées1
Dernière activitéil y a 6 min
Première activitéil y a 2 j
Financé par

Code du contrat

✓ Vérifié

WtgPool · Solidity v0.8.35 · optimiseur activé (200 runs) · licence MIT

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

contract WCFA {
    string public name = "WINTG CFA";
    string public symbol = "WCFA";
    uint8 public decimals = 18;
    uint256 public totalSupply;
    address public owner;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor() { owner = msg.sender; }

    function mint(address to, uint256 amt) external {
        require(msg.sender == owner, "!owner");
        totalSupply += amt;
        balanceOf[to] += amt;
        emit Transfer(address(0), to, amt);
    }
    function transfer(address to, uint256 amt) external returns (bool) { _t(msg.sender, to, amt); return true; }
    function approve(address s, uint256 amt) external returns (bool) {
        allowance[msg.sender][s] = amt; emit Approval(msg.sender, s, amt); return true;
    }
    function transferFrom(address f, address to, uint256 amt) external returns (bool) {
        uint256 a = allowance[f][msg.sender];
        require(a >= amt, "allow");
        if (a != type(uint256).max) allowance[f][msg.sender] = a - amt;
        _t(f, to, amt); return true;
    }
    function _t(address f, address to, uint256 amt) internal {
        require(balanceOf[f] >= amt, "bal");
        balanceOf[f] -= amt; balanceOf[to] += amt; emit Transfer(f, to, amt);
    }
}

contract TestToken {
    string public name;
    string public symbol;
    uint8 public decimals = 18;
    uint256 public totalSupply;
    address public owner;
    mapping(address => uint256) public balanceOf;
    mapping(address => mapping(address => uint256)) public allowance;
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    constructor(string memory n, string memory s, uint256 supply) {
        name = n; symbol = s; owner = msg.sender;
        totalSupply = supply; balanceOf[msg.sender] = supply;
        emit Transfer(address(0), msg.sender, supply);
    }
    function mint(address to, uint256 amt) external {
        require(msg.sender == owner, "!owner");
        totalSupply += amt; balanceOf[to] += amt; emit Transfer(address(0), to, amt);
    }
    function transfer(address to, uint256 amt) external returns (bool) { _t(msg.sender, to, amt); return true; }
    function approve(address sp, uint256 amt) external returns (bool) {
        allowance[msg.sender][sp] = amt; emit Approval(msg.sender, sp, amt); return true;
    }
    function transferFrom(address f, address to, uint256 amt) external returns (bool) {
        uint256 a = allowance[f][msg.sender]; require(a >= amt, "allow");
        if (a != type(uint256).max) allowance[f][msg.sender] = a - amt;
        _t(f, to, amt); return true;
    }
    function _t(address f, address to, uint256 amt) internal {
        require(balanceOf[f] >= amt, "bal");
        balanceOf[f] -= amt; balanceOf[to] += amt; emit Transfer(f, to, amt);
    }
}

contract TestNFT {
    string public name;
    string public symbol;
    uint256 public totalSupply;
    address public owner;
    mapping(uint256 => address) public ownerOf;
    mapping(address => uint256) public balanceOf;
    mapping(uint256 => address) public getApproved;
    event Transfer(address indexed from, address indexed to, uint256 indexed id);
    event Approval(address indexed owner, address indexed approved, uint256 indexed id);

    constructor(string memory n, string memory s) { name = n; symbol = s; owner = msg.sender; }
    function mint(address to) external returns (uint256 id) {
        id = ++totalSupply; ownerOf[id] = to; balanceOf[to]++; emit Transfer(address(0), to, id);
    }
    function transferFrom(address from, address to, uint256 id) external {
        require(ownerOf[id] == from, "own");
        require(msg.sender == from || getApproved[id] == msg.sender, "auth");
        ownerOf[id] = to; balanceOf[from]--; balanceOf[to]++; delete getApproved[id];
        emit Transfer(from, to, id);
    }
    function approve(address a, uint256 id) external {
        require(ownerOf[id] == msg.sender, "own"); getApproved[id] = a; emit Approval(msg.sender, a, id);
    }
}

interface IERC20 {
    function transfer(address to, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
    function balanceOf(address) external view returns (uint256);
}

contract GasBurner {
    uint256 public acc;
    function churn(uint256 rounds) external {
        uint256 a = acc;

        assembly {
            for { let i := 0 } lt(i, rounds) { i := add(i, 1) } {
                mstore(0x00, a)
                mstore(0x20, i)
                a := keccak256(0x00, 0x40)
            }
        }
        acc = a;
    }
}

contract WtgPool {
    IERC20 public quote;
    address public owner;
    event Swap(address indexed who, bool wtgIn, uint256 amountIn, uint256 amountOut);

    constructor(address _quote) { quote = IERC20(_quote); owner = msg.sender; }

    function getReserves() external view returns (uint256 wtgReserve, uint256 quoteReserve) {
        return (address(this).balance, quote.balanceOf(address(this)));
    }

    function addLiquidity(uint256 quoteAmount) external payable {
        require(quote.transferFrom(msg.sender, address(this), quoteAmount), "quote in");
    }

    function _out(uint256 amountIn, uint256 rIn, uint256 rOut) internal pure returns (uint256) {
        uint256 inWithFee = amountIn * 997;
        return (inWithFee * rOut) / (rIn * 1000 + inWithFee);
    }

    function swapWtgForQuote(uint256 minOut) external payable returns (uint256 out) {
        uint256 rWtg = address(this).balance - msg.value;
        uint256 rQuote = quote.balanceOf(address(this));
        out = _out(msg.value, rWtg, rQuote);
        require(out >= minOut && out < rQuote, "slip");
        require(quote.transfer(msg.sender, out), "quote out");
        emit Swap(msg.sender, true, msg.value, out);
    }

    function swapQuoteForWtg(uint256 amountIn, uint256 minOut) external returns (uint256 out) {
        require(quote.transferFrom(msg.sender, address(this), amountIn), "quote in");
        uint256 rQuote = quote.balanceOf(address(this)) - amountIn;
        uint256 rWtg = address(this).balance;
        out = _out(amountIn, rQuote, rWtg);
        require(out >= minOut && out < rWtg, "slip");
        (bool ok, ) = msg.sender.call{value: out}("");
        require(ok, "wtg out");
        emit Swap(msg.sender, false, amountIn, out);
    }

    receive() external payable {}
}
[
    {
        "inputs": [
            {
                "internalType": "address",
                "name": "_quote",
                "type": "address"
            }
        ],
        "stateMutability": "nonpayable",
        "type": "constructor"
    },
    {
        "anonymous": false,
        "inputs": [
            {
                "indexed": true,
                "internalType": "address",
                "name": "who",
                "type": "address"
            },
            {
                "indexed": false,
                "internalType": "bool",
                "name": "wtgIn",
                "type": "bool"
            },
            {
                "indexed": false,
                "internalType": "uint256",
                "name": "amountIn",
                "type": "uint256"
            },
            {
                "indexed": false,
                "internalType": "uint256",
                "name": "amountOut",
                "type": "uint256"
            }
        ],
        "name": "Swap",
        "type": "event"
    },
    {
        "inputs": [
            {
                "internalType": "uint256",
                "name": "quoteAmount",
                "type": "uint256"
            }
        ],
        "name": "addLiquidity",
        "outputs": [],
        "stateMutability": "payable",
        "type": "function"
    },
    {
        "inputs": [],
        "name": "getReserves",
        "outputs": [
            {
                "internalType": "uint256",
                "name": "wtgReserve",
                "type": "uint256"
            },
            {
                "internalType": "uint256",
                "name": "quoteReserve",
                "type": "uint256"
            }
        ],
        "stateMutability": "view",
        "type": "function"
    },
    {
        "inputs": [],
        "name": "owner",
        "outputs": [
            {
                "internalType": "address",
                "name": "",
                "type": "address"
            }
        ],
        "stateMutability": "view",
        "type": "function"
    },
    {
        "inputs": [],
        "name": "quote",
        "outputs": [
            {
                "internalType": "contract IERC20",
                "name": "",
                "type": "address"
            }
        ],
        "stateMutability": "view",
        "type": "function"
    },
    {
        "inputs": [
            {
                "internalType": "uint256",
                "name": "amountIn",
                "type": "uint256"
            },
            {
                "internalType": "uint256",
                "name": "minOut",
                "type": "uint256"
            }
        ],
        "name": "swapQuoteForWtg",
        "outputs": [
            {
                "internalType": "uint256",
                "name": "out",
                "type": "uint256"
            }
        ],
        "stateMutability": "nonpayable",
        "type": "function"
    },
    {
        "inputs": [
            {
                "internalType": "uint256",
                "name": "minOut",
                "type": "uint256"
            }
        ],
        "name": "swapWtgForQuote",
        "outputs": [
            {
                "internalType": "uint256",
                "name": "out",
                "type": "uint256"
            }
        ],
        "stateMutability": "payable",
        "type": "function"
    },
    {
        "stateMutability": "payable",
        "type": "receive"
    }
]
0x6080604052600436106100595760003560e01c80630902f1ac1461006557806351c6590a1461009457806352d782ce146100a95780638da5cb5b146100ca578063999b93af14610102578063af707b371461012257600080fd5b3661006057005b600080fd5b34801561007157600080fd5b5061007a610142565b604080519283526020830191909152015b60405180910390f35b6100a76100a23660046106d0565b6101bb565b005b6100bc6100b73660046106d0565b610275565b60405190815260200161008b565b3480156100d657600080fd5b506001546100ea906001600160a01b031681565b6040516001600160a01b03909116815260200161008b565b34801561010e57600080fd5b506000546100ea906001600160a01b031681565b34801561012e57600080fd5b506100bc61013d3660046106e9565b61043e565b600080546040516370a0823160e01b8152306004820152829147916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561018f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101b3919061070b565b915091509091565b6000546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610212573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102369190610724565b6102725760405162461bcd60e51b815260206004820152600860248201526738bab7ba329034b760c11b60448201526064015b60405180910390fd5b50565b6000806102823447610763565b600080546040516370a0823160e01b815230600482015292935090916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156102d0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f4919061070b565b905061030134838361068b565b925083831015801561031257508083105b6103475760405162461bcd60e51b8152600401610269906020808252600490820152630736c69760e41b604082015260600190565b60005460405163a9059cbb60e01b8152336004820152602481018590526001600160a01b039091169063a9059cbb906044016020604051808303816000875af1158015610398573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103bc9190610724565b6103f45760405162461bcd60e51b81526020600482015260096024820152681c5d5bdd19481bdd5d60ba1b6044820152606401610269565b604080516001815234602082015290810184905233907fbfd50a04f1e6e4aee344f5d0e7f15d74d0dbb58cd1f711daa6463094ca9508cd9060600160405180910390a25050919050565b600080546040516323b872dd60e01b8152336004820152306024820152604481018590526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610496573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ba9190610724565b6104f15760405162461bcd60e51b815260206004820152600860248201526738bab7ba329034b760c11b6044820152606401610269565b600080546040516370a0823160e01b815230600482015285916001600160a01b0316906370a0823190602401602060405180830381865afa15801561053a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061055e919061070b565b6105689190610763565b90504761057685838361068b565b925083831015801561058757508083105b6105bc5760405162461bcd60e51b8152600401610269906020808252600490820152630736c69760e41b604082015260600190565b604051600090339085908381818185875af1925050503d80600081146105fe576040519150601f19603f3d011682016040523d82523d6000602084013e610603565b606091505b505090508061063e5760405162461bcd60e51b81526020600482015260076024820152661ddd19c81bdd5d60ca1b6044820152606401610269565b60408051600081526020810188905290810185905233907fbfd50a04f1e6e4aee344f5d0e7f15d74d0dbb58cd1f711daa6463094ca9508cd9060600160405180910390a250505092915050565b60008061069a856103e561077c565b9050806106a9856103e861077c565b6106b39190610793565b6106bd848361077c565b6106c791906107a6565b95945050505050565b6000602082840312156106e257600080fd5b5035919050565b600080604083850312156106fc57600080fd5b50508035926020909101359150565b60006020828403121561071d57600080fd5b5051919050565b60006020828403121561073657600080fd5b8151801515811461074657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b818103818111156107765761077661074d565b92915050565b80820281158282048414176107765761077661074d565b808201808211156107765761077661074d565b6000826107c357634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212204120cc75dfb59d9947c414ea16e8ed29a047ce6121ec2a18d845324a1afb775c64736f6c63430008230033

Avoirs

SAHEL

1634303.9666 SAHEL
≈ 1 312 413,43 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0x6d1ddaa1c1… Échange 6 562 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 239.4786 WTG
≈ 6 065,72 FCFA
0.00031861 WTG
0x102977b105… Échange 6 502 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 285.6604 WTG
≈ 7 235,45 FCFA
0.00033157 WTG
0xe32b816e2d… Échange 6 448 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5187.41 SAHEL
≈ 4 113,00 FCFA
0.00040431 WTG
0xf6b42984a3… Échange 6 427 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1727.41 SAHEL
≈ 1 369,63 FCFA
0.00042243 WTG
0xc16f52e9fd… Échange 6 421 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 190.4385 WTG
≈ 4 823,59 FCFA
0.00037218 WTG
0xaf9797c3c5… Échange 6 350 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3461.67 SAHEL
≈ 2 744,69 FCFA
0.00072567 WTG
0xa763e3fdd3… Échange 6 318 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 237.3361 WTG
≈ 6 011,46 FCFA
0.00032397 WTG
0x80e2a30765… Échange 6 302 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8654.06 SAHEL
≈ 6 861,63 FCFA
0.00043049 WTG
0xa7cf3e0e51… Échange 6 221 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 142.6835 WTG
≈ 3 614,01 FCFA
0.00081796 WTG
0x17fcee1df2… Échange 6 179 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5192.38 SAHEL
≈ 4 116,94 FCFA
0.00060236 WTG
0x642531707b… Échange 6 117 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 237.3305 WTG
≈ 6 011,31 FCFA
0.0004101 WTG
0x89804c95af… Échange 6 110 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 189.1079 WTG
≈ 4 789,89 FCFA
0.00037689 WTG
0x65f8f4acb2… Échange 6 098 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 94.3652 WTG
≈ 2 390,16 FCFA
0.00060237 WTG
0x87ec3c496c… Échange 6 072 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3492.7 SAHEL
≈ 2 769,29 FCFA
0.00059028 WTG
0x4a65408bca… Échange 6 043 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 188.3534 WTG
≈ 4 770,78 FCFA
0.00035423 WTG
0x238eeaf522… Échange 5 821 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6985.32 SAHEL
≈ 5 538,52 FCFA
0.00053192 WTG
0xaf73807329… Échange 5 705 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5223.32 SAHEL
≈ 4 141,47 FCFA
0.00126602 WTG
0xf334f8705a… Échange 5 702 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 188.9145 WTG
≈ 4 784,99 FCFA
0.00081281 WTG
0xc91653b7ae… Échange 5 680 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8696.76 SAHEL
≈ 6 895,49 FCFA
0.00041688 WTG
0xebeb6b1241… Échange 5 649 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 47.4166 WTG
≈ 1 201,01 FCFA
0.00058817 WTG
0x6bbbb356a8… Échange 5 501 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1739.34 SAHEL
≈ 1 379,09 FCFA
0.00049622 WTG
0x41277ca455… Échange 5 498 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 10373.84 SAHEL
≈ 8 225,22 FCFA
0.0004884 WTG
0x710db0cfc7… Échange 5 444 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1727.24 SAHEL
≈ 1 369,50 FCFA
0.00043708 WTG
0x79e2563539… Échange 5 439 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 10301.67 SAHEL
≈ 8 167,99 FCFA
0.00040296 WTG
0x3b27867ae2… Échange 5 400 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5135.43 SAHEL
≈ 4 071,78 FCFA
0.00045542 WTG
Sahel Pay · il y a 6 min
3252.3203 SAHEL
≈ 2 611,75 FCFA
Sahel Pay · il y a 18 min
4863.8887 SAHEL
≈ 3 905,90 FCFA
Sahel Pay · il y a 23 min
8066.1505 SAHEL
≈ 6 477,45 FCFA
Sahel Pay · il y a 25 min
6433.5616 SAHEL
≈ 5 166,42 FCFA
Sahel Pay · il y a 33 min
1614.8046 SAHEL
≈ 1 296,75 FCFA
Sahel Pay · il y a 34 min
1619.6588 SAHEL
≈ 1 300,65 FCFA
Sahel Pay · il y a 38 min
8058.004 SAHEL
≈ 6 470,91 FCFA
Sahel Pay · il y a 42 min
6427.064 SAHEL
≈ 5 161,20 FCFA
Sahel Pay · il y a 51 min
3229.5965 SAHEL
≈ 2 593,50 FCFA
Sahel Pay · il y a 51 min
9659.7233 SAHEL
≈ 7 757,16 FCFA
Sahel Pay · il y a 52 min
4858.7538 SAHEL
≈ 3 901,78 FCFA
Sahel Pay · il y a 54 min
1627.689 SAHEL
≈ 1 307,10 FCFA
Sahel Pay · il y a 56 min
3248.8803 SAHEL
≈ 2 608,98 FCFA
Sahel Pay · il y a 57 min
1622.8173 SAHEL
≈ 1 303,19 FCFA
Sahel Pay · il y a 58 min
9707.6935 SAHEL
≈ 7 795,68 FCFA
Sahel Pay · il y a 58 min
4882.9264 SAHEL
≈ 3 921,19 FCFA
Sahel Pay · il y a 58 min
3248.7867 SAHEL
≈ 2 608,91 FCFA
Sahel Pay · il y a 1 h
1619.5201 SAHEL
≈ 1 300,54 FCFA
Sahel Pay · il y a 1 h
3245.5346 SAHEL
≈ 2 606,30 FCFA
Sahel Pay · il y a 1 h
6465.2085 SAHEL
≈ 5 191,83 FCFA
Sahel Pay · il y a 1 h
8041.3041 SAHEL
≈ 6 457,50 FCFA
Sahel Pay · il y a 1 h
6413.7441 SAHEL
≈ 5 150,50 FCFA
Sahel Pay · il y a 1 h
8049.1527 SAHEL
≈ 6 463,80 FCFA
Sahel Pay · il y a 1 h
3238.9695 SAHEL
≈ 2 601,03 FCFA
Sahel Pay · il y a 1 h
6452.1304 SAHEL
≈ 5 181,33 FCFA
Tx parenteTypeDeÀValeur
0x7ec112e7…8942c6 appel 0x7dff5b…4a6325 0x835164…ee75cc 51.005821 WTG
≈ 1 291,92 FCFA
0x06c3f428…b06960 appel 0x7dff5b…4a6325 0x835164…ee75cc 102.113349 WTG
≈ 2 586,41 FCFA
0xfaa1a6b5…64e958 appel 0x7dff5b…4a6325 0x835164…ee75cc 102.316963 WTG
≈ 2 591,57 FCFA
0xedc96235…e8c0c0 appel 0x7dff5b…4a6325 0x835164…ee75cc 153.781474 WTG
≈ 3 895,11 FCFA
0x3c3253d6…bc5a75 appel 0x7dff5b…4a6325 0x835164…ee75cc 257.069058 WTG
≈ 6 511,27 FCFA
0xf0425d1f…2f5049 appel 0x7dff5b…4a6325 0x835164…ee75cc 51.412839 WTG
≈ 1 302,23 FCFA
0x31b4f866…9bb541 appel 0x7dff5b…4a6325 0x835164…ee75cc 257.320491 WTG
≈ 6 517,64 FCFA
0x7656d7c9…d63467 appel 0x7dff5b…4a6325 0x835164…ee75cc 103.029177 WTG
≈ 2 609,61 FCFA
0xf3a01b9f…db0d04 appel 0x7dff5b…4a6325 0x835164…ee75cc 51.155983 WTG
≈ 1 295,72 FCFA
0xfae24941…7dca3f appel 0x7dff5b…4a6325 0x835164…ee75cc 102.413972 WTG
≈ 2 594,03 FCFA
0x4291a012…81a002 appel 0x7dff5b…4a6325 0x835164…ee75cc 51.309093 WTG
≈ 1 299,60 FCFA
0x6d564223…946664 appel 0x7dff5b…4a6325 0x835164…ee75cc 153.161774 WTG
≈ 3 879,41 FCFA
0x96e07ab1…15ae8d appel 0x7dff5b…4a6325 0x835164…ee75cc 102.413254 WTG
≈ 2 594,01 FCFA
0x8ee6ed76…65822a appel 0x7dff5b…4a6325 0x835164…ee75cc 102.514951 WTG
≈ 2 596,59 FCFA
0xf7455b76…ce849b appel 0x7dff5b…4a6325 0x835164…ee75cc 205.438732 WTG
≈ 5 203,53 FCFA
0xc91d8763…5f56b8 appel 0x7dff5b…4a6325 0x835164…ee75cc 257.822527 WTG
≈ 6 530,35 FCFA
0x4d5566d6…16da0c appel 0x7dff5b…4a6325 0x835164…ee75cc 102.716605 WTG
≈ 2 601,69 FCFA
0x311344e4…706d75 appel 0x7dff5b…4a6325 0x835164…ee75cc 205.842844 WTG
≈ 5 213,77 FCFA
0x8ebac531…ef9e65 appel 0x7dff5b…4a6325 0x835164…ee75cc 103.331872 WTG
≈ 2 617,28 FCFA
0x746460d4…0fe80a appel 0x7dff5b…4a6325 0x835164…ee75cc 202.175655 WTG
≈ 5 120,88 FCFA
0x07ca9a54…61e15c appel 0x7dff5b…4a6325 0x835164…ee75cc 50.745482 WTG
≈ 1 285,33 FCFA
0xc2864b7f…67bbed appel 0x7dff5b…4a6325 0x835164…ee75cc 101.592152 WTG
≈ 2 573,21 FCFA
0x058484a3…8b9017 appel 0x7dff5b…4a6325 0x835164…ee75cc 50.897363 WTG
≈ 1 289,17 FCFA
0xd7445dec…ad5b0d appel 0x7dff5b…4a6325 0x835164…ee75cc 152.539246 WTG
≈ 3 863,65 FCFA
0x771529ff…c6a11b appel 0x7dff5b…4a6325 0x835164…ee75cc 305.990982 WTG
≈ 7 750,40 FCFA