Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

52759.832797 WTG

1 189 834,73 FCFA (@ 22,55 FCFA/WTG)

Avoirs en tokens

1 token

≈ 1 183 348,48 FCFA voir ↓

Plus d'infos

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

1581207.0735 SAHEL
≈ 1 183 348,48 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0x9fd4bfa41b… Échange 31 514 il y a 23 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 291.8456 WTG
≈ 6 462,64 FCFA
0.00008599 WTG
0xf1dbcffdd2… Échange 31 432 il y a 23 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 145.4863 WTG
≈ 3 221,66 FCFA
0.00008599 WTG
0xa696a85abc… Échange 31 422 il y a 23 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 193.2089 WTG
≈ 4 278,43 FCFA
0.00008599 WTG
0x3805699c35… Échange 31 419 il y a 23 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 10246.89 SAHEL
≈ 7 668,60 FCFA
0.0001048 WTG
0xfdcd915175… Échange 31 400 il y a 23 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 96.9884 WTG
≈ 2 147,72 FCFA
0.00008599 WTG
0xaf0f1a8864… Échange 31 368 il y a 23 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5118.3 SAHEL
≈ 3 830,46 FCFA
0.0001048 WTG
0x9fd7dae523… Échange 31 289 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 97.0843 WTG
≈ 2 149,84 FCFA
0.00008599 WTG
0xcfcb54288f… Échange 31 270 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 145.1909 WTG
≈ 3 215,11 FCFA
0.00008599 WTG
0xebcccfce4b… Échange 31 124 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 288.6499 WTG
≈ 6 391,88 FCFA
0.00008599 WTG
0xd41677903b… Échange 31 058 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1723.15 SAHEL
≈ 1 289,58 FCFA
0.00010478 WTG
0x56a015b7c2… Échange 31 046 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 48.1081 WTG
≈ 1 065,31 FCFA
0.00008599 WTG
0x289ac0bf72… Échange 30 973 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 143.8928 WTG
≈ 3 186,37 FCFA
0.00008599 WTG
0x752b71438f… Échange 30 895 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 95.737 WTG
≈ 2 120,01 FCFA
0.00008599 WTG
0xa3a034fc04… Échange 30 829 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 238.1519 WTG
≈ 5 273,65 FCFA
0.00008599 WTG
0x185a9960d7… Échange 30 716 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 236.9671 WTG
≈ 5 247,41 FCFA
0.00008599 WTG
0xd61f0e22a3… Échange 30 712 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 10442.17 SAHEL
≈ 7 814,74 FCFA
0.0001048 WTG
0x7e24dea4e9… Échange 30 710 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 47.6293 WTG
≈ 1 054,71 FCFA
0.00008599 WTG
0x73d835410f… Échange 30 675 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6940.62 SAHEL
≈ 5 194,25 FCFA
0.0001048 WTG
0xbe8288f6c9… Échange 30 647 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5189.9 SAHEL
≈ 3 884,03 FCFA
0.0001048 WTG
0x8d024f3a46… Échange 30 644 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 191.0847 WTG
≈ 4 231,39 FCFA
0.00008599 WTG
0xb8be5ef775… Échange 30 615 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1735.13 SAHEL
≈ 1 298,54 FCFA
0.00010478 WTG
0x627dec86ec… Échange 30 602 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 285.2017 WTG
≈ 6 315,52 FCFA
0.00008599 WTG
0xa1320a502f… Échange 30 566 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8684.13 SAHEL
≈ 6 499,06 FCFA
0.0001048 WTG
0x54c40d9dd5… Échange 30 474 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 142.883 WTG
≈ 3 164,01 FCFA
0.00008599 WTG
0xb3ff622895… Échange 30 431 il y a 1 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 47.5801 WTG
≈ 1 053,62 FCFA
0.00008599 WTG
Sahel Pay · il y a 5 min
7882.3172 SAHEL
≈ 5 898,99 FCFA
Sahel Pay · il y a 12 min
1584.3221 SAHEL
≈ 1 185,68 FCFA
Sahel Pay · il y a 12 min
1589.0846 SAHEL
≈ 1 189,24 FCFA
Sahel Pay · il y a 16 min
9477.6419 SAHEL
≈ 7 092,91 FCFA
Sahel Pay · il y a 18 min
4724.647 SAHEL
≈ 3 535,85 FCFA
Sahel Pay · il y a 19 min
3143.4777 SAHEL
≈ 2 352,53 FCFA
Sahel Pay · il y a 20 min
3134.0472 SAHEL
≈ 2 345,47 FCFA
Sahel Pay · il y a 21 min
9392.8801 SAHEL
≈ 7 029,47 FCFA
Sahel Pay · il y a 25 min
6236.9722 SAHEL
≈ 4 667,64 FCFA
Sahel Pay · il y a 25 min
4663.6959 SAHEL
≈ 3 490,23 FCFA
Sahel Pay · il y a 27 min
3121.5703 SAHEL
≈ 2 336,13 FCFA
Sahel Pay · il y a 28 min
3115.3396 SAHEL
≈ 2 331,47 FCFA
Sahel Pay · il y a 29 min
9290.2773 SAHEL
≈ 6 952,69 FCFA
Sahel Pay · il y a 31 min
1543.7344 SAHEL
≈ 1 155,30 FCFA
Sahel Pay · il y a 31 min
1548.3749 SAHEL
≈ 1 158,78 FCFA
Sahel Pay · il y a 32 min
6174.9191 SAHEL
≈ 4 621,20 FCFA
Sahel Pay · il y a 37 min
6193.4256 SAHEL
≈ 4 635,05 FCFA
Sahel Pay · il y a 39 min
4631.134 SAHEL
≈ 3 465,86 FCFA
Sahel Pay · il y a 41 min
7726.3062 SAHEL
≈ 5 782,24 FCFA
Sahel Pay · il y a 42 min
1543.7175 SAHEL
≈ 1 155,29 FCFA
Sahel Pay · il y a 50 min
6156.3455 SAHEL
≈ 4 607,30 FCFA
Sahel Pay · il y a 52 min
9243.7805 SAHEL
≈ 6 917,89 FCFA
Sahel Pay · il y a 54 min
7680.041 SAHEL
≈ 5 747,61 FCFA
Sahel Pay · il y a 56 min
3090.4393 SAHEL
≈ 2 312,83 FCFA
Sahel Pay · il y a 57 min
3084.2708 SAHEL
≈ 2 308,22 FCFA
Tx parenteTypeDeÀValeur
0xe45b99b2…b2bd50 appel 0x7dff5b…4a6325 0x835164…ee75cc 52.287566 WTG
≈ 1 179,18 FCFA
0x466d4cbd…efd2a5 appel 0x7dff5b…4a6325 0x835164…ee75cc 314.038182 WTG
≈ 7 082,16 FCFA
0xb378753c…f35b38 appel 0x7dff5b…4a6325 0x835164…ee75cc 157.958379 WTG
≈ 3 562,26 FCFA
0xc6addaea…67a916 appel 0x7dff5b…4a6325 0x835164…ee75cc 105.620555 WTG
≈ 2 381,94 FCFA
0x462b0dde…ce6bc3 appel 0x7dff5b…4a6325 0x835164…ee75cc 316.859769 WTG
≈ 7 145,79 FCFA
0x59808423…f18988 appel 0x7dff5b…4a6325 0x835164…ee75cc 212.503482 WTG
≈ 4 792,36 FCFA
0x338e22b6…cbbd82 appel 0x7dff5b…4a6325 0x835164…ee75cc 106.356404 WTG
≈ 2 398,54 FCFA
0x9f95f494…3c50cb appel 0x7dff5b…4a6325 0x835164…ee75cc 106.568478 WTG
≈ 2 403,32 FCFA
0x7f735df0…b64e02 appel 0x7dff5b…4a6325 0x835164…ee75cc 320.342929 WTG
≈ 7 224,34 FCFA
0xe834d68f…9fb2ae appel 0x7dff5b…4a6325 0x835164…ee75cc 53.656213 WTG
≈ 1 210,05 FCFA
0x28001f2a…d2ce9a appel 0x7dff5b…4a6325 0x835164…ee75cc 213.982904 WTG
≈ 4 825,72 FCFA
0x4798f6a5…e6ad9d appel 0x7dff5b…4a6325 0x835164…ee75cc 267.742109 WTG
≈ 6 038,09 FCFA
0xe063003a…608150 appel 0x7dff5b…4a6325 0x835164…ee75cc 53.81536 WTG
≈ 1 213,64 FCFA
0xb832e613…8766a9 appel 0x7dff5b…4a6325 0x835164…ee75cc 321.926382 WTG
≈ 7 260,05 FCFA
0x82ca38d5…94c3fa appel 0x7dff5b…4a6325 0x835164…ee75cc 107.413647 WTG
≈ 2 422,38 FCFA
0xee023926…078826 appel 0x7dff5b…4a6325 0x835164…ee75cc 107.627829 WTG
≈ 2 427,21 FCFA
0x14fb51ca…3cf02a appel 0x7dff5b…4a6325 0x835164…ee75cc 213.756793 WTG
≈ 4 820,62 FCFA
0x3c789cce…de912a appel 0x7dff5b…4a6325 0x835164…ee75cc 267.459191 WTG
≈ 6 031,71 FCFA
0xaba3edce…dd9147 appel 0x7dff5b…4a6325 0x835164…ee75cc 53.758495 WTG
≈ 1 212,36 FCFA
0x8e53a3ae…2c333b appel 0x7dff5b…4a6325 0x835164…ee75cc 106.981759 WTG
≈ 2 412,64 FCFA
0x2b6e09b0…7c7c3a appel 0x7dff5b…4a6325 0x835164…ee75cc 53.277873 WTG
≈ 1 201,52 FCFA
0x241705c0…2607d5 appel 0x7dff5b…4a6325 0x835164…ee75cc 266.654956 WTG
≈ 6 013,58 FCFA
0xd1d35766…a2612b appel 0x7dff5b…4a6325 0x835164…ee75cc 107.193692 WTG
≈ 2 417,42 FCFA
0x8a64c304…ef793d appel 0x7dff5b…4a6325 0x835164…ee75cc 53.703718 WTG
≈ 1 211,12 FCFA
0x8a7b0d0e…b88502 appel 0x7dff5b…4a6325 0x835164…ee75cc 53.596471 WTG
≈ 1 208,70 FCFA