Contrat

Contrat
0x7dff5bfbdb…1e334a6325

Solde WTG

54670.320342 WTG

1 313 030,37 FCFA (@ 24,02 FCFA/WTG)

Avoirs en tokens

1 token

≈ 1 318 645,07 FCFA voir ↓

Plus d'infos

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

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

1525048.5687 SAHEL
≈ 1 318 645,07 FCFA
HashMéthodeBlocÂgeDeÀMontantFrais
0xfb4d3ddc3f… Échange 44 789 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 253.3976 WTG
≈ 6 085,91 FCFA
0.00028783 WTG
0xdf90aa3a7a… Échange 44 740 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6539.96 SAHEL
≈ 5 630,75 FCFA
0.00033028 WTG
0x612db57fb2… Échange 44 615 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6513.91 SAHEL
≈ 5 608,32 FCFA
0.00033546 WTG
0xa5e27f4362… Échange 44 476 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 51.0335 WTG
≈ 1 225,68 FCFA
0.00032357 WTG
0xccf676eadb… Échange 44 474 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 3253.69 SAHEL
≈ 2 801,35 FCFA
0.00037028 WTG
0xd0e99d8c27… Échange 44 459 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 4865.94 SAHEL
≈ 4 189,46 FCFA
0.00041194 WTG
0x785df0b818… Échange 44 446 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8069.56 SAHEL
≈ 6 947,70 FCFA
0.00042925 WTG
0x0f9508c8d7… Échange 44 404 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 4827.25 SAHEL
≈ 4 156,15 FCFA
0.0007669 WTG
0x6e614eaaf5… Échange 44 402 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 257.2042 WTG
≈ 6 177,34 FCFA
0.00067804 WTG
0xd004ec4d86… Échange 44 355 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 255.9246 WTG
≈ 6 146,61 FCFA
0.00034268 WTG
0x692d3d6051… Échange 44 347 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 254.6514 WTG
≈ 6 116,02 FCFA
0.0005134 WTG
0x9771df64ce… Échange 44 249 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 253.3844 WTG
≈ 6 085,60 FCFA
0.00049212 WTG
0x25b3174797… Échange 44 228 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 302.2479 WTG
≈ 7 259,16 FCFA
0.00035562 WTG
0xcac20cc736… Échange 44 198 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 8215.07 SAHEL
≈ 7 072,98 FCFA
0.00042393 WTG
0x6a4bc7c49f… Échange 44 124 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 301.9429 WTG
≈ 7 251,84 FCFA
0.00045459 WTG
0x93aeff7b4c… Échange 44 121 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 300.1421 WTG
≈ 7 208,59 FCFA
0.00052297 WTG
0xd55f175b5f… Échange 44 036 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 4973.27 SAHEL
≈ 4 281,87 FCFA
0.00038556 WTG
0x4aa5babb21… Échange 44 028 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6604.6 SAHEL
≈ 5 686,41 FCFA
0.00043491 WTG
0x744d55ebe8… Échange 43 991 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 200.6908 WTG
≈ 4 820,04 FCFA
0.00034221 WTG
0xf8a5849b2b… Échange 43 970 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 299.2407 WTG
≈ 7 186,94 FCFA
0.00034095 WTG
0x8cb8f3e104… Échange 43 798 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 49.8236 WTG
≈ 1 196,63 FCFA
0.00040419 WTG
0xeed142a875… Échange 43 761 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 4992.97 SAHEL
≈ 4 298,83 FCFA
0.00041557 WTG
0xbd36f847fc… Échange 43 741 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 6630.77 SAHEL
≈ 5 708,94 FCFA
0.00044539 WTG
0x1f41f03e5b… Échange 43 646 il y a 10 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 299.2363 WTG
≈ 7 186,83 FCFA
0.00034743 WTG
0x97b4a9a042… Échange 43 607 il y a 11 h 0x835164…ee75cc ENTR. 0x7dff5b…4a6325 1665.94 SAHEL
≈ 1 434,34 FCFA
0.00055817 WTG
Sahel Pay · il y a 21 min
6130.2553 SAHEL
≈ 5 300,57 FCFA
Sahel Pay · il y a 23 min
9204.6061 SAHEL
≈ 7 958,83 FCFA
Sahel Pay · il y a 40 min
7647.4936 SAHEL
≈ 6 612,46 FCFA
Sahel Pay · il y a 47 min
6148.493 SAHEL
≈ 5 316,34 FCFA
Sahel Pay · il y a 47 min
9259.5199 SAHEL
≈ 8 006,32 FCFA
Sahel Pay · il y a 54 min
9314.9103 SAHEL
≈ 8 054,21 FCFA
Sahel Pay · il y a 55 min
3126.6895 SAHEL
≈ 2 703,52 FCFA
Sahel Pay · il y a 56 min
4675.9641 SAHEL
≈ 4 043,11 FCFA
Sahel Pay · il y a 1 h
1563.3166 SAHEL
≈ 1 351,73 FCFA
Sahel Pay · il y a 1 h
3129.7505 SAHEL
≈ 2 706,16 FCFA
Sahel Pay · il y a 1 h
4703.9869 SAHEL
≈ 4 067,34 FCFA
Sahel Pay · il y a 1 h
6290.742 SAHEL
≈ 5 439,34 FCFA
Sahel Pay · il y a 1 h
3161.0948 SAHEL
≈ 2 733,27 FCFA
Sahel Pay · il y a 1 h
7879.0288 SAHEL
≈ 6 812,66 FCFA
Sahel Pay · il y a 1 h
7902.6191 SAHEL
≈ 6 833,06 FCFA
Sahel Pay · il y a 1 h
6296.9076 SAHEL
≈ 5 444,67 FCFA
Sahel Pay · il y a 1 h
9389.0273 SAHEL
≈ 8 118,30 FCFA
Sahel Pay · il y a 1 h
9360.8602 SAHEL
≈ 8 093,94 FCFA
Sahel Pay · il y a 1 h
1569.4761 SAHEL
≈ 1 357,06 FCFA
Sahel Pay · il y a 1 h
3142.0818 SAHEL
≈ 2 716,83 FCFA
Sahel Pay · il y a 1 h
4722.5207 SAHEL
≈ 4 083,36 FCFA
Sahel Pay · il y a 1 h
9445.1262 SAHEL
≈ 8 166,80 FCFA
Sahel Pay · il y a 1 h
3142.0912 SAHEL
≈ 2 716,83 FCFA
Sahel Pay · il y a 1 h
3135.8195 SAHEL
≈ 2 711,41 FCFA
Sahel Pay · il y a 1 h
4689.6181 SAHEL
≈ 4 054,91 FCFA
Tx parenteTypeDeÀValeur
0x588e9747…26b146 appel 0x7dff5b…4a6325 0x835164…ee75cc 323.124667 WTG
≈ 7 760,56 FCFA
0x8ce9f68b…e303b6 appel 0x7dff5b…4a6325 0x835164…ee75cc 106.106828 WTG
≈ 2 548,39 FCFA
0x6d12468c…2957be appel 0x7dff5b…4a6325 0x835164…ee75cc 104.947253 WTG
≈ 2 520,54 FCFA
0x15df3c9c…0689b2 appel 0x7dff5b…4a6325 0x835164…ee75cc 261.583378 WTG
≈ 6 282,51 FCFA
0xa5a2b845…2e94e1 appel 0x7dff5b…4a6325 0x835164…ee75cc 210.309897 WTG
≈ 5 051,06 FCFA
0x36c6ac94…fe5550 appel 0x7dff5b…4a6325 0x835164…ee75cc 316.722919 WTG
≈ 7 606,81 FCFA
0xa54982eb…1d54fc appel 0x7dff5b…4a6325 0x835164…ee75cc 314.824838 WTG
≈ 7 561,22 FCFA
0xa244ed5f…7b4cca appel 0x7dff5b…4a6325 0x835164…ee75cc 105.569373 WTG
≈ 2 535,49 FCFA
0x25348683…b3b288 appel 0x7dff5b…4a6325 0x835164…ee75cc 105.779878 WTG
≈ 2 540,54 FCFA
0x822acfb7…d9f831 appel 0x7dff5b…4a6325 0x835164…ee75cc 158.036564 WTG
≈ 3 795,60 FCFA
0xb2664f94…26c699 appel 0x7dff5b…4a6325 0x835164…ee75cc 52.730955 WTG
≈ 1 266,45 FCFA
0x4d7304ad…05c8f1 appel 0x7dff5b…4a6325 0x835164…ee75cc 52.573078 WTG
≈ 1 262,66 FCFA
0x176664a7…9c6550 appel 0x7dff5b…4a6325 0x835164…ee75cc 104.414418 WTG
≈ 2 507,75 FCFA
0x23c92103…561264 appel 0x7dff5b…4a6325 0x835164…ee75cc 156.933931 WTG
≈ 3 769,12 FCFA
0x74fff8b4…98eae9 appel 0x7dff5b…4a6325 0x835164…ee75cc 102.657494 WTG
≈ 2 465,55 FCFA
0xb65944bb…1d3f99 appel 0x7dff5b…4a6325 0x835164…ee75cc 257.155483 WTG
≈ 6 176,17 FCFA
0xd3bbb814…d92753 appel 0x7dff5b…4a6325 0x835164…ee75cc 152.301604 WTG
≈ 3 657,86 FCFA
0xfa4334c4…80f733 appel 0x7dff5b…4a6325 0x835164…ee75cc 50.919046 WTG
≈ 1 222,94 FCFA
0x3ba171bb…405dce appel 0x7dff5b…4a6325 0x835164…ee75cc 151.542071 WTG
≈ 3 639,62 FCFA
0x0c6d0c85…e0c187 appel 0x7dff5b…4a6325 0x835164…ee75cc 202.660444 WTG
≈ 4 867,35 FCFA
0xc9071331…a895fc appel 0x7dff5b…4a6325 0x835164…ee75cc 152.144752 WTG
≈ 3 654,10 FCFA
0x9769e161…dc1019 appel 0x7dff5b…4a6325 0x835164…ee75cc 202.857849 WTG
≈ 4 872,09 FCFA
0x5d16e69b…80ac92 appel 0x7dff5b…4a6325 0x835164…ee75cc 101.833423 WTG
≈ 2 445,76 FCFA
0xb376c2ee…e33e15 appel 0x7dff5b…4a6325 0x835164…ee75cc 253.569778 WTG
≈ 6 090,05 FCFA
0x173b8ce4…bbf6c6 appel 0x7dff5b…4a6325 0x835164…ee75cc 152.900294 WTG
≈ 3 672,24 FCFA