Skip to content

BitGuildPlatform/Documentation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 

Repository files navigation

BitGuild Documentation

I. Portal integration

  1. Placing your game on the portal
  2. Required game smart contract changes
  3. Required game UI changes
  4. Testing

II. Compliance with token standards

  1. Standards
  2. JSON Format
  3. Fallbacks

III. BitGuild Portal SDK

If you still have any questions after reading this doc, join our developer round table group: https://discord.gg/EJNgmD5

I. Portal integration

1. Placing your game on the portal

We need developers to provide us the url of the game to be used from within the BitGuild Portal (BGP). On the page at this url we require developers to not include any of their own login, signup, or landing pages - assume the user is already connected via web3 bridge like MetaMask. Ideally this is not your default game page but rather portal-specific - since SDK load adds latency on page refresh and you probably don't want that when you're not running on the portal. You can test the placement via the sandbox url: https://bitguild.com/sandbox?url=GAME_PAGE_URL

2. Required game smart contract changes

Our key requirement is that wherever partners accept ETH for in-game purchases, they must also accept PLAT (BitGuild token). To determine the current PLAT/ETH market exchange rate (so you can convert your ETH prices to PLAT) you can use our recommended price oracle smart contract or you can deploy your own version.

For the details on how to accept tokens as payment methods, see approveAndCall method on BitGuild token. The idea is that:

  • Instead of calling your smart contract directly with eth as a payment, you call BitGuild’s token smart contract with approveAndCall, passing your smart contract address, price and additional data parameter (to be passed to your smart contract) to this method.
  • approveAndCall on our token smart contract will call receiveApproval on your smart contract so you can process the payment.
  • Make sure to have a withdrawToken method on your smart contract so you have a way to retrieve those tokens.

Smart contract code example:

contract YourGameContract {
  BitGuildToken public tokenContract = 0x7E43581b19ab509BCF9397a2eFd1ab10233f27dE; // Predefined PLAT token address

  // Function to accept ethereum as a payment (not needed for integration, shown as an example)
  function buyItem(bytes _id) public payable {
    require(msg.value != 0);
    require(_id.length != 0);
    _buyItem(_id)
  }

  // Function that is called when trying to use PLAT for payments from approveAndCall
  function receiveApproval(address _sender, uint256 _value, BitGuildToken _tokenContract, bytes _extraData) public {
    require(_tokenContract == tokenContract);
    require(_tokenContract.transferFrom(_sender, address(this), _value));
    require(_extraData.length != 0);
    _buyItem(_extraData)
  }

  function _buyItem(bytes _id) private {
     // Actual item purcase logic
  }
}

3. Required game UI changes

Partners will need to change game UI to support rendering prices in PLAT. For that partners will need to:

  • Use the last version of BitGuild Portal SDK: https://bitguild.com/sdk/BitGuildPortalSDK_v0.1.js
  • Detect if the game was launched from the BitGuild portal by checking isOnPortal method.
  • If the game was launched from the portal, use the previously mentioned oracle contract to determine the PLAT prices of items.
  • Change item prices in game UI from “ ETH” to “<XX * ratio> PLAT”

Frontend code example:

  // On page load:
  componentDidMount() {
    sdk.isOnPortal()
      .then(isOnPortal => {
        if (isOnPortal) {
          const oracleContract = window.web3.eth.contract(OracleABI).at(OracleAddr);
          oracleContract.PLATprice.call((err, PLATprice) => {
            const ratio = 1 / PLATprice.toNumber() * 1e18;
            this.setState({
              amount: this.props.amount * ratio,
              name: "PLAT"
            });
          });
        } else {
          this.setState({
            amount: this.props.amount,
            name: "ETH"
          });
        }
      });
  }
  
  // On button click, pay in eth or in PLAT dependinfg on where it's called from
  onClick() {
    sdk.isOnPortal()
      .then(isOnPortal => {
        if (isOnPortal) {
          const bitGuildContract = window.web3.eth.contract(BitGuildTokenABI).at(BitGuildTokenAddr);
          bitGuildContract.approveAndCall(YourGameAddr, this.state.amount * 1e18, this.props.itemId, {
            from: this.props.wallet
          });
        } else {
          const yourContract = window.web3.eth.contract(YourGameABI).at(YourGameAddr);
          return yourContract.buyItem(this.props.itemId, {
            from: this.props.wallet,
            value: this.state.amount * 1e18
          });
        }
      });
  }

For the moment we will allow partners to use their own marketplace solutions; in the future (timeline TBD) BitGuild will include standardized marketplace logic in our SDK, and will likely require partners to implement it.

See full integration example here: https://github.com/BitGuildPlatform/SampleIntegration

4. Testing

We have PLAT and price oracle contracts on both Mainnet and Rinkeby, here're the addresses:

II. Compliance with token standards

1. Requirements

We want to make sure all the game tokens are properly standardized and can be used from within our services. Make sure you use the latest version of the ERC721 standard and support:

  • tokenOfOwnerByIndex (see “Enumeration Extension” here)
  • safeTransferFrom, that also triggers the receiver protocol (ERC721TokenReceiver)
  • ERC721MetaData with name and a tokenUri for json that has image url in it (also here) (see example below)
  • You also may want to support attributes in your metadata, to be used as categories for items on the portal (see example below).

For all the ERC20 tokens you use in your game (for resources and fungible items) make sure you support the transferAndCall function from the extended ERC20 standard, so tokens can be transferred to a smart contract in 1 transaction, not 2. We generally recommend using ERC20+ERC677 instead of ERC223.

2. JSON Format

For the JSON file you return via metadata extension, here's the supported structure:

  name: "XXXX",
  description: "XXXX",
  image: "https://gameurl/XXXX.png",
  attributes: {
    "ATTRIBUTE_1": {keyLan: "ATTRIBUTE_1_STRING", value: "VALUE_1_STRING"},
    "ATTRIBUTE_2": {keyLan: "ATTRIBUTE_1_STRING", value: "VALUE_2_STRING"},
  }

Example:

  "name": "Fortune Fox",
  "description": "A small and cute fortune fox that gives you nice attack boost",
  "image": "https://ether.online/v1/pet4.png",
  "attributes": {
    "set": {"keyLan": "Sets"},
    "rarity": {"keyLan":"Rarity", "value":"Legendary"},
    "type": {"keyLan":"Type", "value":"Pets"},
    "attack": {"keyLan":"Attack", "value":"+30%"}
  }

For localized version of the texts make sure to support /language at the end of the url, such as https://ether.online/api/v1/item/itemInfo/1/ru instead of https://ether.online/api/v1/item/itemInfo/1

3. Fallbacks

In the case you didn't implement enumeration or metadata extensions to ERC721 in your smart contract, there's still a way to provide our wallets necessary data - in a traditional centralized fashion. For that we need two APIs with the following schemas:

  • https://[YOURDOMAIN/PATH]/itemList/[address] where addess is an Ethereum public address for a particular user. This should return an json with an array of token indices that belong to this user. Example: {itemList: [142, 31, 3181]}.
  • https://[YOURDOMAIN/PATH]/itemInfo/[index] where index is the token index. This endpoint should return json data in the same format as ERC721MetaData described above would.

III. BitGuild Portal SDK

SDK methods:

  • init(): Promise<void>, initializes SDK
  • isOnPortal(): Promise<boolean>, determinates whether SDK was properly initialized by portal
  • getUser(): Promise<User>, returns portal user info if ran from the portal
  • getUsersByAddress(addresses: string[]): Promise<Map<string, User>>, resolves addresses to portal users, it is possible not all addresses are resolved, so you have to manually check for undefined
interface User {
  language: string; // String 2-char language code, available languages are en|zh|pt|ja|fr|es|ru
  wallet: string; // ERC20 compatible wallet address 0x87efa7f59bAA8e475F181B36f77A3028494a2cf6
  nickName: string; // user defined string that matches /^[ a-z0-9_-]+$/i
}

Initialization:

const sdk = require("https://www.bitguild.com/sdk/BitGuildPortalSDK_v0.1.js");
sdk.init();

Getting current user

sdk.isOnPortal()
  .then(isOnPortal => {
    if (isOnPortal) {
      return sdk.getUser()
        .then(user => {
          // do something with user
        })
    }
  })

Resolving Addresses

const list = ["0x87efa7f59bAA8e475F181B36f77A3028494a2cf6"];
sdk.getUsersByAddress(list)
  .then(users => {
    // do something with users[list[0]]
  })

About

BitGuild portal and platform docs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published