Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

51656.624028 WTG

945 478,54 FCFA (@ 18,30 FCFA/WTG)

Avoirs en tokens

1 token

≈ 945 478,54 FCFA voir ↓

Plus d'infos

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

1617506.1078 SAHEL
≈ 945 478,54 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0xa738b3886b… Échange 41 781 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8386.51 SAHEL
≈ 4 902,16 FCFA
0.00050075 WTG
0xc5121ac9e2… Échange 41 767 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 197.4756 WTG
≈ 3 614,42 FCFA
0.00034664 WTG
0x0863e34440… Échange 41 740 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 294.4467 WTG
≈ 5 389,30 FCFA
0.00082011 WTG
0x9e4173edf3… Échange 41 658 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3381.37 SAHEL
≈ 1 976,51 FCFA
0.0004781 WTG
0x34c7af153f… Échange 41 393 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 49.1231 WTG
≈ 899,11 FCFA
0.00033248 WTG
0x774bdff815… Échange 41 367 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 195.7099 WTG
≈ 3 582,11 FCFA
0.00062578 WTG
0x369727f1bc… Échange 41 284 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3391.45 SAHEL
≈ 1 982,40 FCFA
0.00050029 WTG
0xaf23310e36… Échange 41 138 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5071.96 SAHEL
≈ 2 964,71 FCFA
0.00058461 WTG
0xb7cfcdecc5… Échange 41 132 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 293.2704 WTG
≈ 5 367,77 FCFA
0.00047705 WTG
0x7910de5af0… Échange 40 981 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5087.04 SAHEL
≈ 2 973,53 FCFA
0.00047724 WTG
0x40214fb796… Échange 40 964 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8436.23 SAHEL
≈ 4 931,22 FCFA
0.00045267 WTG
0x1da7388196… Échange 40 950 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 245.1193 WTG
≈ 4 486,45 FCFA
0.00033332 WTG
0x1ca3e84e56… Échange 40 755 il y a 21 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3384.54 SAHEL
≈ 1 978,36 FCFA
0.00046922 WTG
0x50d5ebfb11… Échange 40 653 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6742.12 SAHEL
≈ 3 940,96 FCFA
0.00051471 WTG
0x05e28260fc… Échange 40 558 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8385.72 SAHEL
≈ 4 901,70 FCFA
0.00042823 WTG
0x69b3fe5a02… Échange 40 518 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8344 SAHEL
≈ 4 877,31 FCFA
0.00051139 WTG
0x2c580c7954… Échange 40 508 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 49.7606 WTG
≈ 910,78 FCFA
0.00037081 WTG
0xe088d0672f… Échange 40 491 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8310.77 SAHEL
≈ 4 857,88 FCFA
0.00041717 WTG
0x975d84559d… Échange 40 480 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1660.49 SAHEL
≈ 970,61 FCFA
0.0007316 WTG
0x5953974b78… Échange 40 428 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 199.4366 WTG
≈ 3 650,32 FCFA
0.00035374 WTG
0x8183b653b1… Échange 40 398 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 49.8093 WTG
≈ 911,67 FCFA
0.00040258 WTG
0xec645a95fb… Échange 40 391 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 99.4198 WTG
≈ 1 819,70 FCFA
0.00029619 WTG
0x282c03c87f… Échange 40 214 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 247.313 WTG
≈ 4 526,61 FCFA
0.00035883 WTG
0x4fd01024d5… Échange 40 096 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 98.7277 WTG
≈ 1 807,03 FCFA
0.00058822 WTG
0x73cdbaa896… Échange 40 052 il y a 22 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3360.86 SAHEL
≈ 1 964,52 FCFA
0.00047527 WTG
Sahel Pay · il y a 14 min
3205.9878 SAHEL
≈ 1 873,99 FCFA
Sahel Pay · il y a 15 min
9589.1096 SAHEL
≈ 5 605,11 FCFA
Sahel Pay · il y a 17 min
6430.9811 SAHEL
≈ 3 759,09 FCFA
Sahel Pay · il y a 22 min
9684.9418 SAHEL
≈ 5 661,13 FCFA
Sahel Pay · il y a 26 min
1623.8128 SAHEL
≈ 949,17 FCFA
Sahel Pay · il y a 29 min
6495.3098 SAHEL
≈ 3 796,69 FCFA
Sahel Pay · il y a 32 min
8078.7435 SAHEL
≈ 4 722,26 FCFA
Sahel Pay · il y a 34 min
9665.4088 SAHEL
≈ 5 649,71 FCFA
Sahel Pay · il y a 40 min
3244.3395 SAHEL
≈ 1 896,41 FCFA
Sahel Pay · il y a 56 min
8070.4964 SAHEL
≈ 4 717,44 FCFA
Sahel Pay · il y a 57 min
6437.0279 SAHEL
≈ 3 762,63 FCFA
Sahel Pay · il y a 58 min
3234.6034 SAHEL
≈ 1 890,72 FCFA
Sahel Pay · il y a 1 h
3228.1471 SAHEL
≈ 1 886,94 FCFA
Sahel Pay · il y a 1 h
9626.6813 SAHEL
≈ 5 627,07 FCFA
Sahel Pay · il y a 1 h
7998.1677 SAHEL
≈ 4 675,16 FCFA
Sahel Pay · il y a 1 h
4822.8231 SAHEL
≈ 2 819,08 FCFA
Sahel Pay · il y a 1 h
4837.2917 SAHEL
≈ 2 827,54 FCFA
Sahel Pay · il y a 1 h
9616.8822 SAHEL
≈ 5 621,34 FCFA
Sahel Pay · il y a 1 h
6392.021 SAHEL
≈ 3 736,32 FCFA
Sahel Pay · il y a 1 h
9597.6484 SAHEL
≈ 5 610,10 FCFA
Sahel Pay · il y a 1 h
7958.2491 SAHEL
≈ 4 651,82 FCFA
Sahel Pay · il y a 1 h
6341.2343 SAHEL
≈ 3 706,63 FCFA
Sahel Pay · il y a 1 h
4741.6579 SAHEL
≈ 2 771,63 FCFA
Sahel Pay · il y a 1 h
3173.7529 SAHEL
≈ 1 855,15 FCFA
Sahel Pay · il y a 1 h
7910.5793 SAHEL
≈ 4 623,96 FCFA
Tx parenteTypeDeÀValeur
0x3d71116e…f9a9ba appel 0x7dff5b…4a6325 0x835164…ee75cc 51.501654 WTG
≈ 942,64 FCFA
0x98bb0443…8307f3 appel 0x7dff5b…4a6325 0x835164…ee75cc 204.776521 WTG
≈ 3 748,05 FCFA
0x8b2de6a8…8f9b0a appel 0x7dff5b…4a6325 0x835164…ee75cc 308.389755 WTG
≈ 5 644,50 FCFA
0x79e719e9…2bc021 appel 0x7dff5b…4a6325 0x835164…ee75cc 258.528786 WTG
≈ 4 731,89 FCFA
0x93733f0f…a2ca49 appel 0x7dff5b…4a6325 0x835164…ee75cc 103.512968 WTG
≈ 1 894,61 FCFA
0xae189d4d…799748 appel 0x7dff5b…4a6325 0x835164…ee75cc 103.719373 WTG
≈ 1 898,39 FCFA
0x0cc3e2ea…775bdd appel 0x7dff5b…4a6325 0x835164…ee75cc 204.357815 WTG
≈ 3 740,39 FCFA
0x7993c1f5…a10a44 appel 0x7dff5b…4a6325 0x835164…ee75cc 256.465992 WTG
≈ 4 694,13 FCFA
0xbfabcb88…5bdf01 appel 0x7dff5b…4a6325 0x835164…ee75cc 102.482892 WTG
≈ 1 875,76 FCFA
0x363af514…550081 appel 0x7dff5b…4a6325 0x835164…ee75cc 256.718109 WTG
≈ 4 698,75 FCFA
0xbeb15004…5a7703 appel 0x7dff5b…4a6325 0x835164…ee75cc 102.787987 WTG
≈ 1 881,34 FCFA
0xf2bf2c48…d95c2e appel 0x7dff5b…4a6325 0x835164…ee75cc 102.992947 WTG
≈ 1 885,09 FCFA
0x239cc42f…2a9cff appel 0x7dff5b…4a6325 0x835164…ee75cc 309.594944 WTG
≈ 5 666,56 FCFA
0xb64425e5…65fc28 appel 0x7dff5b…4a6325 0x835164…ee75cc 154.485271 WTG
≈ 2 827,57 FCFA
0xa4d4ba12…c9a50f appel 0x7dff5b…4a6325 0x835164…ee75cc 309.894673 WTG
≈ 5 672,05 FCFA
0x2df1ca93…f8bd07 appel 0x7dff5b…4a6325 0x835164…ee75cc 310.506438 WTG
≈ 5 683,24 FCFA
0xa0087919…2f8973 appel 0x7dff5b…4a6325 0x835164…ee75cc 260.303239 WTG
≈ 4 764,37 FCFA
0x3ab511c4…4af4c2 appel 0x7dff5b…4a6325 0x835164…ee75cc 209.280681 WTG
≈ 3 830,49 FCFA
0x37534fe2…2fc7c8 appel 0x7dff5b…4a6325 0x835164…ee75cc 104.743415 WTG
≈ 1 917,13 FCFA
0xc98e1679…de8a31 appel 0x7dff5b…4a6325 0x835164…ee75cc 310.488517 WTG
≈ 5 682,92 FCFA
0xa8e25a7e…16fd64 appel 0x7dff5b…4a6325 0x835164…ee75cc 312.34586 WTG
≈ 5 716,91 FCFA
0xaa69bdc3…28c8f4 appel 0x7dff5b…4a6325 0x835164…ee75cc 314.214313 WTG
≈ 5 751,11 FCFA
0xd7895d33…ce6ce9 appel 0x7dff5b…4a6325 0x835164…ee75cc 105.364647 WTG
≈ 1 928,50 FCFA
0x5ae7a1af…fde08b appel 0x7dff5b…4a6325 0x835164…ee75cc 158.362117 WTG
≈ 2 898,52 FCFA
0x27016085…adc38f appel 0x7dff5b…4a6325 0x835164…ee75cc 157.888447 WTG
≈ 2 889,85 FCFA