Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

49025.040395 WTG

1 228 889,54 FCFA (@ 25,07 FCFA/WTG)

Avoirs en tokens

1 token

≈ 1 228 889,54 FCFA voir ↓

Plus d'infos

Transactions envoyées1
Dernière activitéil y a 3 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

1695728.5709 SAHEL
≈ 1 228 889,54 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0x66761f5aa2… Échange 38 412 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8276.27 SAHEL
≈ 5 997,79 FCFA
0.00045113 WTG
0xf65abe591a… Échange 38 340 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 150.1434 WTG
≈ 3 763,58 FCFA
0.00051214 WTG
0x9511e52197… Échange 38 306 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 199.3937 WTG
≈ 4 998,12 FCFA
0.00037429 WTG
0x12ba4dda46… Échange 38 285 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 149.098 WTG
≈ 3 737,38 FCFA
0.00044969 WTG
0xf01956c271… Échange 38 194 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1670.14 SAHEL
≈ 1 210,35 FCFA
0.00042313 WTG
0x0b55d827e0… Échange 38 137 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3333.61 SAHEL
≈ 2 415,86 FCFA
0.00070688 WTG
0xdf84c36891… Échange 38 052 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1665.14 SAHEL
≈ 1 206,72 FCFA
0.00039458 WTG
0x79834d3c9c… Échange 37 976 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 297.6011 WTG
≈ 7 459,84 FCFA
0.00063044 WTG
0x743379914d… Échange 37 965 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 148.3554 WTG
≈ 3 718,76 FCFA
0.00062355 WTG
0x07ab251722… Échange 37 955 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5025.26 SAHEL
≈ 3 641,80 FCFA
0.00040369 WTG
0xc242ce3343… Échange 37 873 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 49.5501 WTG
≈ 1 242,05 FCFA
0.00036234 WTG
0xa7a5bc63fb… Échange 37 704 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5015.23 SAHEL
≈ 3 634,52 FCFA
0.00041113 WTG
0xabc9dde32c… Échange 37 683 il y a 2 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8317.13 SAHEL
≈ 6 027,40 FCFA
0.00038375 WTG
0xca1fa18dba… Échange 37 592 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 149.3902 WTG
≈ 3 744,70 FCFA
0.00038604 WTG
0x9069450687… Échange 37 576 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3330.14 SAHEL
≈ 2 413,35 FCFA
0.00064493 WTG
0x135b326389… Échange 37 571 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 149.2404 WTG
≈ 3 740,95 FCFA
0.00073898 WTG
0x71634018d8… Échange 37 547 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3333.43 SAHEL
≈ 2 415,73 FCFA
0.00047148 WTG
0x54fa3de991… Échange 37 524 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1665.05 SAHEL
≈ 1 206,66 FCFA
0.00049398 WTG
0x1538b7bac8… Échange 37 504 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1663.39 SAHEL
≈ 1 205,45 FCFA
0.00055258 WTG
0x8e1be07856… Échange 37 501 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6627.05 SAHEL
≈ 4 802,61 FCFA
0.00046235 WTG
0x5ad8847415… Échange 37 474 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 50.0945 WTG
≈ 1 255,70 FCFA
0.00037101 WTG
0x2ee1e48e89… Échange 37 412 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8250.82 SAHEL
≈ 5 979,35 FCFA
0.00065325 WTG
0x772b04969d… Échange 37 392 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1648.51 SAHEL
≈ 1 194,67 FCFA
0.00047245 WTG
0x8c94219c95… Échange 37 199 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6567.79 SAHEL
≈ 4 759,66 FCFA
0.00039148 WTG
0x0df6587b00… Échange 37 107 il y a 3 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 9792.93 SAHEL
≈ 7 096,91 FCFA
0.00050262 WTG
Sahel Pay · il y a 3 min
5071.9698 SAHEL
≈ 3 675,64 FCFA
Sahel Pay · il y a 3 min
10113.5077 SAHEL
≈ 7 329,23 FCFA
Sahel Pay · il y a 11 min
5087.0491 SAHEL
≈ 3 686,57 FCFA
Sahel Pay · il y a 12 min
8436.2341 SAHEL
≈ 6 113,71 FCFA
Sahel Pay · il y a 13 min
8410.9254 SAHEL
≈ 6 095,37 FCFA
Sahel Pay · il y a 22 min
3384.5464 SAHEL
≈ 2 452,77 FCFA
Sahel Pay · il y a 27 min
6742.1243 SAHEL
≈ 4 886,00 FCFA
Sahel Pay · il y a 32 min
8385.7267 SAHEL
≈ 6 077,11 FCFA
Sahel Pay · il y a 34 min
8344.0067 SAHEL
≈ 6 046,88 FCFA
Sahel Pay · il y a 35 min
1663.7949 SAHEL
≈ 1 205,75 FCFA
Sahel Pay · il y a 35 min
8310.7718 SAHEL
≈ 6 022,79 FCFA
Sahel Pay · il y a 36 min
1660.4938 SAHEL
≈ 1 203,36 FCFA
Sahel Pay · il y a 39 min
6622.0495 SAHEL
≈ 4 798,98 FCFA
Sahel Pay · il y a 40 min
1662.1145 SAHEL
≈ 1 204,53 FCFA
Sahel Pay · il y a 40 min
3327.5434 SAHEL
≈ 2 411,46 FCFA
Sahel Pay · il y a 49 min
8335.4463 SAHEL
≈ 6 040,67 FCFA
Sahel Pay · il y a 55 min
3350.7994 SAHEL
≈ 2 428,31 FCFA
Sahel Pay · il y a 57 min
3360.8619 SAHEL
≈ 2 435,61 FCFA
Sahel Pay · il y a 1 h
6701.5586 SAHEL
≈ 4 856,60 FCFA
Sahel Pay · il y a 1 h
8393.6941 SAHEL
≈ 6 082,89 FCFA
Sahel Pay · il y a 1 h
10012.3588 SAHEL
≈ 7 255,93 FCFA
Sahel Pay · il y a 1 h
3327.4405 SAHEL
≈ 2 411,39 FCFA
Sahel Pay · il y a 1 h
1670.3835 SAHEL
≈ 1 210,52 FCFA
Sahel Pay · il y a 1 h
3334.0988 SAHEL
≈ 2 416,21 FCFA
Sahel Pay · il y a 1 h
4986.1448 SAHEL
≈ 3 613,44 FCFA
Tx parenteTypeDeÀValeur
0xaf23310e…5a8456 appel 0x7dff5b…4a6325 0x835164…ee75cc 146.633895 WTG
≈ 3 675,61 FCFA
0x7910de5a…9dec39 appel 0x7dff5b…4a6325 0x835164…ee75cc 146.195305 WTG
≈ 3 664,61 FCFA
0x40214fb7…48e9a1 appel 0x7dff5b…4a6325 0x835164…ee75cc 244.387626 WTG
≈ 6 125,96 FCFA
0x1ca3e84e…5dcfe7 appel 0x7dff5b…4a6325 0x835164…ee75cc 97.753591 WTG
≈ 2 450,35 FCFA
0x50d5ebfb…804dce appel 0x7dff5b…4a6325 0x835164…ee75cc 195.897024 WTG
≈ 4 910,47 FCFA
0x05e28260…34bb49 appel 0x7dff5b…4a6325 0x835164…ee75cc 245.847827 WTG
≈ 6 162,56 FCFA
0x69b3fe5a…ae98be appel 0x7dff5b…4a6325 0x835164…ee75cc 247.073379 WTG
≈ 6 193,28 FCFA
0xe088d067…289c35 appel 0x7dff5b…4a6325 0x835164…ee75cc 248.056982 WTG
≈ 6 217,94 FCFA
0x975d8455…86265c appel 0x7dff5b…4a6325 0x835164…ee75cc 49.858709 WTG
≈ 1 249,79 FCFA
0x73cdbaa8…78af2c appel 0x7dff5b…4a6325 0x835164…ee75cc 98.431591 WTG
≈ 2 467,34 FCFA
0xfaf1ad49…3f01b3 appel 0x7dff5b…4a6325 0x835164…ee75cc 245.587311 WTG
≈ 6 156,03 FCFA
0xd2de88ee…bc7ee2 appel 0x7dff5b…4a6325 0x835164…ee75cc 296.173877 WTG
≈ 7 424,06 FCFA
0xdd307314…9291bd appel 0x7dff5b…4a6325 0x835164…ee75cc 49.558481 WTG
≈ 1 242,26 FCFA
0x3efd6a1f…21c1a9 appel 0x7dff5b…4a6325 0x835164…ee75cc 99.215782 WTG
≈ 2 487,00 FCFA
0xf36a3b67…9438c1 appel 0x7dff5b…4a6325 0x835164…ee75cc 147.198737 WTG
≈ 3 689,77 FCFA
0x80fbe0ff…95e635 appel 0x7dff5b…4a6325 0x835164…ee75cc 98.426005 WTG
≈ 2 467,20 FCFA
0x8ea350a0…ad7db4 appel 0x7dff5b…4a6325 0x835164…ee75cc 49.311133 WTG
≈ 1 236,06 FCFA
0xc31f8d6c…c40f1e appel 0x7dff5b…4a6325 0x835164…ee75cc 148.08089 WTG
≈ 3 711,88 FCFA
0xa50c5e74…53da2e appel 0x7dff5b…4a6325 0x835164…ee75cc 293.219597 WTG
≈ 7 350,01 FCFA
0x66b29e7b…4da082 appel 0x7dff5b…4a6325 0x835164…ee75cc 49.162272 WTG
≈ 1 232,33 FCFA
0x8cdc8fe7…e65f6d appel 0x7dff5b…4a6325 0x835164…ee75cc 295.267725 WTG
≈ 7 401,35 FCFA
0x331917ee…2ce062 appel 0x7dff5b…4a6325 0x835164…ee75cc 148.220567 WTG
≈ 3 715,38 FCFA
0x79b21a5d…5ca715 appel 0x7dff5b…4a6325 0x835164…ee75cc 297.030759 WTG
≈ 7 445,54 FCFA
0xd5be9957…6ca56d appel 0x7dff5b…4a6325 0x835164…ee75cc 147.91986 WTG
≈ 3 707,84 FCFA
0x9c0eb019…800f35 appel 0x7dff5b…4a6325 0x835164…ee75cc 296.724578 WTG
≈ 7 437,87 FCFA