1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
import os
import sys
import argparse
import web3
from autobahn import xbr
from test_accounts import addr_owner, addr_alice_market, addr_alice_market_maker1, addr_bob_market, addr_bob_market_maker1, \
addr_charlie_provider, addr_charlie_provider_delegate1, addr_donald_provider, addr_donald_provider_delegate1, \
addr_edith_consumer, addr_edith_consumer_delegate1, addr_frank_consumer, addr_frank_consumer_delegate1
from test_accounts import markets, hl
def main(accounts):
for market in markets:
owner = xbr.xbrnetwork.functions.getMarketOwner(market['id']).call()
if owner != '0x0000000000000000000000000000000000000000':
if owner != market['owner']:
print('Market {} already exists, but has wrong owner!! Expected {}, but owner is {}'.format(market['id'], market['owner'], owner))
else:
print('Market {} already exists and has expected owner {}'.format(hl(market['id']), owner))
else:
xbr.xbrnetwork.functions.createMarket(
market['id'],
market['terms'],
market['meta'],
market['maker'],
market['providerSecurity'],
market['consumerSecurity'],
market['marketFee']).transact({'from': market['owner'], 'gas': 200000})
print('Market {} created with owner!'.format(hl(market['id']), market['owner']))
for actor in market['actors']:
atype = xbr.xbrnetwork.functions.getMarketActorType(market['id'], actor['addr']).call()
if atype:
if atype != actor['type']:
print('Account {} is already actor in the market, but has wrong actor type! Expected {}, but got {}.'.format(actor['addr'], actor['type'], atype))
else:
print('Account {} is already actor in the market and has correct actor type {}'.format(actor['addr'], atype))
else:
result = xbr.xbrtoken.functions.approve(xbr.xbrnetwork.address, actor['security']).transact({'from': actor['addr'], 'gas': 1000000})
if not result:
print('Failed to allow transfer of tokens for market security!', result)
else:
print('Allowed transfer of {} XBR from {} to {} as security for joining market'.format(actor['security'], actor['addr'], xbr.xbrnetwork.address))
security = xbr.xbrnetwork.functions.joinMarket(market['id'], actor['type']).transact({'from': actor['addr'], 'gas': 1000000})
print('Actor {} joined market {} as actor type {} with security {}!'.format(hl(actor['addr']), market['id'], hl(actor['type']), security))
if __name__ == '__main__':
print('using web3.py v{}'.format(web3.__version__))
parser = argparse.ArgumentParser()
parser.add_argument('--gateway',
dest='gateway',
type=str,
default=None,
help='Ethereum HTTP gateway URL or None for auto-select (default: -, means let web3 auto-select).')
args = parser.parse_args()
if args.gateway:
w3 = web3.Web3(web3.Web3.HTTPProvider(args.gateway))
else:
# using automatic provider detection:
from web3.auto import w3
# check we are connected, and check network ID
if not w3.isConnected():
print('could not connect to Web3/Ethereum at: {}'.format(args.gateway or 'auto'))
sys.exit(1)
else:
print('connected via provider "{}"'.format(args.gateway or 'auto'))
# set new provider on XBR library
xbr.setProvider(w3)
# now enter main ..
main(w3.eth.accounts)
|