Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

52992.265797 WTG

963 372,48 FCFA (@ 18,18 FCFA/WTG)

Avoirs en tokens

1 token

≈ 977 797,27 FCFA voir ↓

Plus d'infos

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

1578948.4167 SAHEL
≈ 977 797,27 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0xd1dedb2748… Échange 16 126 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6699.9 SAHEL
≈ 4 149,06 FCFA
0.0001048 WTG
0xa7a9db14cc… Échange 16 111 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 98.6003 WTG
≈ 1 792,50 FCFA
0.00008599 WTG
0xb2c09c34be… Échange 16 036 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3349.93 SAHEL
≈ 2 074,52 FCFA
0.00010478 WTG
0x4b1ac86cc9… Échange 16 010 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 196.8066 WTG
≈ 3 577,85 FCFA
0.00008599 WTG
0x8bc8cdb9ee… Échange 15 933 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 5029.84 SAHEL
≈ 3 114,84 FCFA
0.0001048 WTG
0x9ae4b000e8… Échange 15 914 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8341.36 SAHEL
≈ 5 165,57 FCFA
0.0001048 WTG
0xf98d91f0bd… Échange 15 829 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6646.5 SAHEL
≈ 4 115,99 FCFA
0.00013077 WTG
0x103d612dfb… Échange 15 719 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 49.7428 WTG
≈ 904,30 FCFA
0.00100265 WTG
0x7e1f34df89… Échange 15 678 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8275.04 SAHEL
≈ 5 124,50 FCFA
0.00042829 WTG
0x55ca9d93f9… Échange 15 591 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 199.1666 WTG
≈ 3 620,75 FCFA
0.00034628 WTG
0xde1db59ed8… Échange 15 585 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 4969.91 SAHEL
≈ 3 077,73 FCFA
0.00057013 WTG
0x15b4e1cbe8… Échange 15 569 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3306.66 SAHEL
≈ 2 047,72 FCFA
0.00044086 WTG
0x80aa7c63da… Échange 15 526 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8225.53 SAHEL
≈ 5 093,84 FCFA
0.00081115 WTG
0xf4fae12c5b… Échange 15 491 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3283.64 SAHEL
≈ 2 033,47 FCFA
0.00044721 WTG
0x7db7bf0f9f… Échange 15 374 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1640.18 SAHEL
≈ 1 015,72 FCFA
0.0003998 WTG
0xcf3348cc1e… Échange 15 321 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 100.6789 WTG
≈ 1 830,29 FCFA
0.00033441 WTG
0xa62967ef68… Échange 15 274 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6547.62 SAHEL
≈ 4 054,76 FCFA
0.00051422 WTG
0xf4e6953445… Échange 15 271 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 151.1671 WTG
≈ 2 748,14 FCFA
0.00034313 WTG
0x4312a2fe77… Échange 15 197 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 50.3387 WTG
≈ 915,13 FCFA
0.00040831 WTG
0x03559ad6eb… Échange 15 187 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8176.31 SAHEL
≈ 5 063,36 FCFA
0.00078647 WTG
0x679bfc119c… Échange 15 130 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1633.62 SAHEL
≈ 1 011,66 FCFA
0.0005675 WTG
0xad62dbf4ce… Échange 15 127 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 101.078 WTG
≈ 1 837,55 FCFA
0.00043234 WTG
0x8a45b00c18… Échange 15 098 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 151.1635 WTG
≈ 2 748,08 FCFA
0.00030771 WTG
0xbb7432cec2… Échange 15 094 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 50.3375 WTG
≈ 915,11 FCFA
0.00037297 WTG
0x32e696ffbd… Échange 15 086 il y a 2 j 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8176.21 SAHEL
≈ 5 063,29 FCFA
0.00063146 WTG
Sahel Pay · il y a 1 min
6296.8462 SAHEL
≈ 3 899,46 FCFA
Sahel Pay · il y a 2 min
9454.7431 SAHEL
≈ 5 855,05 FCFA
Sahel Pay · il y a 3 min
7855.3157 SAHEL
≈ 4 864,57 FCFA
Sahel Pay · il y a 9 min
6309.3459 SAHEL
≈ 3 907,20 FCFA
Sahel Pay · il y a 12 min
1572.6044 SAHEL
≈ 973,87 FCFA
Sahel Pay · il y a 14 min
6296.6894 SAHEL
≈ 3 899,36 FCFA
Sahel Pay · il y a 14 min
3164.0834 SAHEL
≈ 1 959,43 FCFA
Sahel Pay · il y a 16 min
9463.7734 SAHEL
≈ 5 860,64 FCFA
Sahel Pay · il y a 18 min
7917.9376 SAHEL
≈ 4 903,35 FCFA
Sahel Pay · il y a 25 min
6315.347 SAHEL
≈ 3 910,91 FCFA
Sahel Pay · il y a 25 min
9482.5221 SAHEL
≈ 5 872,25 FCFA
Sahel Pay · il y a 28 min
4727.0798 SAHEL
≈ 2 927,34 FCFA
Sahel Pay · il y a 36 min
7854.831 SAHEL
≈ 4 864,27 FCFA
Sahel Pay · il y a 39 min
3160.7746 SAHEL
≈ 1 957,38 FCFA
Sahel Pay · il y a 40 min
4726.981 SAHEL
≈ 2 927,28 FCFA
Sahel Pay · il y a 41 min
9397.5766 SAHEL
≈ 5 819,65 FCFA
Sahel Pay · il y a 41 min
7792.3521 SAHEL
≈ 4 825,58 FCFA
Sahel Pay · il y a 43 min
6215.18 SAHEL
≈ 3 848,88 FCFA
Sahel Pay · il y a 43 min
7799.9577 SAHEL
≈ 4 830,29 FCFA
Sahel Pay · il y a 44 min
1567.7681 SAHEL
≈ 970,87 FCFA
Sahel Pay · il y a 45 min
7846.6558 SAHEL
≈ 4 859,21 FCFA
Sahel Pay · il y a 50 min
3157.485 SAHEL
≈ 1 955,34 FCFA
Sahel Pay · il y a 55 min
6289.8107 SAHEL
≈ 3 895,10 FCFA
Sahel Pay · il y a 57 min
4703.206 SAHEL
≈ 2 912,56 FCFA
Sahel Pay · il y a 58 min
7846.5467 SAHEL
≈ 4 859,14 FCFA
Tx parenteTypeDeÀValeur
0x1943f81a…6a35eb appel 0x7dff5b…4a6325 0x835164…ee75cc 315.736786 WTG
≈ 5 739,93 FCFA
0x704526af…495767 appel 0x7dff5b…4a6325 0x835164…ee75cc 210.696865 WTG
≈ 3 830,36 FCFA
0xe4d8a672…293c15 appel 0x7dff5b…4a6325 0x835164…ee75cc 105.241931 WTG
≈ 1 913,24 FCFA
0xdc180e32…c5abb8 appel 0x7dff5b…4a6325 0x835164…ee75cc 262.057117 WTG
≈ 4 764,07 FCFA
0x614f002c…504c68 appel 0x7dff5b…4a6325 0x835164…ee75cc 314.777058 WTG
≈ 5 722,49 FCFA
0x075276e9…a115ec appel 0x7dff5b…4a6325 0x835164…ee75cc 158.330027 WTG
≈ 2 878,36 FCFA
0xc3503b04…7a5ca2 appel 0x7dff5b…4a6325 0x835164…ee75cc 105.342349 WTG
≈ 1 915,07 FCFA
0x1b19f078…5834e8 appel 0x7dff5b…4a6325 0x835164…ee75cc 158.328603 WTG
≈ 2 878,33 FCFA
0x64bc3e25…d4727f appel 0x7dff5b…4a6325 0x835164…ee75cc 317.604329 WTG
≈ 5 773,89 FCFA
0x762d220a…f1a0f9 appel 0x7dff5b…4a6325 0x835164…ee75cc 266.253531 WTG
≈ 4 840,35 FCFA
0xe0f0fef1…11deab appel 0x7dff5b…4a6325 0x835164…ee75cc 105.442339 WTG
≈ 1 916,89 FCFA
0xfd3af51c…b0785f appel 0x7dff5b…4a6325 0x835164…ee75cc 211.305183 WTG
≈ 3 841,42 FCFA
0x8086cead…11d898 appel 0x7dff5b…4a6325 0x835164…ee75cc 264.39166 WTG
≈ 4 806,51 FCFA
0xf1017848…a719c8 appel 0x7dff5b…4a6325 0x835164…ee75cc 52.930209 WTG
≈ 962,24 FCFA
0x98f08631…6cde44 appel 0x7dff5b…4a6325 0x835164…ee75cc 211.931924 WTG
≈ 3 852,81 FCFA
0x7979da33…6b5fa4 appel 0x7dff5b…4a6325 0x835164…ee75cc 106.388554 WTG
≈ 1 934,09 FCFA
0xddee8e06…557e0c appel 0x7dff5b…4a6325 0x835164…ee75cc 53.300346 WTG
≈ 968,97 FCFA
0xbc6b54b6…813509 appel 0x7dff5b…4a6325 0x835164…ee75cc 53.140923 WTG
≈ 966,08 FCFA
0xc962dfe5…3f3628 appel 0x7dff5b…4a6325 0x835164…ee75cc 211.50658 WTG
≈ 3 845,08 FCFA
0x5c90b131…28fb2c appel 0x7dff5b…4a6325 0x835164…ee75cc 158.4702 WTG
≈ 2 880,91 FCFA
0x5b7fcc44…957738 appel 0x7dff5b…4a6325 0x835164…ee75cc 155.029492 WTG
≈ 2 818,36 FCFA
0x25a32032…e9e325 appel 0x7dff5b…4a6325 0x835164…ee75cc 207.324247 WTG
≈ 3 769,05 FCFA
0xac675acf…340b53 appel 0x7dff5b…4a6325 0x835164…ee75cc 206.495991 WTG
≈ 3 753,99 FCFA
0xbd9fcbda…799e00 appel 0x7dff5b…4a6325 0x835164…ee75cc 51.829874 WTG
≈ 942,24 FCFA
0xb71277df…ca19ac appel 0x7dff5b…4a6325 0x835164…ee75cc 103.763097 WTG
≈ 1 886,36 FCFA