Friday, July 30, 2021

World's Spotlight - A Brighter Future For All -- Looking For Advanced Solidity Dev.

Forged from humble beginnings, together we have formed one of the largest and

strongest communities of Gamers, Artists, Musicians, Podcasters, YouTubers,

TikTokers, Influencers, Content Creators, and Crypto Enthusiasts on Earth.

Our wonderful community continues to grow together and support each other, helping

charitable organizations, the environment and promoting positivity throughout the world!

Now, the time has come to create the future together, and shape our own destinies in which the community controls its own future.

Today, we create all our tomorrows.

Helping People

Whether you’re on the #RoadToAffiliate, pumping out content,

Looking for support as an Artist, Musician, or NFT Creator,

Launching a Game, App, Podcast, or grinding for subscribers,

It’s challenging to get the attention you need.

World’s Spotlight is here to help!

Awards and Prizes

The World’s Spotlight Award is a limited edition digital collectible in the form of an NFT,

given out to recognize and reward positivity and excellence.

Recipients of the World’s Spotlight Award also receive a STAR Prize Packet full of

STAR tokens!

There will also be Contests and Giveaways of other cryptos like

Bitcoin, Ethereum, Dogecoin, and others, to lucky winners selected by the community!

Read The Brightpaper!

https://worldsspotlight.com

-------------------------------------------------------------------------------------------------

We're trying to help people, if you read our Whitepaper you will see that. We want everything to be on the up-and-up, and actually help people with it's services, features, and functions.

We have a large, active community on social, mainly Twitter, #WorldsSpotlight, and a good reputation (we've been around since 2016).

We need someone with a little more experience in Solidity (our experience was in 2017/2018 - ERC-20 token, customized-crowdsale - never did anything with those, a simple DApp game, implementing buy/pay with an ERC-20 token on a website with an Ethereum plugin for Construct 2, and finally - and this was a good one - a BlockchainLotto smart contract, and implementation for website. Even had it splitting and forwarding a % fee to two addresses, which was easy but felt like a huge accomplishment at the time with no info out there then. Our other experience is everything it takes to run a modern organization; business management, graphic design, web/mobile/apps, videos, basic coding, HTML, CSS, PHP, JavaScript, WordPress, basic Solidity, grass-roots community building, social media marketing, and automation/basic AI. As some proof for our doubters before :P here is a snippet of code from a custom smart contract back in 2018:

//Blockchain Lotto.

contract BlockchainLotto is owned {

using SafeMath for uint;

//Defines the variables used in the contract.

uint public amountRaised; //Total amount of ether raised.

uint public currentJackpot; //The current jackpot amount.

uint public lastJackpot; //The last jackpot amount won.

uint public nextJackpot; //The next jackpot amount.

address public lastWinner; //The last jackpot winner.

address public Winner; //The winner of the jackpot.

address private walletDevOne = 0x1250feD94aA62F1aD051cbda17E7330eB52f3Ca6; //Address where commissions are collected.

address private walletDevTwo = 0x.........................................

..................................................................................

event FundTransfer(address user, uint amount);

event WinnerTransfer(address indexed Winner, uint ind.......................

............................................................................

//Shows the current jackpot amount.

function getCurrentJackpot() public constant returns (uint) {

return currentJackpot;

...............................................................

//Sets the amount contributed to jackpot. Called if they did not win.

function setContribution(uint _contribution) payable external {

uint amount = msg.value;

uint contribution = msg.value;

uint percentage = currentJackpot.div(4);

contribution = _contribution;

lastContributionAmount[msg.sender] = contribution;

amountRaised = amountRaised.add(amount);

currentJackpot = currentJackpot.add(amount);

nextJackpot = nextJackpot.add(percentage);

emit FundTransfer(msg.sender, amount);

_forwardFunds();

...............obviously, there's more that is left out, on purpose here.

Thanks for looking.


No comments:

Post a Comment