Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

50900.283726 WTG

1 210 809,71 FCFA (@ 23,79 FCFA/WTG)

Avoirs en tokens

1 token

≈ 1 224 264,29 FCFA voir ↓

Plus d'infos

Transactions envoyées1
Dernière activitéil y a 2 min
Première activitéil y a 1 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;

/// Jeton de cotation (peg FCFA) — mintable par le déployeur, pour seed la liquidité.
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);
    }
}

/// Jeton ERC-20 de test générique (nom/symbole/offre au déploiement).
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);
    }
}

/// Collection NFT ERC-721 minimale (émet Transfer à 3 topics indexés → détecté ERC-721).
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);
}

/// Brûleur de gaz : consomme du gaz de façon contrôlée (vrais opcodes, vrai gaz)
/// pour simuler la DEMANDE réseau sur le devnet — les blocs se remplissent, le base
/// fee EIP-1559 monte/descend selon l'intensité, et le burn de frais devient réel.
contract GasBurner {
    uint256 public acc;
    function churn(uint256 rounds) external {
        uint256 a = acc;
        // Mémoire de travail FIXE (scratch 0x00-0x40) → coût de gaz CONSTANT par tour.
        // (abi.encodePacked dans une boucle allouerait de la mémoire à chaque tour →
        //  coût quadratique → la calibration sous-estime → out-of-gas.)
        assembly {
            for { let i := 0 } lt(i, rounds) { i := add(i, 1) } {
                mstore(0x00, a)
                mstore(0x20, i)
                a := keccak256(0x00, 0x40)
            }
        }
        acc = a;
    }
}

/// Pool AMM x*y=k : WTG natif (réserve = solde du contrat) ⟷ WCFA. Frais 0,3 %.
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; }

    /// Prix = quoteReserve / wtgReserve. Sélecteur 0x0902f1ac (compatible lecture explorer).
    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);
    }

    /// Vend du WTG (msg.value), reçoit de la WCFA → fait BAISSER le prix.
    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);
    }

    /// Vend de la WCFA, reçoit du WTG → fait MONTER le prix.
    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

1635613.5048 SAHEL
≈ 1 224 264,29 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0x66738ae7f8… Échange 10 661 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 192.8074 WTG
≈ 4 586,48 FCFA
0.00008599 WTG
0xf04fb5cae4… Échange 10 602 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 287.4862 WTG
≈ 6 838,69 FCFA
0.00008599 WTG
0x3ba12f85e4… Échange 10 590 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 10286.42 SAHEL
≈ 7 699,44 FCFA
0.0001048 WTG
0x630d81a96c… Échange 10 537 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3421.96 SAHEL
≈ 2 561,36 FCFA
0.00010478 WTG
0xb21db73a53… Échange 10 497 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 288.0543 WTG
≈ 6 852,20 FCFA
0.00008599 WTG
0x00a00c16d8… Échange 10 472 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5148.2 SAHEL
≈ 3 853,46 FCFA
0.0001048 WTG
0xe91cc108e0… Échange 10 336 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6836.92 SAHEL
≈ 5 117,47 FCFA
0.0001048 WTG
0xeb42f59d0e… Échange 10 294 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 144.6002 WTG
≈ 3 439,73 FCFA
0.00008599 WTG
0xc390122ae7… Échange 10 281 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1712.63 SAHEL
≈ 1 281,91 FCFA
0.00010478 WTG
0x5a50ce6721… Échange 10 225 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 48.1999 WTG
≈ 1 146,57 FCFA
0.00008599 WTG
0xdbe8a17f20… Échange 10 175 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8529.05 SAHEL
≈ 6 384,03 FCFA
0.0001048 WTG
0xe4a60b8938… Échange 10 137 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8486.61 SAHEL
≈ 6 352,27 FCFA
0.0001048 WTG
0x3cceded2ff… Échange 10 132 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 10123.2 SAHEL
≈ 7 577,26 FCFA
0.0001048 WTG
0xb34764a8d0… Échange 10 101 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1685.51 SAHEL
≈ 1 261,62 FCFA
0.00010478 WTG
0xec1cbe67d3… Échange 10 096 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 243.8892 WTG
≈ 5 801,61 FCFA
0.00008599 WTG
0x68acfc2deb… Échange 10 088 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 194.334 WTG
≈ 4 622,79 FCFA
0.00008599 WTG
0x109b9960b1… Échange 10 049 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 96.973 WTG
≈ 2 306,78 FCFA
0.00008599 WTG
0x134a824764… Échange 10 033 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1702.36 SAHEL
≈ 1 274,23 FCFA
0.00010478 WTG
0x54a8175a24… Échange 9 933 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 145.1691 WTG
≈ 3 453,27 FCFA
0.00008599 WTG
0xca0c29d36c… Échange 9 911 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 240.7448 WTG
≈ 5 726,81 FCFA
0.00008599 WTG
0xd822730113… Échange 9 880 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6836.51 SAHEL
≈ 5 117,16 FCFA
0.0001048 WTG
0x9d65f0cfa7… Échange 9 874 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 144.5891 WTG
≈ 3 439,47 FCFA
0.00008599 WTG
0xe58d935462… Échange 9 728 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 192.0175 WTG
≈ 4 567,69 FCFA
0.00008599 WTG
0xfe780e6601… Échange 9 708 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 286.3084 WTG
≈ 6 810,67 FCFA
0.00008599 WTG
0x434b234c04… Échange 9 700 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6897.89 SAHEL
≈ 5 163,11 FCFA
0.0001048 WTG
Sahel Pay · il y a 2 min
4916.5514 SAHEL
≈ 3 680,06 FCFA
Sahel Pay · il y a 7 min
4901.8018 SAHEL
≈ 3 669,02 FCFA
Sahel Pay · il y a 8 min
1642.1101 SAHEL
≈ 1 229,13 FCFA
Sahel Pay · il y a 14 min
3277.665 SAHEL
≈ 2 453,35 FCFA
Sahel Pay · il y a 16 min
4901.748 SAHEL
≈ 3 668,98 FCFA
Sahel Pay · il y a 18 min
8177.7823 SAHEL
≈ 6 121,11 FCFA
Sahel Pay · il y a 19 min
1630.6498 SAHEL
≈ 1 220,55 FCFA
Sahel Pay · il y a 29 min
3264.5511 SAHEL
≈ 2 443,53 FCFA
Sahel Pay · il y a 31 min
4906.5909 SAHEL
≈ 3 672,61 FCFA
Sahel Pay · il y a 32 min
4921.3108 SAHEL
≈ 3 683,62 FCFA
Sahel Pay · il y a 48 min
8177.5782 SAHEL
≈ 6 120,96 FCFA
Sahel Pay · il y a 49 min
8202.0623 SAHEL
≈ 6 139,28 FCFA
Sahel Pay · il y a 54 min
6535.5078 SAHEL
≈ 4 891,86 FCFA
Sahel Pay · il y a 56 min
9773.852 SAHEL
≈ 7 315,77 FCFA
Sahel Pay · il y a 57 min
6548.4096 SAHEL
≈ 4 901,51 FCFA
Sahel Pay · il y a 59 min
4896.6173 SAHEL
≈ 3 665,14 FCFA
Sahel Pay · il y a 59 min
4881.9714 SAHEL
≈ 3 654,18 FCFA
Sahel Pay · il y a 1 h
9705.7086 SAHEL
≈ 7 264,77 FCFA
Sahel Pay · il y a 1 h
8063.8262 SAHEL
≈ 6 035,81 FCFA
Sahel Pay · il y a 1 h
8104.0244 SAHEL
≈ 6 065,90 FCFA
Sahel Pay · il y a 1 h
9773.3076 SAHEL
≈ 7 315,37 FCFA
Sahel Pay · il y a 1 h
1641.9173 SAHEL
≈ 1 228,98 FCFA
Sahel Pay · il y a 1 h
8184.958 SAHEL
≈ 6 126,48 FCFA
Sahel Pay · il y a 1 h
4935.456 SAHEL
≈ 3 694,21 FCFA
Sahel Pay · il y a 1 h
3303.4685 SAHEL
≈ 2 472,66 FCFA
Tx parenteTypeDeÀValeur
0xaa207b41…d7d8e6 appel 0x7dff5b…4a6325 0x835164…ee75cc 151.485322 WTG
≈ 3 603,51 FCFA
0x263b5da6…54f959 appel 0x7dff5b…4a6325 0x835164…ee75cc 50.494654 WTG
≈ 1 201,16 FCFA
0x2bbd2fa2…bea0d5 appel 0x7dff5b…4a6325 0x835164…ee75cc 101.089994 WTG
≈ 2 404,72 FCFA
0xd4a6e48d…ab336b appel 0x7dff5b…4a6325 0x835164…ee75cc 252.471506 WTG
≈ 6 005,76 FCFA
0xccc7fff2…d75dac appel 0x7dff5b…4a6325 0x835164…ee75cc 151.328409 WTG
≈ 3 599,78 FCFA
0x83ed3911…044a69 appel 0x7dff5b…4a6325 0x835164…ee75cc 251.709839 WTG
≈ 5 987,64 FCFA
0x539dd156…2327e4 appel 0x7dff5b…4a6325 0x835164…ee75cc 202.37169 WTG
≈ 4 813,99 FCFA
0xf73706bc…6a49a1 appel 0x7dff5b…4a6325 0x835164…ee75cc 201.966947 WTG
≈ 4 804,36 FCFA
0x5495cf89…28980e appel 0x7dff5b…4a6325 0x835164…ee75cc 152.079293 WTG
≈ 3 617,64 FCFA
0x8a390438…c19cbb appel 0x7dff5b…4a6325 0x835164…ee75cc 152.534162 WTG
≈ 3 628,46 FCFA
0x0def1302…1db55e appel 0x7dff5b…4a6325 0x835164…ee75cc 305.980784 WTG
≈ 7 278,63 FCFA
0xb76391aa…69bbec appel 0x7dff5b…4a6325 0x835164…ee75cc 50.489725 WTG
≈ 1 201,04 FCFA
0xff3849b6…7500bc appel 0x7dff5b…4a6325 0x835164…ee75cc 100.276412 WTG
≈ 2 385,36 FCFA
0x8c60b19b…e60f64 appel 0x7dff5b…4a6325 0x835164…ee75cc 248.697959 WTG
≈ 5 916,00 FCFA
0x5d8baf25…028562 appel 0x7dff5b…4a6325 0x835164…ee75cc 149.962631 WTG
≈ 3 567,29 FCFA
0xe1157177…a1f550 appel 0x7dff5b…4a6325 0x835164…ee75cc 100.274113 WTG
≈ 2 385,31 FCFA
0xb7a0ceda…1f60d1 appel 0x7dff5b…4a6325 0x835164…ee75cc 251.185149 WTG
≈ 5 975,16 FCFA
0x3da2810a…a71999 appel 0x7dff5b…4a6325 0x835164…ee75cc 50.487461 WTG
≈ 1 200,99 FCFA
0x2d51f941…164957 appel 0x7dff5b…4a6325 0x835164…ee75cc 50.537797 WTG
≈ 1 202,19 FCFA
0xe2329c3b…999fa9 appel 0x7dff5b…4a6325 0x835164…ee75cc 303.225875 WTG
≈ 7 213,10 FCFA
0x9621fed4…a3ab2b appel 0x7dff5b…4a6325 0x835164…ee75cc 305.039772 WTG
≈ 7 256,25 FCFA
0x49be391e…844963 appel 0x7dff5b…4a6325 0x835164…ee75cc 204.576347 WTG
≈ 4 866,44 FCFA
0x10130e77…8fe5cf appel 0x7dff5b…4a6325 0x835164…ee75cc 101.37257 WTG
≈ 2 411,44 FCFA
0xd7fce30e…e9e8e9 appel 0x7dff5b…4a6325 0x835164…ee75cc 50.736617 WTG
≈ 1 206,92 FCFA
0x51a2765b…548141 appel 0x7dff5b…4a6325 0x835164…ee75cc 202.94586 WTG
≈ 4 827,65 FCFA