scroll alpha 网络的 uniswap 的交互,我这点了一会界面发现只能 只能 swap,添加池子的操作界面一直置灰没搞成。
直接上代码样例。
import web3
import math
import requests
headers = {
'content-type': 'application/json',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36',
}
class Rpc:
"""
eth rpc方法
"""
def __init__(self, rpc='https://rpc.ankr.com/eth_goerli', chainid=5, proxies=None, timeout=30):
self.rpc = rpc
self.chainid = chainid
self.proxies = proxies
self.timeout = timeout
def get_current_block(self):
"""获取最新区块"""
data = {"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def get_block_detail(self, number):
"""获取区块hash"""
if isinstance(number, int):
number = hex(number)
data = {"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":[number,True],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def get_transaction(self, txhash):
"""获取的交易详情"""
data = {"jsonrpc":"2.0","method":"eth_getTransactionByHash","params":[txhash],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def get_gas_price(self):
"""获取gas"""
data = {"jsonrpc":"2.0","method":"eth_gasPrice","params":[],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def get_transaction_count_by_address(self, address):
data = {"jsonrpc":"2.0","method":"eth_getTransactionCount","params":[address,'latest'],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def call(self, to, data):
data = {"jsonrpc":"2.0","method":"eth_call","params":[{"to": to, "data": data}, "latest"],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def send_raw_transaction(self, hex):
"""广播交易"""
data = {"jsonrpc":"2.0","method":"eth_sendRawTransaction","params":[hex],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()
def get_balance(self, address):
"""获取余额"""
data = {"jsonrpc":"2.0","method":"eth_getBalance","params":[address, 'latest'],"id":1}
res = requests.post(self.rpc, json=data, headers=headers, proxies=self.proxies, timeout=self.timeout)
return res.json()#(int(res.json()['result'], 16)) / math.pow(10,18)
def transfer(self, account, to, amount, gaslimit, **kw):
"""离线交易
account
to: 收款地址
gaslimit: 由当前区块的gaslimit获取
gasprice: get_gas_price获取
nonce: 交易总数 get_transaction_count_by_address获取
chainId: 链id
"""
amount = int(amount, 16) if isinstance(amount, str) else int(amount)
gaslimit = int(gaslimit, 16) if not isinstance(gaslimit, int) else gaslimit
gasprice = int(self.get_gas_price()['result'], 16)
nonce = int(self.get_transaction_count_by_address(account.address)['result'], 16)
tx = {'from': account.address, 'value': amount,'to': to, 'gas': gaslimit, 'gasPrice': gasprice, 'nonce': nonce, 'chainId': self.chainid}
if kw:
tx.update(**kw)
signed = account.signTransaction(tx)
return self.send_raw_transaction(signed.rawTransaction.hex())
if __name__ == '__main__':
privkey = 'xxxxxxx' # 这里替换成自己的私钥
value = 0.015 # 要存款的数量
account = web3.Account.from_key(privkey)
BALANCE_PRECISION = math.pow(10, 18) # 主币精度,18位
rpc = Rpc('https://alpha-rpc.scroll.io/l2', chainid=534353)
value = int(value * BALANCE_PRECISION)
gaslimit = 45004 # gaslimit
to = '0x5300000000000000000000000000000000000004' # 交互的合约地址
method = '0xd0e30db0' # swap方法hash值
data = method
res = rpc.transfer(account, to=to, amount=value, gaslimit=gaslimit, data=data) # 发送交易
print(res)
完成后在浏览器上查下hash